From d72ea565cb9d61988efac3cd5469ca7b44914a86 Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Tue, 8 Mar 2016 19:49:16 +0200 Subject: [PATCH 1/3] Fixed wrong handling with true darts points inside tool detail. (grafted from c84b1a66716faa7e171e5acb2824a7fb5702dd27) --HG-- branch : develop --- ChangeLog.txt | 3 + src/libs/vpatterndb/vdetail.cpp | 21 ++++-- src/libs/vpatterndb/vdetail.h | 2 +- .../vtools/tools/nodeDetails/vnodepoint.cpp | 51 +++++++++++++ .../vtools/tools/nodeDetails/vnodepoint.h | 3 + src/libs/vtools/tools/vtooluniondetails.cpp | 72 ++++++++++++++----- src/libs/vtools/tools/vtooluniondetails.h | 2 + src/libs/vtools/undocommands/adddet.cpp | 9 +-- src/libs/vtools/undocommands/deletedetail.cpp | 10 +-- .../vtools/undocommands/savedetailoptions.cpp | 19 +---- src/libs/vtools/undocommands/vundocommand.cpp | 56 +++++++++++++++ src/libs/vtools/undocommands/vundocommand.h | 4 ++ 12 files changed, 194 insertions(+), 58 deletions(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index 329ba9eb5..1251243e3 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -11,6 +11,9 @@ - [#325] Check pattern for inverse compatibility. - [#385] Add 'Open Recent' option in Tape.exe, 'File' dropdown menu. +# Version 0.4.4 +- Fixed wrong handling with true darts points inside tool detail. + # Version 0.4.3 March 6, 2016 - [#456] Crash: broken formula + clicking on the f(x) symbol. - [#454] Crash: using CRTL+Z while using line tool diff --git a/src/libs/vpatterndb/vdetail.cpp b/src/libs/vpatterndb/vdetail.cpp index 3c09862e0..1314d3d39 100644 --- a/src/libs/vpatterndb/vdetail.cpp +++ b/src/libs/vpatterndb/vdetail.cpp @@ -322,16 +322,16 @@ VDetail VDetail::RemoveEdge(const quint32 &index) const //--------------------------------------------------------------------------------------------------------------------- /** - * @brief Missing find missing ids in detail. When we deleted object in detail and return this detail need + * @brief Missing find missing nodes in detail. When we deleted object in detail and return this detail need * understand, what nodes need make invisible. * @param det changed detail. - * @return list with missing detail. + * @return list with missing nodes. */ -QList VDetail::Missing(const VDetail &det) const +QVector VDetail::Missing(const VDetail &det) const { if (d->nodes.size() == det.CountNode()) //-V807 { - return QList(); + return QVector(); } QSet set1; @@ -346,9 +346,18 @@ QList VDetail::Missing(const VDetail &det) const set2.insert(det.at(j).getId()); } - QSet set3 = set1.subtract(set2); + const QList set3 = set1.subtract(set2).toList(); + QVector nodes; + for (qint32 i = 0; i < set3.size(); ++i) + { + const int index = indexOfNode(d->nodes, set3.at(i)); + if (index != -1) + { + nodes.append(d->nodes.at(index)); + } + } - return set3.toList(); + return nodes; } //--------------------------------------------------------------------------------------------------------------------- diff --git a/src/libs/vpatterndb/vdetail.h b/src/libs/vpatterndb/vdetail.h index ae72e2b94..fb57ab56e 100644 --- a/src/libs/vpatterndb/vdetail.h +++ b/src/libs/vpatterndb/vdetail.h @@ -76,7 +76,7 @@ public: void NodeOnEdge(const quint32 &index, VNodeDetail &p1, VNodeDetail &p2)const; VDetail RemoveEdge(const quint32 &index) const; - QList Missing(const VDetail &det) const; + QVector Missing(const VDetail &det) const; QVector ContourPoints(const VContainer *data) const; QVector SeamAllowancePoints(const VContainer *data) const; diff --git a/src/libs/vtools/tools/nodeDetails/vnodepoint.cpp b/src/libs/vtools/tools/nodeDetails/vnodepoint.cpp index 08bb62969..3b4cb520a 100644 --- a/src/libs/vtools/tools/nodeDetails/vnodepoint.cpp +++ b/src/libs/vtools/tools/nodeDetails/vnodepoint.cpp @@ -119,6 +119,57 @@ QString VNodePoint::getTagName() const return VNodePoint::TagName; } +//--------------------------------------------------------------------------------------------------------------------- +void VNodePoint::incrementReferens() +{ + ++_referens; + if (_referens == 1) + { + if (idTool != NULL_ID) + { + doc->IncrementReferens(idTool); + } + else + { + const QSharedPointer point = VAbstractTool::data.GeometricObject(idNode); + doc->IncrementReferens(point->getIdTool()); + } + ShowNode(); + QDomElement domElement = doc->elementById(id); + if (domElement.isElement()) + { + doc->SetParametrUsage(domElement, AttrInUse, NodeUsage::InUse); + } + } +} + +//--------------------------------------------------------------------------------------------------------------------- +void VNodePoint::decrementReferens() +{ + if (_referens > 0) + { + --_referens; + } + if (_referens == 0) + { + if (idTool != NULL_ID) + { + doc->DecrementReferens(idTool); + } + else + { + const QSharedPointer point = VAbstractTool::data.GeometricObject(idNode); + doc->DecrementReferens(point->getIdTool()); + } + HideNode(); + QDomElement domElement = doc->elementById(id); + if (domElement.isElement()) + { + doc->SetParametrUsage(domElement, AttrInUse, NodeUsage::NotInUse); + } + } +} + //--------------------------------------------------------------------------------------------------------------------- void VNodePoint::PointChoosed() { diff --git a/src/libs/vtools/tools/nodeDetails/vnodepoint.h b/src/libs/vtools/tools/nodeDetails/vnodepoint.h index 2b97b59de..87a280b44 100644 --- a/src/libs/vtools/tools/nodeDetails/vnodepoint.h +++ b/src/libs/vtools/tools/nodeDetails/vnodepoint.h @@ -56,6 +56,9 @@ public: virtual int type() const Q_DECL_OVERRIDE {return Type;} enum { Type = UserType + static_cast(Tool::NodePoint)}; virtual QString getTagName() const Q_DECL_OVERRIDE; + + virtual void incrementReferens() Q_DECL_OVERRIDE; + virtual void decrementReferens() Q_DECL_OVERRIDE; public slots: virtual void FullUpdateFromFile() Q_DECL_OVERRIDE; void NameChangePosition(const QPointF &pos); diff --git a/src/libs/vtools/tools/vtooluniondetails.cpp b/src/libs/vtools/tools/vtooluniondetails.cpp index 714bf7a7e..39d1a1b45 100644 --- a/src/libs/vtools/tools/vtooluniondetails.cpp +++ b/src/libs/vtools/tools/vtooluniondetails.cpp @@ -457,15 +457,8 @@ void VToolUnionDetails::incrementReferens() ++_referens; if (_referens == 1) { - for (int i = 0; i < d1.CountNode(); ++i) - { - doc->IncrementReferens(d1.at(i).getId()); - } - - for (int i = 0; i < d2.CountNode(); ++i) - { - doc->IncrementReferens(d2.at(i).getId()); - } + IncrementReferences(d1); + IncrementReferences(d2); QDomElement domElement = doc->elementById(id); if (domElement.isElement()) @@ -484,15 +477,8 @@ void VToolUnionDetails::decrementReferens() } if (_referens == 0) { - for (int i = 0; i < d1.CountNode(); ++i) - { - doc->DecrementReferens(d1.at(i).getId()); - } - - for (int i = 0; i < d2.CountNode(); ++i) - { - doc->DecrementReferens(d2.at(i).getId()); - } + DecrementReferences(d1); + DecrementReferences(d2); QDomElement domElement = doc->elementById(id); if (domElement.isElement()) @@ -900,6 +886,56 @@ void VToolUnionDetails::AddToModeling(const QDomElement &domElement) } } +//--------------------------------------------------------------------------------------------------------------------- +void VToolUnionDetails::IncrementReferences(const VDetail &d) const +{ + for (int i = 0; i < d.CountNode(); ++i) + { + switch (d.at(i).getTypeTool()) + { + case (Tool::NodePoint): + { + const auto point = VAbstractTool::data.GeometricObject(d.at(i).getId()); + doc->IncrementReferens(point->getIdTool()); + break; + } + case (Tool::NodeArc): + case (Tool::NodeSpline): + case (Tool::NodeSplinePath): + doc->IncrementReferens(d.at(i).getId()); + break; + default: + qDebug()<<"Get wrong tool type. Ignore."; + break; + } + } +} + +//--------------------------------------------------------------------------------------------------------------------- +void VToolUnionDetails::DecrementReferences(const VDetail &d) const +{ + for (int i = 0; i < d.CountNode(); ++i) + { + switch (d.at(i).getTypeTool()) + { + case (Tool::NodePoint): + { + const auto point = VAbstractTool::data.GeometricObject(d.at(i).getId()); + doc->DecrementReferens(point->getIdTool()); + break; + } + case (Tool::NodeArc): + case (Tool::NodeSpline): + case (Tool::NodeSplinePath): + doc->DecrementReferens(d.at(i).getId()); + break; + default: + qDebug()<<"Get wrong tool type. Ignore."; + break; + } + } +} + //--------------------------------------------------------------------------------------------------------------------- void VToolUnionDetails::SaveChildren(VAbstractPattern *doc, quint32 id, const QVector &children) { diff --git a/src/libs/vtools/tools/vtooluniondetails.h b/src/libs/vtools/tools/vtooluniondetails.h index ae2a5791b..5a4d20edd 100644 --- a/src/libs/vtools/tools/vtooluniondetails.h +++ b/src/libs/vtools/tools/vtooluniondetails.h @@ -113,6 +113,8 @@ private: void AddNode(QDomElement &domElement, const VNodeDetail &node); QDomNode UpdateDetail(const QDomNode &domNode, const VDetail &d); void AddToModeling(const QDomElement &domElement); + void IncrementReferences(const VDetail &d) const; + void DecrementReferences(const VDetail &d) const; static void SaveChildren(VAbstractPattern *doc, quint32 id, const QVector &children); static QVector AllChildren(VAbstractPattern *doc, quint32 id); diff --git a/src/libs/vtools/undocommands/adddet.cpp b/src/libs/vtools/undocommands/adddet.cpp index 8cd86b384..a73fb7e1a 100644 --- a/src/libs/vtools/undocommands/adddet.cpp +++ b/src/libs/vtools/undocommands/adddet.cpp @@ -59,14 +59,7 @@ void AddDet::undo() return; } - QVector nodes = detail.getNodes(); - if (nodes.size()>0) - { - for (qint32 i = 0; i < nodes.size(); ++i) - { - doc->DecrementReferens(nodes.at(i).getId()); - } - } + DecrementReferences(detail.getNodes()); } else { diff --git a/src/libs/vtools/undocommands/deletedetail.cpp b/src/libs/vtools/undocommands/deletedetail.cpp index dd4be5d6c..5ece463a6 100644 --- a/src/libs/vtools/undocommands/deletedetail.cpp +++ b/src/libs/vtools/undocommands/deletedetail.cpp @@ -89,15 +89,7 @@ void DeleteDetail::redo() SCASSERT(toolDet != nullptr); toolDet->hide(); - QVector nodes = detail.getNodes(); - if (nodes.size()>0) - { - for (qint32 i = 0; i < nodes.size(); ++i) - { - doc->DecrementReferens(nodes.at(i).getId()); - } - } - + DecrementReferences(detail.getNodes()); emit NeedFullParsing(); // Doesn't work when UnionDetail delete detail. } else diff --git a/src/libs/vtools/undocommands/savedetailoptions.cpp b/src/libs/vtools/undocommands/savedetailoptions.cpp index 7b3fddf30..656863a83 100644 --- a/src/libs/vtools/undocommands/savedetailoptions.cpp +++ b/src/libs/vtools/undocommands/savedetailoptions.cpp @@ -59,14 +59,7 @@ void SaveDetailOptions::undo() { VToolDetail::AddNode(doc, domElement, oldDet.at(i)); } - QVector nodes = oldDet.getNodes(); - if (nodes.size()>0) - { - for (qint32 i = 0; i < nodes.size(); ++i) - { - doc->IncrementReferens(nodes.at(i).getId()); - } - } + IncrementReferences(oldDet.getNodes()); emit NeedLiteParsing(Document::LiteParse); } else @@ -90,14 +83,8 @@ void SaveDetailOptions::redo() { VToolDetail::AddNode(doc, domElement, newDet.at(i)); } - QList list = oldDet.Missing(newDet); - if (list.size()>0) - { - for (qint32 i = 0; i < list.size(); ++i) - { - doc->DecrementReferens(list.at(i)); - } - } + + DecrementReferences(oldDet.Missing(newDet)); emit NeedLiteParsing(Document::LiteParse); } else diff --git a/src/libs/vtools/undocommands/vundocommand.cpp b/src/libs/vtools/undocommands/vundocommand.cpp index b7732829e..f12fcb9f6 100644 --- a/src/libs/vtools/undocommands/vundocommand.cpp +++ b/src/libs/vtools/undocommands/vundocommand.cpp @@ -28,6 +28,8 @@ #include "vundocommand.h" #include "../vmisc/def.h" +#include "../vgeometry/vpointf.h" +#include "../vtools/tools/vabstracttool.h" Q_LOGGING_CATEGORY(vUndo, "v.undo") @@ -65,3 +67,57 @@ void VUndoCommand::UndoDeleteAfterSibling(QDomNode &parentNode, const quint32 &s parentNode.insertAfter(xml, refElement); } } + +//--------------------------------------------------------------------------------------------------------------------- +void VUndoCommand::IncrementReferences(const QVector &nodes) const +{ + for (qint32 i = 0; i < nodes.size(); ++i) + { + switch (nodes.at(i).getTypeTool()) + { + case (Tool::NodePoint): + { + auto tool = qobject_cast(doc->getTool(nodeId)); + SCASSERT(tool != nullptr); + const auto point = tool->getData()->GeometricObject(nodes.at(i).getId()); + doc->IncrementReferens(point->getIdTool()); + break; + } + case (Tool::NodeArc): + case (Tool::NodeSpline): + case (Tool::NodeSplinePath): + doc->IncrementReferens(nodes.at(i).getId()); + break; + default: + qDebug()<<"Get wrong tool type. Ignore."; + break; + } + } +} + +//--------------------------------------------------------------------------------------------------------------------- +void VUndoCommand::DecrementReferences(const QVector &nodes) const +{ + for (qint32 i = 0; i < nodes.size(); ++i) + { + switch (nodes.at(i).getTypeTool()) + { + case (Tool::NodePoint): + { + auto tool = qobject_cast(doc->getTool(nodeId)); + SCASSERT(tool != nullptr); + const auto point = tool->getData()->GeometricObject(nodes.at(i).getId()); + doc->DecrementReferens(point->getIdTool()); + break; + } + case (Tool::NodeArc): + case (Tool::NodeSpline): + case (Tool::NodeSplinePath): + doc->DecrementReferens(nodes.at(i).getId()); + break; + default: + qDebug()<<"Get wrong tool type. Ignore."; + break; + } + } +} diff --git a/src/libs/vtools/undocommands/vundocommand.h b/src/libs/vtools/undocommands/vundocommand.h index 4874c741d..b97134e6b 100644 --- a/src/libs/vtools/undocommands/vundocommand.h +++ b/src/libs/vtools/undocommands/vundocommand.h @@ -53,6 +53,7 @@ enum class UndoCommand: char { AddPatternPiece, }; class VPattern; +class VNodeDetail; class VUndoCommand : public QObject, public QUndoCommand { @@ -71,6 +72,9 @@ protected: bool redoFlag; virtual void RedoFullParsing(); void UndoDeleteAfterSibling(QDomNode &parentNode, const quint32 &siblingId) const; + + void IncrementReferences(const QVector &nodes) const; + void DecrementReferences(const QVector &nodes) const; private: Q_DISABLE_COPY(VUndoCommand) }; From c65a320c45a2a9a4a0edcb0fc8e63909faf63759 Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Tue, 8 Mar 2016 20:27:25 +0200 Subject: [PATCH 2/3] Added new language Portuguese (Brazil). --HG-- branch : develop --- .tx/config | 1 - ChangeLog.txt | 2 +- share/translations/measurements.pro | 3 +- share/translations/measurements_p0_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p10_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p11_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p12_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p13_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p14_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p15_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p16_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p17_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p18_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p19_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p1_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p20_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p21_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p22_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p23_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p24_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p25_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p26_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p27_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p28_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p29_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p2_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p30_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p31_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p32_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p33_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p34_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p35_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p36_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p37_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p38_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p39_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p3_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p40_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p41_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p42_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p43_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p44_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p45_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p46_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p47_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p48_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p49_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p4_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p50_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p51_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p52_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p53_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p54_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p5_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p6_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p7_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p8_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p998_pt_BR.ts | 4358 ++++++++ share/translations/measurements_p9_pt_BR.ts | 4358 ++++++++ share/translations/translations.pro | 3 +- share/translations/valentina_pt_BR.ts | 9540 +++++++++++++++++ src/app/translations.pri | 13 +- src/libs/vmisc/def.cpp | 3 +- 63 files changed, 253606 insertions(+), 7 deletions(-) create mode 100644 share/translations/measurements_p0_pt_BR.ts create mode 100644 share/translations/measurements_p10_pt_BR.ts create mode 100644 share/translations/measurements_p11_pt_BR.ts create mode 100644 share/translations/measurements_p12_pt_BR.ts create mode 100644 share/translations/measurements_p13_pt_BR.ts create mode 100644 share/translations/measurements_p14_pt_BR.ts create mode 100644 share/translations/measurements_p15_pt_BR.ts create mode 100644 share/translations/measurements_p16_pt_BR.ts create mode 100644 share/translations/measurements_p17_pt_BR.ts create mode 100644 share/translations/measurements_p18_pt_BR.ts create mode 100644 share/translations/measurements_p19_pt_BR.ts create mode 100644 share/translations/measurements_p1_pt_BR.ts create mode 100644 share/translations/measurements_p20_pt_BR.ts create mode 100644 share/translations/measurements_p21_pt_BR.ts create mode 100644 share/translations/measurements_p22_pt_BR.ts create mode 100644 share/translations/measurements_p23_pt_BR.ts create mode 100644 share/translations/measurements_p24_pt_BR.ts create mode 100644 share/translations/measurements_p25_pt_BR.ts create mode 100644 share/translations/measurements_p26_pt_BR.ts create mode 100644 share/translations/measurements_p27_pt_BR.ts create mode 100644 share/translations/measurements_p28_pt_BR.ts create mode 100644 share/translations/measurements_p29_pt_BR.ts create mode 100644 share/translations/measurements_p2_pt_BR.ts create mode 100644 share/translations/measurements_p30_pt_BR.ts create mode 100644 share/translations/measurements_p31_pt_BR.ts create mode 100644 share/translations/measurements_p32_pt_BR.ts create mode 100644 share/translations/measurements_p33_pt_BR.ts create mode 100644 share/translations/measurements_p34_pt_BR.ts create mode 100644 share/translations/measurements_p35_pt_BR.ts create mode 100644 share/translations/measurements_p36_pt_BR.ts create mode 100644 share/translations/measurements_p37_pt_BR.ts create mode 100644 share/translations/measurements_p38_pt_BR.ts create mode 100644 share/translations/measurements_p39_pt_BR.ts create mode 100644 share/translations/measurements_p3_pt_BR.ts create mode 100644 share/translations/measurements_p40_pt_BR.ts create mode 100644 share/translations/measurements_p41_pt_BR.ts create mode 100644 share/translations/measurements_p42_pt_BR.ts create mode 100644 share/translations/measurements_p43_pt_BR.ts create mode 100644 share/translations/measurements_p44_pt_BR.ts create mode 100644 share/translations/measurements_p45_pt_BR.ts create mode 100644 share/translations/measurements_p46_pt_BR.ts create mode 100644 share/translations/measurements_p47_pt_BR.ts create mode 100644 share/translations/measurements_p48_pt_BR.ts create mode 100644 share/translations/measurements_p49_pt_BR.ts create mode 100644 share/translations/measurements_p4_pt_BR.ts create mode 100644 share/translations/measurements_p50_pt_BR.ts create mode 100644 share/translations/measurements_p51_pt_BR.ts create mode 100644 share/translations/measurements_p52_pt_BR.ts create mode 100644 share/translations/measurements_p53_pt_BR.ts create mode 100644 share/translations/measurements_p54_pt_BR.ts create mode 100644 share/translations/measurements_p5_pt_BR.ts create mode 100644 share/translations/measurements_p6_pt_BR.ts create mode 100644 share/translations/measurements_p7_pt_BR.ts create mode 100644 share/translations/measurements_p8_pt_BR.ts create mode 100644 share/translations/measurements_p998_pt_BR.ts create mode 100644 share/translations/measurements_p9_pt_BR.ts create mode 100644 share/translations/valentina_pt_BR.ts diff --git a/.tx/config b/.tx/config index 1f345f371..0ca0025fd 100644 --- a/.tx/config +++ b/.tx/config @@ -1,7 +1,6 @@ [main] host = https://www.transifex.com lang_map = uk: uk_UA, cs : cs_CZ, nl : nl_NL, fi : fi_FI, es : es_ES, id : id_ID -minimum_perc = 20 [valentina-project.valentina_ts] file_filter = share/translations/valentina_.ts diff --git a/ChangeLog.txt b/ChangeLog.txt index 1251243e3..043b2855a 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -6,7 +6,7 @@ - Improved exporting to dxf. QPainterPath export as Polyline. - Show additional message dialog if measurements was changed. Related to issue [#440]. - [#132] Intersect Curves. -- Added language Chinese (China). +- Added language Chinese (China) and Portuguese (Brazil). - New icon for VAL file. Updated Tape logo. Updated ico for standard measurements. - [#325] Check pattern for inverse compatibility. - [#385] Add 'Open Recent' option in Tape.exe, 'File' dropdown menu. diff --git a/share/translations/measurements.pro b/share/translations/measurements.pro index 92ead8a5d..640fe2efb 100644 --- a/share/translations/measurements.pro +++ b/share/translations/measurements.pro @@ -40,7 +40,8 @@ LANGUAGES += \ en_CA \ en_IN \ ro_RO \ - zh_CN + zh_CN \ + pt_BR for(sys, PMSYSTEMS) { diff --git a/share/translations/measurements_p0_pt_BR.ts b/share/translations/measurements_p0_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p0_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p10_pt_BR.ts b/share/translations/measurements_p10_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p10_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p11_pt_BR.ts b/share/translations/measurements_p11_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p11_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p12_pt_BR.ts b/share/translations/measurements_p12_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p12_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p13_pt_BR.ts b/share/translations/measurements_p13_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p13_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p14_pt_BR.ts b/share/translations/measurements_p14_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p14_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p15_pt_BR.ts b/share/translations/measurements_p15_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p15_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p16_pt_BR.ts b/share/translations/measurements_p16_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p16_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p17_pt_BR.ts b/share/translations/measurements_p17_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p17_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p18_pt_BR.ts b/share/translations/measurements_p18_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p18_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p19_pt_BR.ts b/share/translations/measurements_p19_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p19_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p1_pt_BR.ts b/share/translations/measurements_p1_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p1_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p20_pt_BR.ts b/share/translations/measurements_p20_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p20_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p21_pt_BR.ts b/share/translations/measurements_p21_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p21_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p22_pt_BR.ts b/share/translations/measurements_p22_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p22_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p23_pt_BR.ts b/share/translations/measurements_p23_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p23_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p24_pt_BR.ts b/share/translations/measurements_p24_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p24_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p25_pt_BR.ts b/share/translations/measurements_p25_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p25_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p26_pt_BR.ts b/share/translations/measurements_p26_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p26_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p27_pt_BR.ts b/share/translations/measurements_p27_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p27_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p28_pt_BR.ts b/share/translations/measurements_p28_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p28_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p29_pt_BR.ts b/share/translations/measurements_p29_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p29_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p2_pt_BR.ts b/share/translations/measurements_p2_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p2_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p30_pt_BR.ts b/share/translations/measurements_p30_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p30_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p31_pt_BR.ts b/share/translations/measurements_p31_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p31_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p32_pt_BR.ts b/share/translations/measurements_p32_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p32_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p33_pt_BR.ts b/share/translations/measurements_p33_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p33_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p34_pt_BR.ts b/share/translations/measurements_p34_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p34_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p35_pt_BR.ts b/share/translations/measurements_p35_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p35_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p36_pt_BR.ts b/share/translations/measurements_p36_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p36_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p37_pt_BR.ts b/share/translations/measurements_p37_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p37_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p38_pt_BR.ts b/share/translations/measurements_p38_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p38_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p39_pt_BR.ts b/share/translations/measurements_p39_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p39_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p3_pt_BR.ts b/share/translations/measurements_p3_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p3_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p40_pt_BR.ts b/share/translations/measurements_p40_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p40_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p41_pt_BR.ts b/share/translations/measurements_p41_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p41_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p42_pt_BR.ts b/share/translations/measurements_p42_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p42_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p43_pt_BR.ts b/share/translations/measurements_p43_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p43_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p44_pt_BR.ts b/share/translations/measurements_p44_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p44_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p45_pt_BR.ts b/share/translations/measurements_p45_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p45_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p46_pt_BR.ts b/share/translations/measurements_p46_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p46_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p47_pt_BR.ts b/share/translations/measurements_p47_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p47_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p48_pt_BR.ts b/share/translations/measurements_p48_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p48_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p49_pt_BR.ts b/share/translations/measurements_p49_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p49_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p4_pt_BR.ts b/share/translations/measurements_p4_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p4_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p50_pt_BR.ts b/share/translations/measurements_p50_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p50_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p51_pt_BR.ts b/share/translations/measurements_p51_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p51_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p52_pt_BR.ts b/share/translations/measurements_p52_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p52_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p53_pt_BR.ts b/share/translations/measurements_p53_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p53_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p54_pt_BR.ts b/share/translations/measurements_p54_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p54_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p5_pt_BR.ts b/share/translations/measurements_p5_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p5_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p6_pt_BR.ts b/share/translations/measurements_p6_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p6_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p7_pt_BR.ts b/share/translations/measurements_p7_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p7_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p8_pt_BR.ts b/share/translations/measurements_p8_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p8_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p998_pt_BR.ts b/share/translations/measurements_p998_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p998_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/measurements_p9_pt_BR.ts b/share/translations/measurements_p9_pt_BR.ts new file mode 100644 index 000000000..f319fbefa --- /dev/null +++ b/share/translations/measurements_p9_pt_BR.ts @@ -0,0 +1,4358 @@ + + + + + VTranslateMeasurements + + + height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Total + Full measurement name. + + + + + Vertical distance from crown of head to floor. + Full measurement description. + + + + + height_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the floor. + Full measurement description. + + + + + height_scapula + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Scapula + Full measurement name. + + + + + Vertical distance from the Scapula (Blade point) to the floor. + Full measurement description. + + + + + height_armpit + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Armpit + Full measurement name. + + + + + Vertical distance from the Armpit to the floor. + Full measurement description. + + + + + height_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side + Full measurement name. + + + + + Vertical distance from the Waist Side to the floor. + Full measurement description. + + + + + height_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Hip + Full measurement name. + + + + + Vertical distance from the Hip level to the floor. + Full measurement description. + + + + + height_gluteal_fold + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Gluteal Fold + Full measurement name. + + + + + Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. + Full measurement description. + + + + + height_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee + Full measurement name. + + + + + Vertical distance from the fold at the back of the Knee to the floor. + Full measurement description. + + + + + height_calf + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Calf + Full measurement name. + + + + + Vertical distance from the widest point of the calf to the floor. + Full measurement description. + + + + + height_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle High + Full measurement name. + + + + + Vertical distance from the deepest indentation of the back of the ankle to the floor. + Full measurement description. + + + + + height_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Ankle + Full measurement name. + + + + + Vertical distance from point where the front leg meets the foot to the floor. + Full measurement description. + + + + + height_highhip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Highhip + Full measurement name. + + + + + Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. + Full measurement description. + + + + + height_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Front + Full measurement name. + + + + + Vertical distance from the Waist Front to the floor. + Full measurement description. + + + + + height_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Bustpoint + Full measurement name. + + + + + Vertical distance from Bustpoint to the floor. + Full measurement description. + + + + + height_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Shoulder Tip + Full measurement name. + + + + + Vertical distance from the Shoulder Tip to the floor. + Full measurement description. + + + + + height_neck_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Front + Full measurement name. + + + + + Vertical distance from the Neck Front to the floor. + Full measurement description. + + + + + height_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Side + Full measurement name. + + + + + Vertical distance from the Neck Side to the floor. + Full measurement description. + + + + + height_neck_back_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Knee + Full measurement name. + + + + + Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Knee + Full measurement name. + + + + + Vertical distance from the Waist Side to the fold at the back of the knee. + Full measurement description. + + + + + height_waist_side_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Waist Side to Hip + Full measurement name. + + + + + Vertical distance from the Waist Side to the Hip level. + Full measurement description. + + + + + height_knee_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Knee to Ankle + Full measurement name. + + + + + Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. + Full measurement description. + + + + + height_neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Height: Neck Back to Waist Side + Full measurement name. + + + + + Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). + Full measurement description. + + + + + width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Shoulder + Full measurement name. + + + + + Horizontal distance from Shoulder Tip to Shoulder Tip. + Full measurement description. + + + + + width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Bust + Full measurement name. + + + + + Horizontal distance from Bust Side to Bust Side. + Full measurement description. + + + + + width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Waist + Full measurement name. + + + + + Horizontal distance from Waist Side to Waist Side. + Full measurement description. + + + + + width_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Hip + Full measurement name. + + + + + Horizontal distance from Hip Side to Hip Side. + Full measurement description. + + + + + width_abdomen_to_hip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Width: Abdomen to Hip + Full measurement name. + + + + + Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. + Full measurement description. + + + + + indent_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Neck Back + Full measurement name. + + + + + Horizontal distance from Scapula (Blade point) to the Neck Back. + Full measurement description. + + + + + indent_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Waist Back + Full measurement name. + + + + + Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. + Full measurement description. + + + + + indent_ankle_high + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Indent: Ankle High + Full measurement name. + + + + + Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. + Full measurement description. + + + + + hand_palm_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm length + Full measurement name. + + + + + Length from Wrist line to base of middle finger. + Full measurement description. + + + + + hand_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Length + Full measurement name. + + + + + Length from Wrist line to end of middle finger. + Full measurement description. + + + + + hand_palm_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm width + Full measurement name. + + + + + Measure where Palm is widest. + Full measurement description. + + + + + hand_palm_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Palm circumference + Full measurement name. + + + + + Circumference where Palm is widest. + Full measurement description. + + + + + hand_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hand: Circumference + Full measurement name. + + + + + Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. + Full measurement description. + + + + + foot_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Width + Full measurement name. + + + + + Measure at widest part of foot. + Full measurement description. + + + + + foot_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Length + Full measurement name. + + + + + Measure from back of heel to end of longest toe. + Full measurement description. + + + + + foot_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Circumference + Full measurement name. + + + + + Measure circumference around widest part of foot. + Full measurement description. + + + + + foot_instep_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Foot: Instep circumference + Full measurement name. + + + + + Measure circumference at tallest part of instep. + Full measurement description. + + + + + head_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Circumference + Full measurement name. + + + + + Measure circumference at largest level of head. + Full measurement description. + + + + + head_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Length + Full measurement name. + + + + + Vertical distance from Head Crown to bottom of jaw. + Full measurement description. + + + + + head_depth + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Depth + Full measurement name. + + + + + Horizontal distance from front of forehead to back of head. + Full measurement description. + + + + + head_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Width + Full measurement name. + + + + + Horizontal distance from Head Side to Head Side, where Head is widest. + Full measurement description. + + + + + head_crown_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Crown to Neck Back + Full measurement name. + + + + + Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: Neck Back'). + Full measurement description. + + + + + head_chin_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Head: Chin to Neck Back + Full measurement name. + + + + + Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length') + Full measurement description. + + + + + neck_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference, midsection + Full measurement name. + + + + + Circumference of Neck midsection, about halfway between jaw and torso. + Full measurement description. + + + + + neck_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck circumference + Full measurement name. + + + + + Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. + Full measurement description. + + + + + highbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust circumference + Full measurement name. + + + + + Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. + Full measurement description. + + + + + bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust circumference + Full measurement name. + + + + + Circumference around Bust, parallel to floor. + Full measurement description. + + + + + lowbust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust circumference + Full measurement name. + + + + + Circumference around LowBust under the breasts, parallel to floor. + Full measurement description. + + + + + rib_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib circumference + Full measurement name. + + + + + Circumference around Ribs at level of the lowest rib at the side, parallel to floor. + Full measurement description. + + + + + waist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist circumference + Full measurement name. + + + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + + + + highhip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip circumference + Full measurement name. + + + + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. + Full measurement description. + + + + + hip_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference + Full measurement name. + + + + + Circumference around Hip where Hip protrusion is greatest, parallel to floor. + Full measurement description. + + + + + neck_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front + Full measurement name. + + + + + From Neck Side to Neck Side through Neck Front. + Full measurement description. + + + + + highbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front + Full measurement name. + + + + + From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest. + Full measurement description. + + + + + bust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front + Full measurement name. + + + + + From Bust Side to Bust Side across chest. + Full measurement description. + + + + + lowbust_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across front. + Full measurement description. + + + + + rib_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front + Full measurement name. + + + + + From Rib Side to Rib Side, across front. + Full measurement description. + + + + + waist_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front + Full measurement name. + + + + + From Waist Side to Waist Side across front. + Full measurement description. + + + + + highhip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front + Full measurement name. + + + + + From Highhip Side to Highhip Side across front. + Full measurement description. + + + + + hip_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front + Full measurement name. + + + + + From Hip Side to Hip Side across Front. + Full measurement description. + + + + + neck_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, front, half + Full measurement name. + + + + + Half of 'Neck arc, front'. ('Neck arc, front' / 2). + Full measurement description. + + + + + highbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, front, half + Full measurement name. + + + + + Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2). + Full measurement description. + + + + + bust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, front, half + Full measurement name. + + + + + Half of 'Bust arc, front'. ('Bust arc, front'/2). + Full measurement description. + + + + + lowbust_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, front, half + Full measurement name. + + + + + Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2). + Full measurement description. + + + + + rib_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, front, half + Full measurement name. + + + + + Half of 'Rib arc, front'. ('Rib Arc, front' / 2). + Full measurement description. + + + + + waist_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, front, half + Full measurement name. + + + + + Half of 'Waist arc, front'. ('Waist arc, front' / 2). + Full measurement description. + + + + + highhip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, front, half + Full measurement name. + + + + + Half of 'Highhip arc, front'. ('Highhip arc, front' / 2). + Full measurement description. + + + + + hip_arc_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, front, half + Full measurement name. + + + + + Half of 'Hip arc, front'. ('Hip arc, front' / 2). + Full measurement description. + + + + + neck_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back + Full measurement name. + + + + + From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front'). + Full measurement description. + + + + + highbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back + Full measurement name. + + + + + From Highbust Side to Highbust Side across back. ('Highbust circumference' - 'Highbust arc, front'). + Full measurement description. + + + + + bust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back + Full measurement name. + + + + + From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front'). + Full measurement description. + + + + + lowbust_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back + Full measurement name. + + + + + From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front'). + Full measurement description. + + + + + rib_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back + Full measurement name. + + + + + From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front'). + Full measurement description. + + + + + waist_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back + Full measurement name. + + + + + From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front'). + Full measurement description. + + + + + highhip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back + Full measurement name. + + + + + From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front'). + Full measurement description. + + + + + hip_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back + Full measurement name. + + + + + From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front'). + Full measurement description. + + + + + neck_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck arc, back, half + Full measurement name. + + + + + Half of 'Neck arc, back'. ('Neck arc, back' / 2). + Full measurement description. + + + + + highbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust arc, back, half + Full measurement name. + + + + + Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2). + Full measurement description. + + + + + bust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust arc, back, half + Full measurement name. + + + + + Half of 'Bust arc, back'. ('Bust arc, back' / 2). + Full measurement description. + + + + + lowbust_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust arc, back, half + Full measurement name. + + + + + Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2). + Full measurement description. + + + + + rib_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib arc, back, half + Full measurement name. + + + + + Half of 'Rib arc, back'. ('Rib arc, back' / 2). + Full measurement description. + + + + + waist_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist arc, back, half + Full measurement name. + + + + + Half of 'Waist arc, back'. ('Waist arc, back' / 2). + Full measurement description. + + + + + highhip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highhip arc, back, half + Full measurement name. + + + + + Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2). + Full measurement description. + + + + + hip_arc_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc, back, half + Full measurement name. + + + + + Half of 'Hip arc, back'. ('Hip arc, back' / 2). + Full measurement description. + + + + + hip_with_abdomen_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip arc with Abdomen, front + Full measurement name. + + + + + Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over paper across front. + Full measurement description. + + + + + body_armfold_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Armfold level + Full measurement name. + + + + + Measure around arms and torso at Armfold level. + Full measurement description. + + + + + body_bust_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference at Bust level + Full measurement name. + + + + + Measure around arms and torso at Bust level. + Full measurement description. + + + + + body_torso_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Body circumference of full torso + Full measurement name. + + + + + Circumference around torso from mid-shoulder around crotch back up to mid-shoulder. + Full measurement description. + + + + + hip_circ_with_abdomen + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Hip circumference, including Abdomen + Full measurement name. + + + + + Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with abdomen, front). + Full measurement description. + + + + + neck_front_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front + Full measurement name. + + + + + From Neck Front, over tape between Breastpoints, down to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_flat_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Front flat + Full measurement name. + + + + + From Neck Front down between breasts to Waist Front. + Full measurement description. + + + + + armpit_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armpit to Waist Side + Full measurement name. + + + + + From Armpit down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, front + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Front, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, front + Full measurement name. + + + + + From Neck Side straight down front to Waist level. + Full measurement description. + + + + + neck_side_to_waist_bustpoint_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Bustpoint + Full measurement name. + + + + + From Neck Side over Bustpoint to Waist level, forming a straight line. + Full measurement description. + + + + + neck_front_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Highbust Front + Full measurement name. + + + + + Neck Front down to Highbust Front. + Full measurement description. + + + + + highbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Front to Waist Front + Full measurement name. + + + + + From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to Waist Front' - 'Neck Front to Highbust Front'). + Full measurement description. + + + + + neck_front_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Bust Front + Full measurement name. + + + + + From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints. + Full measurement description. + + + + + bust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Front to Waist Front + Full measurement name. + + + + + From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front'). + Full measurement description. + + + + + lowbust_to_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Front to Waist Front + Full measurement name. + + + + + From Lowbust Front down to Waist Front. + Full measurement description. + + + + + rib_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rib Side to Waist Side + Full measurement name. + + + + + From lowest rib at side down to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Front + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Front. + Full measurement description. + + + + + neck_side_to_bust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, front + Full measurement name. + + + + + From Neck Side straight down front to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, front + Full measurement name. + + + + + From Neck Side straight down front to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, front + Full measurement name. + + + + + From mid-Shoulder down front to Highbust level, aimed at Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Side, back + Full measurement name. + + + + + From Shoulder Tip, curving around Armscye Back, then down to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, back + Full measurement name. + + + + + From Neck Side straight down back to Waist level. + Full measurement description. + + + + + neck_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Back + Full measurement name. + + + + + From Neck Back down to Waist Back. + Full measurement description. + + + + + neck_side_to_waist_scapula_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist level, through Scapula + Full measurement name. + + + + + From Neck Side across Scapula down to Waist level, forming a straight line. + Full measurement description. + + + + + neck_back_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Highbust Back + Full measurement name. + + + + + From Neck Back down to Highbust Back. + Full measurement description. + + + + + highbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back to Waist Back + Full measurement name. + + + + + From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back'). + Full measurement description. + + + + + neck_back_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Back + Full measurement name. + + + + + From Neck Back down to Bust Back. + Full measurement description. + + + + + bust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bust Back to Waist Back + Full measurement name. + + + + + From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back'). + Full measurement description. + + + + + lowbust_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Lowbust Back to Waist Back + Full measurement name. + + + + + From Lowbust Back down to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Armfold Back + Full measurement name. + + + + + From Shoulder Tip around Armscye down to Armfold Back. + Full measurement description. + + + + + neck_side_to_bust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust level, back + Full measurement name. + + + + + From Neck Side straight down back to Bust level. + Full measurement description. + + + + + neck_side_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust level, back + Full measurement name. + + + + + From Neck Side straight down back to Highbust level. + Full measurement description. + + + + + shoulder_center_to_highbust_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder center to Highbust level, back + Full measurement name. + + + + + From mid-Shoulder down back to Highbust level, aimed through Scapula. + Full measurement description. + + + + + waist_to_highhip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Highhip Front + Full measurement name. + + + + + From Waist Front to Highhip Front. + Full measurement description. + + + + + waist_to_hip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Hip Front + Full measurement name. + + + + + From Waist Front to Hip Front. + Full measurement description. + + + + + waist_to_highhip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Highhip Side + Full measurement name. + + + + + From Waist Side to Highhip Side. + Full measurement description. + + + + + waist_to_highhip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Highhip Back + Full measurement name. + + + + + From Waist Back down to Highhip Back. + Full measurement description. + + + + + waist_to_hip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Hip Back + Full measurement name. + + + + + From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. + Full measurement description. + + + + + waist_to_hip_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Side to Hip Side + Full measurement name. + + + + + From Waist Side to Hip Side. + Full measurement description. + + + + + shoulder_slope_neck_side_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Side + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_side_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Side + Full measurement name. + + + + + Vertical distance between Neck Side and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_neck_back_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Neck Back + Full measurement name. + + + + + Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor. + Full measurement description. + + + + + shoulder_slope_neck_back_height + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope length from Neck Back + Full measurement name. + + + + + Vertical distance between Neck Back and Shoulder Tip. + Full measurement description. + + + + + shoulder_slope_shoulder_tip_angle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Slope Angle from Shoulder Tip + Full measurement name. + + + + + Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip. + Full measurement description. + + + + + neck_back_to_across_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Across Back + Full measurement name. + + + + + From neck back, down to level of Across Back measurement. + Full measurement description. + + + + + across_back_to_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back to Waist back + Full measurement name. + + + + + From middle of Across Back down to Waist back. + Full measurement description. + + + + + shoulder_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder length + Full measurement name. + + + + + From Neck Side to Shoulder Tip. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across front. + Full measurement description. + + + + + across_chest_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest + Full measurement name. + + + + + From Armscye to Armscye at narrowest width across chest. + Full measurement description. + + + + + armfold_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front + Full measurement name. + + + + + From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, front, half + Full measurement name. + + + + + Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2). + Full measurement description. + + + + + across_chest_half_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Chest, half + Full measurement name. + + + + + Half of 'Across Chest'. ('Across Chest' / 2). + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back + Full measurement name. + + + + + From Shoulder Tip to Shoulder Tip, across the back. + Full measurement description. + + + + + across_back_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back + Full measurement name. + + + + + From Armscye to Armscye at the narrowest width of the back. + Full measurement description. + + + + + armfold_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, back + Full measurement name. + + + + + From Armfold to Armfold across the back. + Full measurement description. + + + + + shoulder_tip_to_shoulder_tip_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Shoulder Tip, back, half + Full measurement name. + + + + + Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). + Full measurement description. + + + + + across_back_half_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back, half + Full measurement name. + + + + + Half of 'Across Back'. ('Across Back' / 2). + Full measurement description. + + + + + neck_front_to_shoulder_tip_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Shoulder Tip + Full measurement name. + + + + + From Neck Front to Shoulder Tip. + Full measurement description. + + + + + neck_back_to_shoulder_tip_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Shoulder Tip + Full measurement name. + + + + + From Neck Back to Shoulder Tip. + Full measurement description. + + + + + neck_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Width + Full measurement name. + + + + + Measure between the 'legs' of an unclosed necklace or chain draped around the neck. + Full measurement description. + + + + + bustpoint_to_bustpoint + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint + Full measurement name. + + + + + From Bustpoint to Bustpoint. + Full measurement description. + + + + + bustpoint_to_neck_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Neck Side + Full measurement name. + + + + + From Neck Side to Bustpoint. + Full measurement description. + + + + + bustpoint_to_lowbust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Lowbust + Full measurement name. + + + + + From Bustpoint down to Lowbust level, following curve of bust or chest. + Full measurement description. + + + + + bustpoint_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist level + Full measurement name. + + + + + From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). + Full measurement description. + + + + + bustpoint_to_bustpoint_half + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint, half + Full measurement name. + + + + + Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). + Full measurement description. + + + + + bustpoint_neck_side_to_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint, Neck Side to Waist level + Full measurement name. + + + + + From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). + Full measurement description. + + + + + bustpoint_to_shoulder_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Shoulder Tip + Full measurement name. + + + + + From Bustpoint to Shoulder tip. + Full measurement description. + + + + + bustpoint_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Waist Front + Full measurement name. + + + + + From Bustpoint to Waist Front, in a straight line, not following the curves of the body. + Full measurement description. + + + + + bustpoint_to_bustpoint_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Bustpoint to Bustpoint Halter + Full measurement name. + + + + + From Bustpoint around Neck Back down to other Bustpoint. + Full measurement description. + + + + + shoulder_tip_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Front + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Front. + Full measurement description. + + + + + neck_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Front to Waist Side + Full measurement name. + + + + + From Neck Front diagonal to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Waist Side. + Full measurement description. + + + + + shoulder_tip_to_waist_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back + Full measurement name. + + + + + From Shoulder Tip diagonal to Waist Back. + Full measurement description. + + + + + shoulder_tip_to_waist_b_1in_offset + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Shoulder Tip to Waist Back, with 1in (2.54cm) offset + Full measurement name. + + + + + Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure from Shoulder Tip diagonal to mark. + Full measurement description. + + + + + neck_back_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Side + Full measurement name. + + + + + From Neck Back diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_waist_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Waist Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Waist Side. + Full measurement description. + + + + + neck_side_to_armfold_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Front + Full measurement name. + + + + + From Neck Side diagonal to Armfold Front. + Full measurement description. + + + + + neck_side_to_armpit_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, front + Full measurement name. + + + + + From Neck Side diagonal across front to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, front + Full measurement name. + + + + + Neck Side diagonal across front to Bust Side. + Full measurement description. + + + + + neck_side_to_armfold_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Armfold Back + Full measurement name. + + + + + From Neck Side diagonal to Armfold Back. + Full measurement description. + + + + + neck_side_to_armpit_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Highbust Side, back + Full measurement name. + + + + + From Neck Side diagonal across back to Highbust Side (Armpit). + Full measurement description. + + + + + neck_side_to_bust_side_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Side to Bust Side, back + Full measurement name. + + + + + Neck Side diagonal across back to Bust Side. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow, bent + Full measurement name. + + + + + Bend Arm, measure from Shoulder Tip to Elbow Tip. + Full measurement description. + + + + + arm_elbow_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, bent + Full measurement name. + + + + + Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent'). + Full measurement description. + + + + + arm_elbow_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference, bent + Full measurement name. + + + + + Elbow circumference, arm is bent. + Full measurement description. + + + + + arm_shoulder_tip_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Wrist + Full measurement name. + + + + + From Shoulder Tip to Wrist bone, arm straight. + Full measurement description. + + + + + arm_shoulder_tip_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Elbow + Full measurement name. + + + + + From Shoulder tip to Elbow Tip, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist + Full measurement name. + + + + + From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow'). + Full measurement description. + + + + + arm_armpit_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Wrist, inside + Full measurement name. + + + + + From Armpit to ulna Wrist bone, arm straight. + Full measurement description. + + + + + arm_armpit_to_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armpit to Elbow, inside + Full measurement name. + + + + + From Armpit to inner Elbow, arm straight. + Full measurement description. + + + + + arm_elbow_to_wrist_inside + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow to Wrist, inside + Full measurement name. + + + + + From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside'). + Full measurement description. + + + + + arm_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Upper Arm circumference + Full measurement name. + + + + + Arm circumference at Armpit level. + Full measurement description. + + + + + arm_above_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Above Elbow circumference + Full measurement name. + + + + + Arm circumference at Bicep level. + Full measurement description. + + + + + arm_elbow_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Elbow circumference + Full measurement name. + + + + + Elbow circumference, arm straight. + Full measurement description. + + + + + arm_lower_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Lower Arm circumference + Full measurement name. + + + + + Arm circumference where lower arm is widest. + Full measurement description. + + + + + arm_wrist_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Wrist circumference + Full measurement name. + + + + + Wrist circumference. + Full measurement description. + + + + + arm_shoulder_tip_to_armfold_line + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Shoulder Tip to Armfold line + Full measurement name. + + + + + From Shoulder Tip down to Armpit level. + Full measurement description. + + + + + arm_neck_side_to_wrist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist + Full measurement name. + + + + + From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist'). + Full measurement description. + + + + + arm_neck_side_to_finger_tip + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Finger Tip + Full measurement name. + + + + + From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist' + 'Hand: Length'). + Full measurement description. + + + + + armscye_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Circumference + Full measurement name. + + + + + Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit. + Full measurement description. + + + + + armscye_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Length + Full measurement name. + + + + + Vertical distance from Shoulder Tip to Armpit. + Full measurement description. + + + + + armscye_width + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Width + Full measurement name. + + + + + Horizontal distance between Armscye Front and Armscye Back. + Full measurement description. + + + + + arm_neck_side_to_outer_elbow + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck side to Elbow + Full measurement name. + + + + + From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + Arm: Shoulder Tip to Elbow). + Full measurement description. + + + + + leg_crotch_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to floor + Full measurement name. + + + + + Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor. + Full measurement description. + + + + + leg_waist_side_to_floor + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to floor + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to floor. + Full measurement description. + + + + + leg_thigh_upper_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Upper circumference + Full measurement name. + + + + + Thigh circumference at the fullest part of the upper Thigh near the Crotch. + Full measurement description. + + + + + leg_thigh_mid_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Thigh Middle circumference + Full measurement name. + + + + + Thigh circumference about halfway between Crotch and Knee. + Full measurement description. + + + + + leg_knee_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference + Full measurement name. + + + + + Knee circumference with straight leg. + Full measurement description. + + + + + leg_knee_small_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee Small circumference + Full measurement name. + + + + + Leg circumference just below the knee. + Full measurement description. + + + + + leg_calf_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Calf circumference + Full measurement name. + + + + + Calf circumference at the largest part of lower leg. + Full measurement description. + + + + + leg_ankle_high_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle High circumference + Full measurement name. + + + + + Ankle circumference where the indentation at the back of the ankle is the deepest. + Full measurement description. + + + + + leg_ankle_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle circumference + Full measurement name. + + + + + Ankle circumference where front of leg meets the top of the foot. + Full measurement description. + + + + + leg_knee_circ_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Knee circumference, bent + Full measurement name. + + + + + Knee circumference with leg bent. + Full measurement description. + + + + + leg_ankle_diag_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Ankle diagonal circumference + Full measurement name. + + + + + Ankle circumference diagonal from top of foot to bottom of heel. + Full measurement description. + + + + + leg_crotch_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Crotch to Ankle + Full measurement name. + + + + + From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_ankle + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Ankle + Full measurement name. + + + + + From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle'). + Full measurement description. + + + + + leg_waist_side_to_knee + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Leg: Waist Side to Knee + Full measurement name. + + + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + crotch_length + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Front down betwen legs and up to Waist Back. + Full measurement description. + + + + + crotch_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, back + Full measurement name. + + + + + Put tape across gap between buttocks at Hip level. Measure from Waist Back to mid-Crotch, either at the vagina or between testicles and anus). + Full measurement description. + + + + + crotch_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Crotch length, front + Full measurement name. + + + + + From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side, sitting + Full measurement name. + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + rise_length_diag + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, diagonal + Full measurement name. + + + + + Measure from Waist Side diagonally to a string tied at the top of the leg, seated on a hard surface. + Full measurement description. + + + + + rise_length_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, back + Full measurement name. + + + + + Vertical distance from Waist Back to Crotch level. + Full measurement description. + + + + + rise_length_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, front + Full measurement name. + + + + + Vertical Distance from Waist Front to Crotch level. + Full measurement description. + + + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + neck_back_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Waist Front + Full measurement name. + + + + + From Neck Back around Neck Side down to Waist Front. + Full measurement description. + + + + + waist_to_waist_halter + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist to Waist Halter, around Neck Back + Full measurement name. + + + + + From Waist level around Neck Back to Waist level. + Full measurement description. + + + + + waist_natural_circ + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist circumference + Full measurement name. + + + + + Torso circumference at men's natural side Abdominal Obliques indentation, if Oblique indentation isn't found then just below the Navel level. + Full measurement description. + + + + + waist_natural_arc_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, front + Full measurement name. + + + + + From Side to Side at the Natural Waist level, across the front. + Full measurement description. + + + + + waist_natural_arc_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Natural Waist arc, back + Full measurement name. + + + + + From Side to Side at Natural Waist level, across the back. Calculate as ( Natural Waist circumference - Natural Waist arc (front) ). + Full measurement description. + + + + + waist_to_natural_waist_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Front to Natural Waist Front + Full measurement name. + + + + + Length from Waist Front to Natural Waist Front. + Full measurement description. + + + + + waist_to_natural_waist_b + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Waist Back to Natural Waist Back + Full measurement name. + + + + + Length from Waist Back to Natural Waist Back. + Full measurement description. + + + + + arm_neck_back_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip. + Full measurement description. + + + + + arm_neck_back_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Back to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_neck_side_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip. + Full measurement description. + + + + + arm_neck_side_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Neck Side to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_across_back_center_to_elbow_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Elbow, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip. + Full measurement description. + + + + + arm_across_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Across Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone. + Full measurement description. + + + + + arm_armscye_back_center_to_wrist_bent + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Arm: Armscye Back Center to Wrist, high bend + Full measurement name. + + + + + Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip. + Full measurement description. + + + + + neck_back_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Bust Front + Full measurement name. + + + + + From Neck Back, over Shoulder, to Bust Front. + Full measurement description. + + + + + neck_back_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back to Armfold Front + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_waist_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, over Shoulder, to Waist Side + Full measurement name. + + + + + From Neck Back, over Shoulder, down chest to Waist Side. + Full measurement description. + + + + + highbust_back_over_shoulder_to_armfold_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Armfold Front + Full measurement name. + + + + + From Highbust Back over Shoulder to Armfold Front. + Full measurement description. + + + + + highbust_back_over_shoulder_to_waist_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Waist Front + Full measurement name. + + + + + From Highbust Back, over Shoulder touching Neck Side, to Waist Front. + Full measurement description. + + + + + neck_back_to_armfold_front_to_neck_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Neck Back + Full measurement name. + + + + + From Neck Back, over Shoulder to Armfold Front, under arm and return to start. + Full measurement description. + + + + + across_back_center_to_armfold_front_to_across_back_center + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Across Back Center, circled around Shoulder + Full measurement name. + + + + + From center of Across Back, over Shoulder, under Arm, and return to start. + Full measurement description. + + + + + neck_back_to_armfold_front_to_highbust_back + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Neck Back, to Armfold Front, to Highbust Back + Full measurement name. + + + + + From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back. + Full measurement description. + + + + + armfold_to_armfold_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Armfold, front, curved through Bust Front + Full measurement name. + + + + + Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front. + Full measurement description. + + + + + armfold_to_bust_front + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armfold to Bust Front + Full measurement name. + + + + + Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible. + Full measurement description. + + + + + highbust_b_over_shoulder_to_highbust_f + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Highbust Back, over Shoulder, to Highbust level + Full measurement name. + + + + + From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level. + Full measurement description. + + + + + armscye_arc + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Armscye: Arc + Full measurement name. + + + + + From Armscye at Across Chest over ShoulderTip to Armscye at Across Back. + Full measurement description. + + + + + dart_width_shoulder + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Shoulder + Full measurement name. + + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + + dart_width_bust + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Bust + Full measurement name. + + + + + dart_width_waist + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Dart Width: Waist + Full measurement name. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + + + diff --git a/share/translations/translations.pro b/share/translations/translations.pro index f4f9e1a62..9560676f8 100644 --- a/share/translations/translations.pro +++ b/share/translations/translations.pro @@ -57,7 +57,8 @@ LANGUAGES += \ en_CA \ en_IN \ ro_RO \ - zh_CN + zh_CN \ + pt_BR TRANSLATIONS += valentina.ts diff --git a/share/translations/valentina_pt_BR.ts b/share/translations/valentina_pt_BR.ts new file mode 100644 index 000000000..07e01bdde --- /dev/null +++ b/share/translations/valentina_pt_BR.ts @@ -0,0 +1,9540 @@ + + + + + AddDet + + + add detail + + + + + AddPatternPiece + + + add pattern piece %1 + + + + + AddToCalc + + + add object + + + + + CommunityPage + + + + Server + + + + + + Server name/IP: + + + + + + Secure connection + + + + + + Proxy settings + + + + + + Use Proxy + + + + + + Proxy address: + + + + + + Proxy port: + + + + + + Proxy user: + + + + + + Proxy pass: + + + + + + User settings + + + + + + User Name: + + + + + + Save password + + + + + + Password: + + + + + ConfigDialog + + + + Apply + + + + + + &Cancel + + + + + + &Ok + + + + + + Config Dialog + + + + + + Configuration + + + + + + Pattern + + + + + + Community + + + + + + Paths + + + + + ConfigurationPage + + + The Default unit has been updated and will be used as the default for the next pattern you create. + + + + + + Save + + + + + + Auto-save modified pattern + + + + + + min + + + + + + Interval: + + + + + + Language + + + + + + GUI language: + + + + + + Decimal separator parts: + + + + + + With OS options (%1) + + + + + + Centimeters + + + + + + Millimiters + + + + + + Inches + + + + + + Default unit: + + + + + + Label language: + + + + + + Pattern making system + + + + + + Pattern making system: + + + + + + Author: + + + + + + Book: + + + + + + Send crash reports + + + + + + Send crash reports (recommended) + + + + + + After each crash Valentina collects information that may help us fix the problem. We do not collect any personal information. Find more about what <a href="https://bitbucket.org/dismine/valentina/wiki/manual/Crash_reports">kind of information</a> we collect. + + + + + + Pattern Editing + + + + + + + Confirm item deletion + + + + + + Toolbar + + + + + + + The text appears under the icon. (recommended for beginners.) + + + + + DelTool + + + delete tool + + + + + DeleteDetail + + + delete tool + + + + + DeletePatternPiece + + + delete pattern piece %1 + + + + + DialogAboutApp + + + About Valentina + + + + + Valentina version + + + + + Build revision: + + + + + Contributors + + + + + Built on %1 at %2 + + + + + Web site : %1 + + + + + Cannot open your default browser + + + + + DialogAboutTape + + + About Tape + + + + + Tape version + + + + + Build revision: + + + + + This program is part of Valentina project. + + + + + Cannot open your default browser + + + + + Build revision: %1 + + + + + Built on %1 at %2 + + + + + Web site : %1 + + + + + DialogAlongLine + + + Point at distance along line + + + + + Length: + + + + + Formula wizard + + + + + Value + + + + + Calculation + + + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + + Point label: + + + + + First point: + + + + + First point of the line + + + + + Second point: + + + + + Second point of the line + + + + + Type of line: + + + + + Line color: + + + + + Unique label + + + + + Choose unique label. + + + + + Edit length + + + + + Select second point of line + + + + + DialogArc + + + Arc + + + + + Radius: + + + + + + + Formula wizard + + + + + + + Value + + + + + Calulation + + + + + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + + First angle: + + + + + + Calculation + + + + + Second angle: + + + + + Center point: + + + + + Select center point of the arc + + + + + Color: + + + + + Edit radius + + + + + Edit first angle + + + + + Edit second angle + + + + + + + Error + + + + + Radius can't be negative + + + + + + Angles equal + + + + + DialogArcWithLength + + + Dialog + + + + + Radius: + + + + + + + Formula wizard + + + + + + + Value + + + + + + + Calculation + + + + + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + + First angle: + + + + + Length: + + + + + Center point: + + + + + Color: + + + + + Edit radius + + + + + Edit the first angle + + + + + Edit the arc length + + + + + + Error + + + + + Radius can't be negative + + + + + Length can't be equal 0 + + + + + DialogBisector + + + Point along bisector + + + + + Length: + + + + + Formula wizard + + + + + Value + + + + + Calculation + + + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + + Point label: + + + + + Unique label + + + + + Choose unique label. + + + + + First point: + + + + + Second point: + + + + + Third point: + + + + + Type of line: + + + + + Line color: + + + + + Edit length + + + + + Select second point of angle + + + + + Select third point of angle + + + + + DialogCurveIntersectAxis + + + Point intersect curve and axis + + + + + Angle: + + + + + Formula wizard + + + + + Value + + + + + Calculation + + + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + + Axis point: + + + + + Curve: + + + + + Point label: + + + + + Unique label + + + + + Choose unique label. + + + + + Type of line: + + + + + Line color: + + + + + Select axis point + + + + + Edit angle + + + + + DialogCutArc + + + Segment an arc + + + + + Length: + + + + + Formula wizard + + + + + Value + + + + + Calculation + + + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + + Arc: + + + + + Point label: + + + + + Unique label + + + + + Choose unique label. + + + + + Color: + + + + + Edit length + + + + + DialogCutSpline + + + Segmenting a simple curve + + + + + Length: + + + + + Formula wizard + + + + + Value + + + + + Calculation + + + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + + Curve: + + + + + Point label: + + + + + Unique label + + + + + Choose unique label. + + + + + Color: + + + + + Edit length + + + + + DialogCutSplinePath + + + Segment a curved path + + + + + Length: + + + + + Formula wizard + + + + + Value + + + + + Calculation + + + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + + Curve: + + + + + Point label: + + + + + Unique label + + + + + Choose unique label. + + + + + Color: + + + + + Edit length + + + + + DialogDetail + + + Seam allowance tool + + + + + All objects in path should follow in clockwise direction. + + + + + Bias X: + + + + + + + cm + + + + + Bias Y: + + + + + Reverse + + + + + Options + + + + + Name of detail: + + + + + Detail + + + + + Seam allowance + + + + + Width: + + + + + Closed + + + + + Delete + + + + + Scroll down the list + + + + + Scroll up the list + + + + + + Ready! + + + + + Got wrong scene object. Ignore. + + + + + You need more points! + + + + + You have to choose points in a clockwise direction! + + + + + First point cannot be equal to the last point! + + + + + You have double points! + + + + + DialogEditWrongFormula + + + Edit formula + + + + + Formula: + + + + + Insert variable into formula + + + + + Value + + + + + Calculation + + + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + + Input data + + + + + Measurements + + + + + Increments + + + + + Length of lines + + + + + Length of arcs + + + + + Length of curves + + + + + Angle of lines + + + + + Radius of arcs + + + + + Angles of arcs + + + + + Angles of curves + + + + + Hide empty measurements + + + + + Double click for add to formula + + + + + Line length + + + + + Arc length + + + + + Curve length + + + + + Line Angle + + + + + Arc radius + + + + + Arc angle + + + + + Curve angle + + + + + DialogEndLine + + + Point at distance and angle + + + + + Length: + + + + + + Formula wizard + + + + + + Value + + + + + + Calculation + + + + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + + Angle: + + + + + Base point: + + + + + Point label: + + + + + Unique label + + + + + Choose unique label. + + + + + Type of line: + + + + + Line color: + + + + + Edit angle + + + + + Edit length + + + + + DialogHeight + + + Perpendicular point along line + + + + + Point label: + + + + + Unique label + + + + + Choose unique label. + + + + + Base point: + + + + + First point of line: + + + + + Second point of line: + + + + + Type of line: + + + + + Line color: + + + + + Select first point of line + + + + + Select second point of line + + + + + DialogHistory + + + History + + + + + + Tool + + + + + + + + + Can't create record. + + + + + %1 - Base point + + + + + + %1_%2 - Line from point %1 to point %2 + + + + + %3 - Point along line %1_%2 + + + + + %1 - Point of shoulder + + + + + %3 - normal to line %1_%2 + + + + + %4 - bisector of angle %1_%2_%3 + + + + + %5 - intersection of lines %1_%2 and %3_%4 + + + + + Curve %1_%2 + + + + + Arc with center in point %1 + + + + + Arc with center in point %1 and length %2 + + + + + Curve point %1 + + + + + %4 - point of contact of arc with the center in point %1 and line %2_%3 + + + + + Point of perpendicular from point %1 to line %2_%3 + + + + + Triangle: axis %1_%2, points %3 and %4 + + + + + %1 - point of intersection %2 and %3 + + + + + %1 - cut arc with center %2 + + + + + %1 - cut curve %2_%3 + + + + + %1 - cut curve path %2 + + + + + %1 - point of intersection line %2_%3 and axis through point %4 + + + + + %1 - point of intersection curve and axis through point %2 + + + + + %1 - point of arcs intersection + + + + + %1 - point of circles intersection + + + + + %1 - point of curves intersection + + + + + %1 - point from circle and tangent + + + + + %1 - point from arc and tangent + + + + + Correction the dart %1_%2_%3 + + + + + DialogIncrements + + + Tables of Variables + + + + + Increments + + + + + Name + + + + + The calculated value + + + + + Formula + + + + + + Details + + + + + Move measurement up + + + + + Move measurement down + + + + + Name: + + + + + Unique increment name + + + + + Calculated value: + + + + + Formula: + + + + + Calculation + + + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + + Formula wizard + + + + + Description: + + + + + Lines + + + + + + Line + + + + + + + Length + + + + + Lines angles + + + + + + + Angle + + + + + Lengths curves + + + + + + Curve + + + + + Angles curves + + + + + Lengths arcs + + + + + + + Arc + + + + + Radiuses arcs + + + + + Radius + + + + + Angles arcs + + + + + + + Error + + + + + + Empty field. + + + + + Empty field + + + + + Value + + + + + + Parser error: %1 + + + + + Increment_%1 + + + + + Edit increment + + + + + DialogLayoutProgress + + + Create a Layout + + + + + <html><head/><body><p>Finding best position for worpieces. Please, wait.</p></body></html> + + + + + + Arranged workpieces: %1 from %2 + + + + + Couldn't prepare data for creation layout + + + + + Several workpieces left not arranged, but none of them match for paper + + + + + DialogLayoutSettings + + + Create a layout + + + + + Paper format + + + + + Templates: + + + + + Width: + + + + + Height: + + + + + Fields + + + + + Left: + + + + + Right: + + + + + Top: + + + + + Bottom: + + + + + Ignore fileds + + + + + Layout options + + + + + Gap width: + + + + + Shift/Offset length: + + + + + Save length of the sheet + + + + + Rotate workpiece + + + + + Rotate by + + + + + degree + + + + + Rule for choosing the next workpiece + + + + + Three groups: big, middle, small + + + + + Two groups: big, small + + + + + Descending area + + + + + Auto crop unused length + + + + + Unite pages (if possible) + + + + + Enabling for sheets that have big height will speed up creating. + + + + + Divide into strips + + + + + Multiplier + + + + + Set multiplier for length of the biggest workpiece in layout. + + + + + x + + + + + Letter + + + + + Legal + + + + + Roll 24in + + + + + Roll 30in + + + + + Roll 36in + + + + + Roll 42in + + + + + Roll 44in + + + + + Custom + + + + + + Three groups: big, middle, small = 0; + Two groups: big, small = 1; + Descending area = 2 + + + + + Wrong fields. + + + + + Fields go beyond printing. + +Apply settings anyway? + + + + + + Millimiters + + + + + + Centimeters + + + + + + Inches + + + + + Pixels + + + + + DialogLine + + + Line between points + + + + + First point: + + + + + Second point: + + + + + Type of line: + + + + + Line color: + + + + + Select second point + + + + + DialogLineIntersect + + + Point at line intersection + + + + + Point label: + + + + + Unique label + + + + + Choose unique label. + + + + + First line + + + + + + First point: + + + + + + Second point: + + + + + Second line + + + + + Select second point of first line + + + + + Select first point of second line + + + + + Select second point of second line + + + + + DialogLineIntersectAxis + + + Point intersect line and axis + + + + + Angle: + + + + + Formula wizard + + + + + Value + + + + + Calculation + + + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + + Axis point: + + + + + Axis Point + + + + + First line point: + + + + + First point of line + + + + + Second line point: + + + + + Second point of line + + + + + Point label: + + + + + Unique label + + + + + Choose unique label. + + + + + Type of line: + + + + + Show line from first point to this point + + + + + Line color: + + + + + Select second point of line + + + + + Select axis point + + + + + Edit angle + + + + + DialogMDataBase + + + Measurement data base + + + + + Measurements + + + + + + Direct Height + Measurement section + + + + + + Direct Width + Measurement section + + + + + + Indentation + Measurement section + + + + + + Hand + Measurement section + + + + + + Foot + Measurement section + + + + + + Head + Measurement section + + + + + + Circumference and Arc + Measurement section + + + + + + Vertical + Measurement section + + + + + + Horizontal + Measurement section + + + + + + Bust + Measurement section + + + + + + Balance + Measurement section + + + + + + Arm + Measurement section + + + + + + Leg + Measurement section + + + + + + Crotch and Rise + Measurement section + + + + + + Men & Tailoring + Measurement section + + + + + + Historical & Specialty + Measurement section + + + + + + Patternmaking measurements + Measurement section + + + + + Collapse All + + + + + Expand All + + + + + Check all + + + + + Uncheck all + + + + + DialogNewMeasurements + + + New measurement file + + + + + Measurement type: + + + + + Unit: + + + + + Base size: + + + + + Base height: + + + + + Individual + + + + + Standard + + + + + Centimeters + + + + + Millimiters + + + + + Inches + + + + + DialogNewPattern + + + New pattern + + + + + Pattern piece name: + + + + + Unique pattern piece name + + + + + Choose unique pattern piece name. + + + + + Units: + + + + + Centimeters + + + + + Millimiters + + + + + Inches + + + + + DialogNormal + + + Point along perpendicular + + + + + Length: + + + + + Formula wizard + + + + + Value + + + + + Calculation + + + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + + Point label: + + + + + Unique label + + + + + Choose unique label. + + + + + First point: + + + + + Second point: + + + + + Additional angle degrees: + + + + + Type of line: + + + + + Line color: + + + + + Edit length + + + + + Select second point of line + + + + + DialogPatternProperties + + + Pattern properties + + + + + Description + + + + + Author name + + + + + Pattern description + + + + + For technical notes. + + + + + Heights and Sizes + + + + + Default height and size + + + + + From standard measurements + + + + + Custom + + + + + Height: + + + + + Size: + + + + + All heights (cm) + + + + + All sizes (cm) + + + + + Security + + + + + Open only for read + + + + + DialogPatternXmlEdit + + + XML Editor + + + + + Value : + + + + + Name : + + + + + <No selection> + + + + + Type : + + + + + Add attribute + + + + + Add son + + + + + Remove attribute + + + + + Remove node + + + + + Set + + + + + Cancel + + + + + Apply changes + + + + + Undo last + + + + + Immediately apply + + + + + Base selection + + + + + All pattern pieces + + + + + + + + No changes + + + + + Cannot delete previously created node + + + + + No changes left + + + + + Cannot undo change + + + + + + <no value> + + + + + + Unchanged + + + + + Cannot delete previously created attribute + + + + + Node Name + + + + + + Name: + + + + + Node Value (may be empty) + + + + + + Value: + + + + + Attribute Name + + + + + Attribute Value + + + + + No selection + + + + + Root node + + + + + Node + + + + + Attribute + + + + + DialogPointFromArcAndTangent + + + Point from arc and tangent + + + + + Point label: + + + + + Unique label + + + + + Choose unique label. + + + + + Tangent point: + + + + + Arc: + + + + + Take: + + + + + Select an arc + + + + + DialogPointFromCircleAndTangent + + + Point from circle and tangent + + + + + Radius: + + + + + Formula wizard + + + + + Value + + + + + Calculation + + + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + + Point label: + + + + + Unique label + + + + + Choose unique label. + + + + + Center of the circle: + + + + + Tangent point: + + + + + Take: + + + + + Select a circle center + + + + + Edit radius + + + + + Error + + + + + Radius can't be negative + + + + + DialogPointOfContact + + + Point at intersection of arc and line + + + + + Radius: + + + + + Formula wizard + + + + + Value + + + + + Calculation + + + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + + Point label: + + + + + Unique label + + + + + Choose unique label. + + + + + Center of arc: + + + + + Top of the line: + + + + + End of the line: + + + + + Edit radius + + + + + Select second point of line + + + + + Select point of center of arc + + + + + DialogPointOfIntersection + + + Point from X and Y of two other points + + + + + Point label: + + + + + Unique label + + + + + Choose unique label. + + + + + X: vertical point: + + + + + Y: horizontal point: + + + + + Select point for Y value (horizontal) + + + + + DialogPointOfIntersectionArcs + + + Dialog + + + + + Point label: + + + + + Unique label + + + + + Choose unique label. + + + + + First arc: + + + + + Second arc: + + + + + Take: + + + + + Select second an arc + + + + + DialogPointOfIntersectionCircles + + + Dialog + + + + + Radius of the first circle: + + + + + + Formula wizard + + + + + + Value + + + + + + Calculation + + + + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + + Radius of the second circle: + + + + + Point label: + + + + + Unique label + + + + + Choose unique label. + + + + + Center of the first circle: + + + + + Center of the second circle: + + + + + Take: + + + + + Select second circle center + + + + + Edit first circle radius + + + + + Edit second circle radius + + + + + + Error + + + + + + Radius can't be negative + + + + + DialogPointOfIntersectionCurves + + + Tool point of intersection curves + + + + + First curve: + + + + + Second curve: + + + + + Point label: + + + + + Unique label + + + + + Choose unique label. + + + + + Vertical correction: + + + + + Horizontal correction: + + + + + Select second curve + + + + + DialogSaveLAyout + + + Save Layout + + + + + File name: + + + + + Path: + + + + + File format: + + + + + Destination folder + + + + + Path to destination folder. + + + + + Select path to destination folder + + + + + Browse... + + + + + File base name + + + + + File base name. + + + + + DialogSaveLayout + + + The base filename does not match a regular expression. + + + + + Tried to use out of range format number. + + + + + Selected not present format. + + + + + The destination directory doesn't exists or is not readable. + + + + + Name conflict + + + + + Folder already contain file with name %1. Rewrite all conflict file names? + + + + + Example: + + + + + Select folder + + + + + Svg files (*.svg) + + + + + PDF files (*.pdf) + + + + + Images (*.png) + + + + + Wavefront OBJ (*.obj) + + + + + PS files (*.ps) + + + + + EPS files (*.eps) + + + + + DXF files (*.dxf) + + + + + DialogShoulderPoint + + + Special point on shoulder + + + + + Length: + + + + + Formula wizard + + + + + Value + + + + + Calculation + + + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + + Point label: + + + + + Unique label + + + + + Choose unique label. + + + + + First point: + + + + + Second point: + + + + + Third point: + + + + + Type of line: + + + + + Line color: + + + + + Edit length + + + + + Select first point of line + + + + + Select second point of line + + + + + DialogSinglePoint + + + Single point + + + + + Unique label + + + + + Choose unique label. + + + + + Point label + + + + + Coordinates on the sheet + + + + + Coordinates + + + + + Y coordinate + + + + + X coordinate + + + + + DialogSpline + + + Simple curve + + + + + First point: + + + + + + Control point + + + + + + Length: + + + + + + + + Formula wizard + + + + + + + + Value + + + + + + + + Calulation + + + + + + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + + + Angle: + + + + + Second point: + + + + + Color: + + + + + Name: + + + + + Select last point of curve + + + + + Edit first control point angle + + + + + Edit second control point angle + + + + + Edit first control point length + + + + + Edit second control point length + + + + + + Error + + + + + + Length can't be negative + + + + + Invalid spline + + + + + DialogSplinePath + + + Curved path + + + + + Point: + + + + + First control point + + + + + + Length: + + + + + + + + Formula wizard + + + + + + + + + + + + Value + + + + + + + + Calulation + + + + + + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + + + Angle: + + + + + Second control point + + + + + List of points + + + + + Color: + + + + + Name: + + + + + Select point of curve path + + + + + Edit first control point angle + + + + + Edit second control point angle + + + + + Edit first control point length + + + + + Edit second control point length + + + + + + Error + + + + + + Length can't be negative + + + + + Invalid spline path + + + + + Not used + + + + + DialogTool + + + First point + + + + + Second point + + + + + Highest point + + + + + Lowest point + + + + + Leftmost point + + + + + Rightmost point + + + + + + + + + + + Error + + + + + + + Empty field + + + + + Value can't be 0 + + + + + Value + + + + + + Parser error: %1 + + + + + DialogTriangle + + + Triangle tool + + + + + Point label: + + + + + Unique label + + + + + Choose unique label. + + + + + First point of axis: + + + + + Second point of axis: + + + + + First point: + + + + + Second point: + + + + + Select second point of axis + + + + + Select first point + + + + + Select second point + + + + + DialogTrueDarts + + + True darts + + + + + First base point: + + + + + Second base point: + + + + + First dart point: + + + + + Second dart point: + + + + + Third dart point: + + + + + First new dart point: + + + + + + Unique label + + + + + + Choose unique label. + + + + + Second new dart point: + + + + + Select the second base point + + + + + Select the first dart point + + + + + Select the second dart point + + + + + Select the third dart point + + + + + DialogUndo + + + Broken formula + + + + + Error while calculation formula. You can try to undo last operation or fix broken formula. + + + + + &Undo + + + + + &Fix formula + + + + + &Cancel + + + + + DialogUnionDetails + + + Union tool + + + + + <html><head/><body><p>Do you really want to unite details?</p></body></html> + + + + + Select a first point + + + + + Workpiece should have at least two points and three objects + + + + + Select a second point + + + + + Select a unique point + + + + + Select a detail + + + + + Select a point on edge + + + + + InternalStrings + + + + The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + + + + MApplication + + + Error parsing file. Program will be terminated. + + + + + Error bad id. Program will be terminated. + + + + + Error can't convert value. Program will be terminated. + + + + + Error empty parameter. Program will be terminated. + + + + + Error wrong id. Program will be terminated. + + + + + Something's wrong!! + + + + + Parser error: %1. Program will be terminated. + + + + + Exception thrown: %1. Program will be terminated. + + + + + Valentina's measurements editor. + + + + + The measurement file. + + + + + Open with the base height. Valid values: %1cm. + + + + + The base height + + + + + Open with the base size. Valid values: %1cm. + + + + + The base size + + + + + Set pattern file unit: cm, mm, inch. + + + + + The pattern unit + + + + + Use for unit testing. Run the program and open a file without showing the main window. + + + + + Invalid base height argument. Must be %1cm. + + + + + Invalid base size argument. Must be %1cm. + + + + + Invalid base size argument. Must be cm, mm or inch. + + + + + Can't begin to listen for incoming connections on name '%1' + + + + + Test mode doesn't support openning several files. + + + + + Please, provide one input file. + + + + + MainWindow + + + Valentina + + + + + Tools + + + + + Tools for creating points. + + + + + + Point + + + + + Point at distance and angle + + + + + Point at distance along line + + + + + Point along perpendicular + + + + + Point along bisector + + + + + Special point on shoulder + + + + + Point at intersection of arc and line + + + + + Triangle tool + + + + + Point from X and Y of two other points + + + + + Perpendicular point along line + + + + + Point intersect line and axis + + + + + True darts + + + + + Tools for creating lines. + + + + + + Line + + + + + Line between points + + + + + Point at line intersection + + + + + Tools for creating curves. + + + + + + Curve + + + + + Simple curve + + + + + Segmenting a simple curve + + + + + Curved path + + + + + Segment a curved path + + + + + Point intersect curve and axis + + + + + Point intersection curves + + + + + Tools for creating arcs. + + + + + + + Arc + + + + + Segment an arc + + + + + Point intersect arc and axis + + + + + Point of intersection arcs + + + + + Point of intersection circles + + + + + Point from circle and tangent + + + + + Point from arc and tangent + + + + + Arc with given length + + + + + Tools for creating details. + + + + + + Detail + + + + + Seam allowance tool + + + + + Union tool + + + + + + + + Layout + + + + + Create new Layout + + + + + Settings + + + + + &File + + + + + &Help + + + + + &Pattern piece + + + + + + Measurements + + + + + Window + + + + + + History + + + + + Mode + + + + + Toolbar files + + + + + ToolBar modes + + + + + Toolbar pattern + + + + + Toolbar options + + + + + Toolbar tools + + + + + Tool options + + + + + toolBar + + + + + Layout pages + + + + + New + + + + + &New + + + + + Create a new pattern + + + + + Open + + + + + &Open + + + + + Open file with pattern + + + + + + Save + + + + + &Save + + + + + Save pattern + + + + + Save &As... + + + + + Save not yet saved pattern + + + + + Draw + + + + + <html><head/><body><p>Mode for working with pattern pieces. These pattern pieces are base for going to the next stage &quot;Details mode&quot;. Before you will be able to enable the &quot;Details mode&quot; need create at least one detail.</p></body></html> + + + + + Details + + + + + <html><head/><body><p>Mode for working with details. Before you will be able to enable the &quot;Details mode&quot; need create at least one detail on the stage &quot;Draw mode&quot;. Details created on this stage will be used for creating a layout. </p></body></html> + + + + + Pointer + + + + + Pointer tools + + + + + New pattern piece + + + + + Add new pattern piece + + + + + Config pattern piece + + + + + Change the label of pattern piece + + + + + Table of variables + + + + + Tables of variables + + + + + <html><head/><body><p>Mode for creating a layout of details. This mode avaliable if was created at least one detail on the stage &quot;Details mode&quot;. The layout can be exported to your prefered file format and saved to your harddirve.</p></body></html> + + + + + About &Qt + + + + + &About Valentina + + + + + E&xit + + + + + Exit the application + + + + + + Preferences + + + + + Pattern properties + + + + + Zoom in + + + + + zoom in + + + + + + Zoom out + + + + + Edit pattern XML code + + + + + Original zoom + + + + + Original Zoom + + + + + Zoom fit best + + + + + Stop + + + + + Stop using tool + + + + + Report Bug... + + + + + Report bug + + + + + Close window + + + + + Online help + + + + + Show online help + + + + + Last Tool + + + + + Activate last used tool again + + + + + Show Curve Details + + + + + Show/hide control points and curve direction + + + + + Save as PDF + + + + + Save original layout + + + + + Save as tiled PDF + + + + + Split and save a layout into smaller pages + + + + + Print + + + + + Print an original layout + + + + + Print tiled + + + + + Split and print a layout into smaller pages (for regular printers) + + + + + Print preview + + + + + Print preview original layout + + + + + Print preview tiled + + + + + Print preview tiled layout + + + + + Export As... + + + + + Export original layout + + + + + Load Individual ... + + + + + Load Standard ... + + + + + Create/Edit + + + + + Create/edit measurements + + + + + Show ... + + + + + Show measurements + + + + + Sync measurements + + + + + Unload measurements + + + + + Unload measurements if they was not used in a pattern file. + + + + + New pattern + + + + + Open pattern + + + + + Create/Edit measurements + + + + + + Pattern piece %1 + + + + + + Measurement file has unknown format. + + + + + + Measurement file contains invalid known measurement(s). + + + + + + Measurement file doesn't include all required measurements. + + + + + + Please, additionaly provide: %1 + + + + + Wrong units. + + + + + Application doesn't support standard table with inches. + + + + + + + + + File error. + + + + + Measurement files types have not match. + + + + + + + Select point + + + + + Select first point + + + + + + + Select first point of line + + + + + Select first point of angle + + + + + Select first point of first line + + + + + Select first point curve + + + + + Select simple curve + + + + + Select point of center of arc + + + + + Select point of curve path + + + + + Select curve path + + + + + Select points, arcs, curves clockwise. + + + + + Select base point + + + + + Select first point of axis + + + + + Select point for X value (vertical) + + + + + Select detail + + + + + + Select arc + + + + + Select curve + + + + + Select first an arc + + + + + Select first circle center + + + + + Select first curve + + + + + + Select point on tangent + + + + + Select point of the center of the arc + + + + + Select the first base line point + + + + + About Qt + + + + + + &Undo + + + + + + &Redo + + + + + + Pattern Piece: + + + + + + Individual measurements (*.vit);;Standard measurements (*.vst) + + + + + + + + + + Open file + + + + + + Measurements loaded + + + + + Standard measurements (*.vst);;Individual measurements (*.vit) + + + + + Measurements unloaded + + + + + Couldn't unload measurements. Some of them are used in the pattern. + + + + + Measurements was synced + + + + + Couldn't sync measurements. + + + + + Measurements was changed. Do you want to sync measurements now? + + + + + Height: + + + + + Size: + + + + + %1, %2 (%3) + Coords in status line: "X, Y (units)" + + + + + Detail mode + + + + + You can't use now the Detail mode. Please, create at least one workpiece. + + + + + Layout mode + + + + + You can't use now the Layout mode. Please, create at least one workpiece. + + + + + + Pattern files (*.val) + + + + + + pattern + + + + + Save as + + + + + Failed to lock. This file already opened in another window. + + + + + + Could not save file + + + + + Failed to lock. This file already opened in another window. Expect collissions when run 2 copies of the program. + + + + + + Error parsing file. + + + + + Error can't convert value. + + + + + + Error empty parameter. + + + + + Error wrong id. + + + + + Error parsing file (std::bad_alloc). + + + + + Bad id. + + + + + + Couldn't update measurements. + + + + + File saved + + + + + Unsaved changes + + + + + The pattern has been modified. +Do you want to save your changes? + + + + + Save... + + + + + Don't Save + + + + + Pattern piece: + + + + + Enter a new label for the pattern piece. + + + + + + The measurements file '%1' could not be found. + + + + + File loaded + + + + + Valentina didn't shut down correctly. Do you want reopen files (%1) you had open? + + + + + Reopen files. + + + + + The measurements file <br/><br/> <b>%1</b> <br/><br/> could not be found. Do you want to update the file location + + + + + Loading measurements file + + + + + Standard measurements (*.vst) + + + + + Individual measurements (*.vit) + + + + + You can't export empty scene. + + + + + Export error. + + + + + Not supported size value '%1' for this pattern file. + + + + + Couldn't set size. Need a file with standard measurements. + + + + + Couldn't set size. File wasn't opened. + + + + + + The method %1 does nothing in GUI mode + + + + + Not supported height value '%1' for this pattern file. + + + + + Couldn't set height. Need a file with standard measurements. + + + + + Couldn't set height. File wasn't opened. + + + + + Please, provide one input file. + + + + + untitled.val + + + + + (read only) + + + + + + + Locking file + + + + + This file already opened in another window. Ignore if you want to continue (not recommended, can cause a data corruption). + + + + + The lock file could not be created, for lack of permissions. Ignore if you want to continue (not recommended, can cause a data corruption). + + + + + Unknown error happened, for instance a full partition prevented writing out the lock file. Ignore if you want to continue (not recommended, can cause a data corruption). + + + + + This file already opened in another window. + + + + + The lock file could not be created, for lack of permissions. + + + + + Unknown error happened, for instance a full partition prevented writing out the lock file. + + + + + MainWindowsNoGUI + + + Couldn't prepare data for creation layout + + + + + Several workpieces left not arranged, but none of them match for paper + + + + + Export error. + + + + + For saving multipage document all sheet should have the same size. Use export function instead. + + + + + For previewing multipage document all sheet should have the same size. + + + + + For printing multipages document all sheet should have the same size. + + + + + Can't open printer %1 + + + + + Creating file '%1' failed! %2 + + + + + Critical error! + + + + + Print to pdf + + + + + PDF file (*.pdf) + + + + + Print error + + + + + Cannot proceed because there are no available printers in your system. + + + + + unnamed + + + + + The layout is stale. + + + + + The layout was not updated since last pattern modification. Do you want to continue? + + + + + MoveDoubleLabel + + + move the first dart label + + + + + move the second dart label + + + + + MoveLabel + + + move point label + + + + + MoveSPoint + + + move single point + + + + + MoveSpline + + + move spline + + + + + MoveSplinePath + + + move spline path + + + + + PathPage + + + Open Directory + + + + + + Path that use Valentina + + + + + + Default + + + + + + Edit + + + + + + Type + + + + + + Path + + + + + + Individual measurements + + + + + + Standard measurements + + + + + + Patterns + + + + + + Layout + + + + + + Templates + + + + + PatternPage + + + + User + + + + + + User name: + + + + + + Graphical output + + + + + + Use antialiasing + + + + + + Undo + + + + + + Count steps (0 - no limit): + + + + + QApplication + + + The path to the measurments is already relative. + + + + + The path to the measurments is already absolute. + + + + + QCommandLineParser + + + Displays version information. + + + + + Displays this help. + + + + + Unknown option '%1'. + + + + + Unknown options: %1. + + + + + Missing value after '%1'. + + + + + Unexpected value after '%1'. + + + + + [options] + + + + + Usage: %1 + + + + + Options: + + + + + Arguments: + + + + + QCoreApplication + + + Based on Qt %1 (%2, %3 bit) + + + + + QObject + + + Create new pattern piece to start working. + + + + + Changes applied. + + + + + mm + + + + + + cm + + + + + inch + + + + + px + + + + + Property + The text that appears in the first column header + + + + + Value + The text that appears in the second column header + + + + + add node + + + + + move detail + + + + + QSaveFile + + + Existing file %1 is not writable + + + + + Writing canceled by application + + + + + Partial write. Partition full? + + + + + QmuParser + + + + too few arguments for function sum. + parser error message + + + + + + too few arguments for function min. + parser error message + + + + + QmuParserErrorMsg + + + Unexpected token "$TOK$" found at position $POS$. + Math parser error messages. Left untouched "$TOK$" and $POS$ + + + + + Internal error + Math parser error messages. + + + + + Invalid function-, variable- or constant name: "$TOK$". + Math parser error messages. Left untouched "$TOK$" + + + + + Invalid binary operator identifier: "$TOK$". + Math parser error messages. Left untouched "$TOK$" + + + + + Invalid infix operator identifier: "$TOK$". + Math parser error messages. Left untouched "$TOK$" + + + + + Invalid postfix operator identifier: "$TOK$". + Math parser error messages. Left untouched "$TOK$" + + + + + Invalid pointer to callback function. + Math parser error messages. + + + + + Expression is empty. + Math parser error messages. + + + + + Invalid pointer to variable. + Math parser error messages. + + + + + Unexpected operator "$TOK$" found at position $POS$ + Math parser error messages. Left untouched "$TOK$" and $POS$ + + + + + Unexpected end of expression at position $POS$ + Math parser error messages. Left untouched $POS$ + + + + + Unexpected argument separator at position $POS$ + Math parser error messages. Left untouched $POS$ + + + + + Unexpected parenthesis "$TOK$" at position $POS$ + Math parser error messages. Left untouched "$TOK$" and $POS$ + + + + + Unexpected function "$TOK$" at position $POS$ + Math parser error messages. Left untouched "$TOK$" and $POS$ + + + + + Unexpected value "$TOK$" found at position $POS$ + Math parser error messages. Left untouched "$TOK$" and $POS$ + + + + + Unexpected variable "$TOK$" found at position $POS$ + Math parser error messages. Left untouched "$TOK$" and $POS$ + + + + + Function arguments used without a function (position: $POS$) + Math parser error messages. Left untouched $POS$ + + + + + Missing parenthesis + Math parser error messages. + + + + + Too many parameters for function "$TOK$" at expression position $POS$ + Math parser error messages. Left untouched "$TOK$" and $POS$ + + + + + Too few parameters for function "$TOK$" at expression position $POS$ + Math parser error messages. Left untouched "$TOK$" and $POS$ + + + + + Divide by zero + Math parser error messages. + + + + + Domain error + Math parser error messages. + + + + + Name conflict + Math parser error messages. + + + + + Invalid value for operator priority (must be greater or equal to zero). + Math parser error messages. + + + + + user defined binary operator "$TOK$" conflicts with a built in operator. + Math parser error messages. Left untouched "$TOK$" + + + + + Unexpected string token found at position $POS$. + Math parser error messages. Left untouched $POS$ + + + + + Unterminated string starting at position $POS$. + Math parser error messages. Left untouched $POS$ + + + + + String function called with a non string type of argument. + Math parser error messages. + + + + + String value used where a numerical argument is expected. + Math parser error messages. + + + + + No suitable overload for operator "$TOK$" at position $POS$. + Math parser error messages. Left untouched "$TOK$" and $POS$ + + + + + Function result is a string. + Math parser error messages. + + + + + Parser error. + Math parser error messages. + + + + + Decimal separator is identic to function argument separator. + Math parser error messages. + + + + + The "$TOK$" operator must be preceeded by a closing bracket. + Math parser error messages. Left untouched "$TOK$" + + + + + If-then-else operator is missing an else clause + Math parser error messages. Do not translate operator name. + + + + + Misplaced colon at position $POS$ + Math parser error messages. Left untouched $POS$ + + + + + RenamePP + + + rename pattern piece + + + + + SaveDetailOptions + + + save detail option + + + + + SaveToolOptions + + + save tool option + + + + + TMainWindow + + + <html><head/><body><p><span style=" font-size:18pt;">Select New for creation measurement file.</span></p></body></html> + + + + + + Measurements + + + + + Find: + + + + + Search + + + + + Find Previous + + + + + Ctrl+Shift+G + + + + + Find Next + + + + + Ctrl+G + + + + + Name + + + + + Full name + + + + + + Calculated value + + + + + Formula + + + + + Base value + + + + + In sizes + + + + + In heights + + + + + + Details + + + + + Name: + + + + + Measurement's name in a formula + + + + + Measurement's name in a formula. + + + + + Formula: + + + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + + Function Wizard + + + + + Base value: + + + + + In sizes: + + + + + In heights: + + + + + Description: + + + + + Move measurement top + + + + + Move measurement up + + + + + Move measurement down + + + + + Move measurement bottom + + + + + Delete measurement + + + + + Calculated value: + + + + + Full name: + + + + + Measurement's human-readable name. + + + + + Information + + + + + Type: + + + + + Measurement type + + + + + Path: + + + + + Show in Explorer + + + + + Base size: + + + + + Base size value + + + + + Base height: + + + + + Base height value + + + + + Given name: + + + + + Customer's name. + + + + + Family name: + + + + + Customer's family name. + + + + + Birth date: + + + + + Gender: + + + + + Email: + + + + + Customer's email address. + + + + + Notes: + + + + + PM system: + + + + + File + + + + + Window + + + + + Help + + + + + Menu + + + + + Gradation + + + + + Measurement diagram + + + + + <html><head/><body><p><span style=" font-size:340pt;">?</span></p><p align=\"center\">Unknown measurement</p></body></html> + + + + + Open individual ... + + + + + + Save + + + + + Save As ... + + + + + Quit + + + + + About &Qt + + + + + About Tape + + + + + New + + + + + Add known + + + + + Add custom + + + + + Read only + + + + + Open standard ... + + + + + Open template + + + + + Database + + + + + Show information about all known measurement + + + + + + Preferences + + + + + + Import from a pattern + + + + + Create from existing ... + + + + + Create from existing file + + + + + untitled %1 + + + + + + File '%1' doesn't exist! + + + + + + File has unknown format. + + + + + + File contains invalid known measurement(s). + + + + + + + File error. + + + + + Individual measurements (*.vit);;Standard measurements (*.vst);;All files (*.*) + + + + + Standard measurements (*.vst);;Individual measurements (*.vit);;All files (*.*) + + + + + Measurements (*.vst *.vit);;All files (*.*) + + + + + + Individual measurements (*.vit) + + + + + Select file + + + + + + Standard measurements + + + + + + Height: + + + + + + Size: + + + + + + Individual measurements + + + + + + Pattern unit: + + + + + + Could not save file + + + + + measurements + + + + + Standard measurements (*.vst) + + + + + Save as + + + + + Failed to lock. This file already opened in another window. + + + + + Failed to lock. This file already opened in another window. Expect collissions when run 2 copies of the program. + + + + + About Qt + + + + + + + + + + + Can't find measurement '%1'. + + + + + Edit measurement + + + + + M_%1 + + + + + Pattern files (*.val) + + + + + + This file already opened in another window. + + + + + <html><head/><body><p><span style=" font-size:340pt;">?</span></p><p align="center">Unknown measurement</p></body></html> + + + + + The name of known measurement forbidden to change. + + + + + + + Error + + + + + + Empty field. + + + + + The full name of known measurement forbidden to change. + + + + + untitled + + + + + <Empty> + + + + + File was not saved yet. + + + + + Unsaved changes + + + + + Measurements have been modified. +Do you want to save your changes? + + + + + Save... + + + + + Don't Save + + + + + Empty field + + + + + Value + + + + + + Parser error: %1 + + + + + Open file + + + + + Export standard measurements not supported. + + + + + &New Window + + + + + + + Locking file + + + + + This file already opened in another window. Ignore if you want to continue (not recommended, can cause a data corruption). + + + + + The lock file could not be created, for lack of permissions. Ignore if you want to continue (not recommended, can cause a data corruption). + + + + + Unknown error happened, for instance a full partition prevented writing out the lock file. Ignore if you want to continue (not recommended, can cause a data corruption). + + + + + The lock file could not be created, for lack of permissions. + + + + + Unknown error happened, for instance a full partition prevented writing out the lock file. + + + + + unknown + gender + + + + + male + gender + + + + + female + gender + + + + + TapeConfigDialog + + + + Apply + + + + + + &Cancel + + + + + + &Ok + + + + + + Config Dialog + + + + + + Configuration + + + + + + Paths + + + + + TapeConfigurationPage + + + + Language + + + + + + GUI language: + + + + + + Decimal separator parts: + + + + + + With OS options (%1) + + + + + + Pattern making system + + + + + + Pattern making system: + + + + + + Author: + + + + + + Book: + + + + + + Default height and size + + + + + + Default height: + + + + + + Default size: + + + + + TapePathPage + + + Open Directory + + + + + + Path that use Valentina + + + + + + Default + + + + + + Edit + + + + + + Type + + + + + + Path + + + + + + Individual measurements + + + + + + Standard measurements + + + + + + Templates + + + + + Utils::CheckableMessageBox + + + Do not ask again + + + + + Do not &ask again + + + + + Do not &show again + + + + + VAbstractConverter + + + Error creating a backup file: %1. + + + + + Couldn't get version information. + + + + + Too many tags <%1> in file. + + + + + Version "%1" invalid. + + + + + Version "0.0.0" invalid. + + + + + Error creating a reserv copy: %1. + + + + + Invalid version. Minimum supported version is %1 + + + + + Invalid version. Maximum supported version is %1 + + + + + Unexpected version "%1". + + + + + Error no unique id. + + + + + Could not change version. + + + + + VAbstractPattern + + + Can't find tool in table. + + + + + VAbstractTool + + + Confirm deletion + + + + + Do you really want to delete? + + + + + + black + + + + + green + + + + + blue + + + + + dark red + + + + + dark green + + + + + dark blue + + + + + yellow + + + + + VApplication + + + Error parsing file. Program will be terminated. + + + + + Error bad id. Program will be terminated. + + + + + Error can't convert value. Program will be terminated. + + + + + Error empty parameter. Program will be terminated. + + + + + Error wrong id. Program will be terminated. + + + + + Something's wrong!! + + + + + Parser error: %1. Program will be terminated. + + + + + Exception thrown: %1. Program will be terminated. + + + + + VCommandLine + + + Pattern making program. + + + + + Pattern file. + + + + + The base filename of exported layout files. Use it to enable console export mode. + + + + + The base filename of layout files + + + + + The path to output destination folder. By default the directory at which the application was started. + + + + + The destination folder + + + + + Path to custom measure file (export mode). + + + + + The measure file + + + + + Number corresponding to output format (default = 0, export mode): + + + + + Format number + + + + + Set size value a pattern file, that was opened with standard measurements (export mode). Valid values: %1cm. + + + + + The size value + + + + + Set height value a pattern file, that was opened with standard measurements (export mode). Valid values: %1cm. + + + + + The height value + + + + + Number corresponding to page template (default = 0, export mode): + + + + + Template number + + + + + Page width in current units like 12.0 (cannot be used with "%1", export mode). + + + + + The page width + + + + + Page height in current units like 12.0 (cannot be used with "%1", export mode). + + + + + Page height/width measure units (cannot be used with "%1", export mode). Valid values: %2. + + + + + The measure unit + + + + + Ignore margins printing (export mode). Disable value keys: "%1", "%2", "%3", "%4". Set all margins to 0. + + + + + Page left margin in current units like 3.0 (export mode). If not set will be used value from default printer. Or 0 if none printers was found. Value will be ignored if key "%1" is used. + + + + + Page right margin in current units like 3.0 (export mode). If not set will be used value from default printer. Or 0 if none printers was found. Value will be ignored if key "%1" is used. + + + + + Page top margin in current units like 3.0 (export mode). If not set will be used value from default printer. Or 0 if none printers was found. Value will be ignored if key "%1" is used. + + + + + Page bottom margin in current units like 3.0 (export mode). If not set will be used value from default printer. Or 0 if none printers was found. Value will be ignored if key "%1" is used. + + + + + Rotation in degrees (one of predefined, export mode). Default value is 180. 0 is no-rotate. Valid values: %1. Each value show how many times details will be rotated. For example 180 mean two times (360/180=2) by 180 degree. + + + + + Angle + + + + + Auto crop unused length (export mode). + + + + + Unite pages if possible (export mode). Maximum value limited by QImage that supports only a maximum of 32768x32768 px images. + + + + + Save length of the sheet if set (export mode). The option tells the program to use as much as possible width of sheet. Quality of a layout can be worse when this option was used. + + + + + Layout units (as paper's one except px, export mode). + + + + + The unit + + + + + Shift/Offset layout length measured in layout units (export mode). The option show how many points along edge will be used in creating a layout. + + + + + Shift/Offset length + + + + + The layout gap width x2, measured in layout units (export mode). Set distance between details and a detail and a sheet. + + + + + The gap width + + + + + Sets layout groupping cases (export mode): %1. + + + + + Grouping type + + + + + Run the program in a test mode. The program in this mode loads a single pattern file and silently quit without showing the main window. The key have priority before key '%1'. + + + + + Cannot use pageformat and page explicit size/units together. + + + + + Page height, width, units must be used all 3 at once. + + + + + Shift/Offset length must be used together with shift units. + + + + + Gap width must be used together with shift units. + + + + + Left margin must be used together with page units. + + + + + Right margin must be used together with page units. + + + + + Top margin must be used together with page units. + + + + + Bottom margin must be used together with page units. + + + + + Invalid rotation value. That must be one of predefined values. + + + + + Unknown page templated selected. + + + + + Unsupported paper units. + + + + + Unsupported layout units. + + + + + Test option can be used with single input file only. + + + + + Export options can be used with single input file only. + + + + + Invalid gradation size value. + + + + + Invalid gradation height value. + + + + + VContainer + + + + + + Can't find object + + + + + + Can't cast object + + + + + Can't find object. Type mismatch. + + + + + VDomDocument + + + Can't convert toUInt parameter + + + + + Can't convert toBool parameter + + + + + Got empty parameter + + + + + Can't convert toDouble parameter + + + + + Got wrong parameter id. Need only id > 0. + + + + + This id is not unique. + + + + + + Can't open file %1: +%2. + + + + + Can't open schema file %1: +%2. + + + + + Could not load schema file '%1'. + + + + + Validation error file %3 in line %1 column %2 + + + + + Parsing error file %3 in line %1 column %2 + + + + + Couldn't get node + + + + + VDrawTool + + + Edit wrong formula + + + + + Options + + + + + Delete + + + + + VFormula + + + + + + Error + + + + + VFormulaProperty + + + Value + + + + + Formula + + + + + VMeasurements + + + + + + + + + Can't find measurement '%1' + + + + + The measurement name is empty! + + + + + VPE::VBoolProperty + + + True + + + + + False + + + + + VPE::VFileEditWidget + + + Directory + + + + + Open File + + + + + VPattern + + + Error not unique id. + + + + + + Error parsing file. + + + + + Error can't convert value. + + + + + Error empty parameter. + + + + + Error wrong id. + + + + + Error parsing file (std::bad_alloc). + + + + + + + Wrong tag name '%1'. + + + + + Error creating or updating detail + + + + + Unknown point type '%1'. + + + + + Error creating or updating line + + + + + Error creating or updating single point + + + + + + Error creating or updating point of end line + + + + + + Error creating or updating point along line + + + + + + Error creating or updating point of shoulder + + + + + + Error creating or updating point of normal + + + + + + Error creating or updating point of bisector + + + + + Error creating or updating point of lineintersection + + + + + + Error creating or updating point of contact + + + + + Error creating or updating modeling point + + + + + Error creating or updating height + + + + + Error creating or updating triangle + + + + + Error creating or updating point of intersection + + + + + + Error creating or updating cut spline point + + + + + + Error creating or updating cut spline path point + + + + + + Error creating or updating cut arc point + + + + + + Error creating or updating point of intersection line and axis + + + + + + Error creating or updating point of intersection curve and axis + + + + + Error creating or updating point of intersection arcs + + + + + Error creating or updating point of intersection circles + + + + + Error creating or updating point of intersection curves + + + + + Error creating or updating point from circle and tangent + + + + + Error creating or updating point from arc and tangent + + + + + Error creating or updating true darts + + + + + + Error creating or updating simple curve + + + + + Error creating or updating simple interactive spline + + + + + + Error creating or updating curve path + + + + + Error creating or updating interactive spline path + + + + + Error creating or updating modeling simple curve + + + + + Error creating or updating modeling curve path + + + + + + + + Error creating or updating simple arc + + + + + Error creating or updating modeling arc + + + + + Unknown spline type '%1'. + + + + + Unknown arc type '%1'. + + + + + Error creating or updating union details + + + + + Unknown tools type '%1'. + + + + + VPatternConverter + + + Error restoring backup file: %1. + + + + + VSplinePath + + + Not enough points to create the spline. + + + + + + + This spline does not exist. + + + + + Can't cut spline path with one point + + + + + VToolDetail + + + Options + + + + + Delete + + + + + VToolOptionsPropertyBrowser + + + First point + + + + + Second point + + + + + Highest point + + + + + Lowest point + + + + + Leftmost point + + + + + Rightmost point + + + + + Base point + + + + + + + + + + + + + + + + + + + + + + + + + Point label + + + + + Position + + + + + Point at distance and angle + + + + + + + + + + + + + Line type + + + + + + + + + + + + + Line color + + + + + + + + + + + + + Length + + + + + + + Angle + + + + + Point at distance along line + + + + + Arc + + + + + + + Radius + + + + + + First angle + + + + + Second angle + + + + + + + + + + + Color + + + + + Arc with given length + + + + + Point along bisector + + + + + True darts + + + + + Point 1 label + + + + + Point 2 label + + + + + Cut arc tool + + + + + Tool for segmenting a curve + + + + + Tool segment a pathed curve + + + + + Perpendicular point along line + + + + + Line between points + + + + + Point at line intersection + + + + + Point along perpendicular + + + + + Additional angle degrees + + + + + Point at intersection of arc and line + + + + + Tool to make point from x & y of two other points + + + + + Tool to make point from intersection two arcs + + + + + + + + Take + + + + + Tool to make point from intersection two circles + + + + + First circle radius + + + + + Second circle radius + + + + + Tool to make point from intersection two curves + + + + + Vertical correction + + + + + Horizontal correction + + + + + Tool to make point from circle and tangent + + + + + Circle radius + + + + + Tool to make point from arc and tangent + + + + + Special point on shoulder + + + + + Curve tool + + + + + + Name + + + + + C1: angle + + + + + C1: length + + + + + C2: angle + + + + + C2: length + + + + + Tool for path curve + + + + + Tool triangle + + + + + Point intersection line and axis + + + + + Point intersection curve and axis + + + + + VTranslateVars + + + Bunka + System name + + + + + Bunka Fashion College + Author name + + + + + Fundamentals of Garment Design + Book name + + + + + Barnfield and Richard + System name + + + + + Jo Barnfield and Andrew Richards + Author name + + + + + Pattern Making Primer + Book name + + + + + Friendship/Women + System name + + + + + + Elizabeth Friendship + Author name + + + + + Creating Historical Clothes - Pattern Cutting from the 16th to the 19th Centuries + Book name + + + + + Morris, K. + System name + + + + + Karen Morris + Author name + + + + + Sewing Lingerie that Fits + Book name + + + + + Castro + System name + + + + + Lucia Mors de Castro + Author name + + + + + Patternmaking in Practic + Book name + + + + + Kim & Uh + System name + + + + + Injoo Kim and Mykyung Uh + Author name + + + + + Apparel Making in Fashion Design + Book name + + + + + Waugh + System name + + + + + Norah Waugh + Author name + + + + + Corsets and Crinolines + Book name + + + + + Grimble + System name + + + + + Frances Grimble + Author name + + + + + Fashions of the Gilded Age + Book name + + + + + Thornton's International System + System name + + + + + + ed. R. L. Shep + Author name + + + + + + The Great War: Styles and Patterns of the 1910s + Book name + + + + + Hillhouse & Mansfield + System name + + + + + Marion S. Hillhouse and Evelyn A. Mansfield + Author name + + + + + Dress Design: Draping and Flat Pattern Making + Book name + + + + + Pivnick + System name + + + + + Esther Kaplan Pivnick + Author name + + + + + How to Design Beautiful Clothes: Designing and Pattern Making + Book name + + + + + Minister & Son + System name + + + + + Edward Minister & Son, ed. R. L. Shep + Author name + + + + + The Complete Guide to Practical Cutting (1853) + Book name + + + + + Strickland + System name + + + + + Gertrude Strickland + Author name + + + + + A Tailoring Manual + Book name + + + + + Loh & Lewis + System name + + + + + May Loh and Diehl Lewis + Author name + + + + + Patternless Fashion Design + Book name + + + + + Morris, F. R. + System name + + + + + F. R. Morris + Author name + + + + + Ladies Garment Cutting and Making + Book name + + + + + Mason + System name + + + + + Gertrude Mason + Author name + + + + + Gertrude Mason's Patternmaking Book + Book name + + + + + Kimata + System name + + + + + K. Kimata + Author name + + + + + K.Kimata's Simplified Drafting Book for Dressmaking + Book name + + + + + Master Designer + System name + + + + + The Master Designer (Chicago, IL) + Author name + + + + + Master Designer's System of Designing, Cutting and Grading + Book name + + + + + Kopp + System name + + + + + Ernestine Kopp, Vittorina Rolfo, Beatrice Zelin, Lee Gross + Author name + + + + + How to Draft Basic Patterns + Book name + + + + + Ekern + System name + + + + + Doris Ekern + Author name + + + + + Slacks Cut-to-Fit for Your Figure + Book name + + + + + Doyle + System name + + + + + Sarah J. Doyle + Author name + + + + + Sarah's Key to Pattern Drafting + Book name + + + + + Shelton + System name + + + + + Karla J. Shelton + Author name + + + + + Design and Sew Jeans + Book name + + + + + Lady Boutique + System name + + + + + Lady Boutique + Author name + + + + + Lady Boutique magazine (Japan) + Book name + + + + + Rohr + System name + + + + + M. Rohr + Author name + + + + + Pattern Drafting and Grading: Women's nd Misses' Garment Design + Book name + + + + + Moore + System name + + + + + Dorothy Moore + Author name + + + + + Dorothy Moore's Pattern Drafting and Dressmaking + Book name + + + + + Abling + System name + + + + + Bina Abling + Author name + + + + + Integrating Draping, Drafting and Drawing + Book name + + + + + Fukomoto + System name + + + + + Sue S. Fukomoto + Author name + + + + + Scientific Pattern Drafting as taught at Style Center School of Costume Design, Dressmaking and Millinery + Book name + + + + + Dressmaking International + System name + + + + + Dressmaking International + Author name + + + + + Dressmaking International magazine (Japan) + Book name + + + + + Erwin + System name + + + + + Mabel D. Erwin + Author name + + + + + Practical Dress Design + Book name + + + + + Gough + System name + + + + + E. L. G. Gough + Author name + + + + + Principles of Garment Cutting + Book name + + + + + Allemong + System name + + + + + Elizabeth M. Allemong + Author name + + + + + European Cut + Book name + + + + + McCunn + System name + + + + + Donald H. McCunn + Author name + + + + + How to Make Your Own Sewing Patterns + Book name + + + + + Zarapkar + System name + + + + + Shri K. R. Zarapkar and Shri Arvind K. Zarapkar + Author name + + + + + Zarapkar System of Cutting + Book name + + + + + Kunick + System name + + + + + Philip Kunick + Author name + + + + + Sizing, Pattern Construction and Grading for Women's and Children's Garments + Book name + + + + + Handford + System name + + + + + Jack Handford + Author name + + + + + Professional Patternmaking for Designers: Women's Wear, Men's Casual Wear + Book name + + + + + Davis + System name + + + + + R. I. Davis + Author name + + + + + Men's 17th & 18th Century Costume, Cut & Fashion + Book name + + + + + MacLochlainn + System name + + + + + Jason MacLochlainn + Author name + + + + + The Victorian Tailor: An Introduction to Period Tailoring + Book name + + + + + Joseph-Armstrong + System name + + + + + Helen Joseph-Armstrong + Author name + + + + + Patternmaking for Fashion Design + Book name + + + + + Supreme System + System name + + + + + Frederick T. Croonberg + Author name + + + + + The Blue Book of Men's Tailoring, Grand Edition of Supreme System for Producing Mens Garments (1907) + Book name + + + + + Sugino + System name + + + + + Dressmaking + Author name + + + + + Pattern Drafting Vols. I, II, III (Japan) + Book name + + + + + Centre Point System + System name + + + + + Louis Devere + Author name + + + + + The Handbook of Practical Cutting on the Centre Point System + Book name + + + + + Aldrich/Men + System name + + + + + + Winifred Aldrich + Author name + + + + + Metric Pattern Cutting for Menswear + Book name + + + + + Aldrich/Women + System name + + + + + Metric Pattern Cutting for Women's Wear + Book name + + + + + Kershaw + System name + + + + + Gareth Kershaw + Author name + + + + + Patternmaking for Menswear + Book name + + + + + Gilewska + System name + + + + + Teresa Gilewska + Author name + + + + + Pattern-Drafting for Fashion: The Basics + Book name + + + + + Lo + System name + + + + + Dennic Chunman Lo + Author name + + + + + Pattern Cutting + Book name + + + + + Bray + System name + + + + + Natalie Bray + Author name + + + + + Dress Pattern Designing: The Basic Principles of Cut and Fit + Book name + + + + + Knowles/Men + System name + + + + + + Lori A. Knowles + Author name + + + + + The Practical Guide to Patternmaking for Fashion Designers: Menswear + Book name + + + + + Friendship/Men + System name + + + + + Pattern Cutting for Men's Costume + Book name + + + + + Brown + System name + + + + + P. Clement Brown + Author name + + + + + Art in Dress + Book name + + + + + Mitchell + System name + + + + + Jno. J. Mitchell + Author name + + + + + "Standard" Work on Cutting (Men's Garments) 1886: The Art and Science of Garment Cutting + Book name + + + + + GOST 17917-86 + System name + + + + + Ministry of consumer industry of the USSR + Author name + + + + + Standard figure boys + Book name + + + + + Eddy + System name + + + + + Josephine F. Eddy and Elizabeth C. B. Wiley + Author name + + + + + Pattern and Dress Design + Book name + + + + + Knowles/Women + System name + + + + + Practical Guide to Patternmaking for Fashion Designers: Juniors, Misses, and Women + Book name + + + + + American Garment Cutter + System name + + + + + None + System name + + + + + Valentina team + Author name + + + + + Valentina's internal standard + Book name + + + + + Line_ + Left symbol _ in name + + + + + AngleLine_ + Left symbol _ in name + + + + + Arc_ + Left symbol _ in name + + + + + Spl_ + Left symbol _ in name + + + + + SplPath + Do not add symbol _ to the end of name + + + + + RadiusArc_ + Left symbol _ in name + + + + + Angle1Arc_ + Left symbol _ in name + + + + + Angle2Arc_ + Left symbol _ in name + + + + + Angle1Spl_ + Left symbol _ in name + + + + + Angle2Spl_ + Left symbol _ in name + + + + + Angle1SplPath + Do not add symbol _ to the end of name + + + + + Angle2SplPath + Do not add symbol _ to the end of name + + + + + sin + sine function + + + + + cos + cosine function + + + + + tan + tangens function + + + + + asin + arcus sine function + + + + + acos + arcus cosine function + + + + + atan + arcus tangens function + + + + + sinh + hyperbolic sine function + + + + + cosh + hyperbolic cosine + + + + + tanh + hyperbolic tangens function + + + + + asinh + hyperbolic arcus sine function + + + + + acosh + hyperbolic arcus tangens function + + + + + atanh + hyperbolic arcur tangens function + + + + + log2 + logarithm to the base 2 + + + + + log10 + logarithm to the base 10 + + + + + log + logarithm to the base 10 + + + + + ln + logarithm to base e (2.71828...) + + + + + exp + e raised to the power of x + + + + + sqrt + square root of a value + + + + + sign + sign function -1 if x<0; 1 if x>0 + + + + + rint + round to nearest integer + + + + + abs + absolute value + + + + + min + min of all arguments + + + + + max + max of all arguments + + + + + sum + sum of all arguments + + + + + avg + mean value of all arguments + + + + + fmod + Returns the floating-point remainder of numer/denom (rounded towards zero) + + + + + cm + centimeter + + + + + mm + millimeter + + + + + in + inch + + + + + VVITConverter + + + Error restoring backup file: %1. + + + + + VVSTConverter + + + Error restoring backup file: %1. + + + + + VisToolCurveIntersectAxis + + + <b>Intersection curve and axis</b>: angle = %1°; <b>Shift</b> - sticking angle, <b>Enter</b> - finish creation + + + + + VisToolEndLine + + + <b>Point at distance and angle</b>: angle = %1°; <b>Shift</b> - sticking angle, <b>Enter</b> - finish creation + + + + + VisToolLineIntersectAxis + + + <b>Intersection line and axis</b>: angle = %1°; <b>Shift</b> - sticking angle, <b>Enter</b> - finish creation + + + + + VisToolSplinePath + + + <b>Curved path</b>: select three or more points + + + + + <b>Curved path</b>: select three or more points, <b>Enter</b> - finish creation + + + + + mNoisyHandler + + + DEBUG: + + + + + WARNING: + + + + + CRITICAL: + + + + + FATAL: + + + + + INFO: + + + + + Warning. + + + + + Critical error. + + + + + Fatal error. + + + + + Information. + + + + + vNoisyHandler + + + DEBUG: + + + + + WARNING: + + + + + CRITICAL: + + + + + FATAL: + + + + + INFO: + + + + + Warning. + + + + + Critical error. + + + + + Fatal error. + + + + + Information. + + + + diff --git a/src/app/translations.pri b/src/app/translations.pri index b37203494..0753c96a4 100755 --- a/src/app/translations.pri +++ b/src/app/translations.pri @@ -27,7 +27,8 @@ isEmpty(LOCALES){ en_CA \ en_IN \ ro_RO \ - zh_CN + zh_CN \ + pt_BR } else { LANGUAGES = $${LOCALES} } @@ -220,7 +221,15 @@ macx{ $$files($${TRANSLATIONS_PATH}/*_zh_CN.qm) \ $$[QT_INSTALL_TRANSLATIONS]/qt_zh_CN.qm \ $${TRANSLATIONS_PATH}/Localizable.strings - TRANSLATION_ro_RO.path = "$$RESOURCES_DIR/translations/zh_CN.lproj" + TRANSLATION_zh_CN.path = "$$RESOURCES_DIR/translations/zh_CN.lproj" QMAKE_BUNDLE_DATA += TRANSLATION_zh_CN } + + exists($${TRANSLATIONS_PATH}/valentina_pt_BR.qm){ + TRANSLATION_pt_BR.files += \ + $$files($${TRANSLATIONS_PATH}/*_pt_BR.qm) \ + $${TRANSLATIONS_PATH}/Localizable.strings + TRANSLATION_pt_BR.path = "$$RESOURCES_DIR/translations/pt_BR.lproj" + QMAKE_BUNDLE_DATA += TRANSLATION_pt_BR + } } diff --git a/src/libs/vmisc/def.cpp b/src/libs/vmisc/def.cpp index 09b01a446..3995185dd 100644 --- a/src/libs/vmisc/def.cpp +++ b/src/libs/vmisc/def.cpp @@ -955,7 +955,8 @@ QStringList SupportedLocales() << QStringLiteral("en_CA") << QStringLiteral("en_IN") << QStringLiteral("ro_RO") - << QStringLiteral("zh_CN"); + << QStringLiteral("zh_CN") + << QStringLiteral("pt_BR"); return locales; } From 15bc39a7899e1afeaf3aba6213c5dda95cb08f29 Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Wed, 9 Mar 2016 10:10:13 +0200 Subject: [PATCH 3/3] Lupdate. --HG-- branch : develop --- scripts/lupdate.sh | 6 +- share/translations/measurements_p0_cs_CZ.ts | 28 +- share/translations/measurements_p0_de_DE.ts | 76 +- share/translations/measurements_p0_es_ES.ts | 110 +- share/translations/measurements_p0_fi_FI.ts | 32 +- share/translations/measurements_p0_he_IL.ts | 12 +- share/translations/measurements_p0_id_ID.ts | 16 +- share/translations/measurements_p0_it_IT.ts | 160 +- share/translations/measurements_p0_pt_BR.ts | 90 +- share/translations/measurements_p0_uk_UA.ts | 234 +- share/translations/measurements_p0_zh_CN.ts | 94 +- share/translations/measurements_p10_cs_CZ.ts | 28 +- share/translations/measurements_p10_de_DE.ts | 76 +- share/translations/measurements_p10_es_ES.ts | 110 +- share/translations/measurements_p10_fi_FI.ts | 32 +- share/translations/measurements_p10_he_IL.ts | 12 +- share/translations/measurements_p10_id_ID.ts | 16 +- share/translations/measurements_p10_it_IT.ts | 160 +- share/translations/measurements_p10_pt_BR.ts | 90 +- share/translations/measurements_p10_uk_UA.ts | 234 +- share/translations/measurements_p10_zh_CN.ts | 94 +- share/translations/measurements_p11_cs_CZ.ts | 28 +- share/translations/measurements_p11_de_DE.ts | 76 +- share/translations/measurements_p11_es_ES.ts | 110 +- share/translations/measurements_p11_fi_FI.ts | 32 +- share/translations/measurements_p11_he_IL.ts | 12 +- share/translations/measurements_p11_id_ID.ts | 16 +- share/translations/measurements_p11_it_IT.ts | 160 +- share/translations/measurements_p11_pt_BR.ts | 90 +- share/translations/measurements_p11_uk_UA.ts | 234 +- share/translations/measurements_p11_zh_CN.ts | 94 +- share/translations/measurements_p12_cs_CZ.ts | 28 +- share/translations/measurements_p12_de_DE.ts | 76 +- share/translations/measurements_p12_es_ES.ts | 110 +- share/translations/measurements_p12_fi_FI.ts | 32 +- share/translations/measurements_p12_he_IL.ts | 12 +- share/translations/measurements_p12_id_ID.ts | 16 +- share/translations/measurements_p12_it_IT.ts | 160 +- share/translations/measurements_p12_pt_BR.ts | 90 +- share/translations/measurements_p12_uk_UA.ts | 234 +- share/translations/measurements_p12_zh_CN.ts | 94 +- share/translations/measurements_p13_cs_CZ.ts | 28 +- share/translations/measurements_p13_de_DE.ts | 76 +- share/translations/measurements_p13_es_ES.ts | 110 +- share/translations/measurements_p13_fi_FI.ts | 32 +- share/translations/measurements_p13_he_IL.ts | 12 +- share/translations/measurements_p13_id_ID.ts | 16 +- share/translations/measurements_p13_it_IT.ts | 160 +- share/translations/measurements_p13_pt_BR.ts | 90 +- share/translations/measurements_p13_uk_UA.ts | 234 +- share/translations/measurements_p13_zh_CN.ts | 94 +- share/translations/measurements_p14_cs_CZ.ts | 28 +- share/translations/measurements_p14_de_DE.ts | 76 +- share/translations/measurements_p14_es_ES.ts | 110 +- share/translations/measurements_p14_fi_FI.ts | 32 +- share/translations/measurements_p14_he_IL.ts | 12 +- share/translations/measurements_p14_id_ID.ts | 16 +- share/translations/measurements_p14_it_IT.ts | 160 +- share/translations/measurements_p14_pt_BR.ts | 90 +- share/translations/measurements_p14_uk_UA.ts | 234 +- share/translations/measurements_p14_zh_CN.ts | 94 +- share/translations/measurements_p15_cs_CZ.ts | 28 +- share/translations/measurements_p15_de_DE.ts | 76 +- share/translations/measurements_p15_es_ES.ts | 110 +- share/translations/measurements_p15_fi_FI.ts | 32 +- share/translations/measurements_p15_he_IL.ts | 12 +- share/translations/measurements_p15_id_ID.ts | 16 +- share/translations/measurements_p15_it_IT.ts | 160 +- share/translations/measurements_p15_pt_BR.ts | 90 +- share/translations/measurements_p15_uk_UA.ts | 234 +- share/translations/measurements_p15_zh_CN.ts | 94 +- share/translations/measurements_p16_cs_CZ.ts | 28 +- share/translations/measurements_p16_de_DE.ts | 76 +- share/translations/measurements_p16_es_ES.ts | 110 +- share/translations/measurements_p16_fi_FI.ts | 32 +- share/translations/measurements_p16_he_IL.ts | 12 +- share/translations/measurements_p16_id_ID.ts | 16 +- share/translations/measurements_p16_it_IT.ts | 160 +- share/translations/measurements_p16_pt_BR.ts | 90 +- share/translations/measurements_p16_uk_UA.ts | 234 +- share/translations/measurements_p16_zh_CN.ts | 94 +- share/translations/measurements_p17_cs_CZ.ts | 28 +- share/translations/measurements_p17_de_DE.ts | 76 +- share/translations/measurements_p17_es_ES.ts | 110 +- share/translations/measurements_p17_fi_FI.ts | 32 +- share/translations/measurements_p17_he_IL.ts | 12 +- share/translations/measurements_p17_id_ID.ts | 16 +- share/translations/measurements_p17_it_IT.ts | 160 +- share/translations/measurements_p17_pt_BR.ts | 90 +- share/translations/measurements_p17_uk_UA.ts | 234 +- share/translations/measurements_p17_zh_CN.ts | 94 +- share/translations/measurements_p18_cs_CZ.ts | 28 +- share/translations/measurements_p18_de_DE.ts | 76 +- share/translations/measurements_p18_es_ES.ts | 110 +- share/translations/measurements_p18_fi_FI.ts | 32 +- share/translations/measurements_p18_he_IL.ts | 12 +- share/translations/measurements_p18_id_ID.ts | 16 +- share/translations/measurements_p18_it_IT.ts | 160 +- share/translations/measurements_p18_pt_BR.ts | 90 +- share/translations/measurements_p18_uk_UA.ts | 234 +- share/translations/measurements_p18_zh_CN.ts | 94 +- share/translations/measurements_p19_cs_CZ.ts | 28 +- share/translations/measurements_p19_de_DE.ts | 76 +- share/translations/measurements_p19_es_ES.ts | 110 +- share/translations/measurements_p19_fi_FI.ts | 32 +- share/translations/measurements_p19_he_IL.ts | 12 +- share/translations/measurements_p19_id_ID.ts | 16 +- share/translations/measurements_p19_it_IT.ts | 160 +- share/translations/measurements_p19_pt_BR.ts | 90 +- share/translations/measurements_p19_uk_UA.ts | 234 +- share/translations/measurements_p19_zh_CN.ts | 94 +- share/translations/measurements_p1_cs_CZ.ts | 28 +- share/translations/measurements_p1_de_DE.ts | 76 +- share/translations/measurements_p1_es_ES.ts | 110 +- share/translations/measurements_p1_fi_FI.ts | 32 +- share/translations/measurements_p1_he_IL.ts | 12 +- share/translations/measurements_p1_id_ID.ts | 16 +- share/translations/measurements_p1_it_IT.ts | 160 +- share/translations/measurements_p1_pt_BR.ts | 90 +- share/translations/measurements_p1_uk_UA.ts | 234 +- share/translations/measurements_p1_zh_CN.ts | 94 +- share/translations/measurements_p20_cs_CZ.ts | 28 +- share/translations/measurements_p20_de_DE.ts | 76 +- share/translations/measurements_p20_es_ES.ts | 110 +- share/translations/measurements_p20_fi_FI.ts | 32 +- share/translations/measurements_p20_he_IL.ts | 12 +- share/translations/measurements_p20_id_ID.ts | 16 +- share/translations/measurements_p20_it_IT.ts | 160 +- share/translations/measurements_p20_pt_BR.ts | 90 +- share/translations/measurements_p20_uk_UA.ts | 234 +- share/translations/measurements_p20_zh_CN.ts | 94 +- share/translations/measurements_p21_cs_CZ.ts | 28 +- share/translations/measurements_p21_de_DE.ts | 76 +- share/translations/measurements_p21_es_ES.ts | 110 +- share/translations/measurements_p21_fi_FI.ts | 32 +- share/translations/measurements_p21_he_IL.ts | 12 +- share/translations/measurements_p21_id_ID.ts | 16 +- share/translations/measurements_p21_it_IT.ts | 160 +- share/translations/measurements_p21_pt_BR.ts | 90 +- share/translations/measurements_p21_uk_UA.ts | 234 +- share/translations/measurements_p21_zh_CN.ts | 94 +- share/translations/measurements_p22_cs_CZ.ts | 28 +- share/translations/measurements_p22_de_DE.ts | 76 +- share/translations/measurements_p22_es_ES.ts | 110 +- share/translations/measurements_p22_fi_FI.ts | 32 +- share/translations/measurements_p22_he_IL.ts | 12 +- share/translations/measurements_p22_id_ID.ts | 16 +- share/translations/measurements_p22_it_IT.ts | 160 +- share/translations/measurements_p22_pt_BR.ts | 90 +- share/translations/measurements_p22_uk_UA.ts | 234 +- share/translations/measurements_p22_zh_CN.ts | 94 +- share/translations/measurements_p23_cs_CZ.ts | 28 +- share/translations/measurements_p23_de_DE.ts | 76 +- share/translations/measurements_p23_es_ES.ts | 110 +- share/translations/measurements_p23_fi_FI.ts | 32 +- share/translations/measurements_p23_he_IL.ts | 12 +- share/translations/measurements_p23_id_ID.ts | 16 +- share/translations/measurements_p23_it_IT.ts | 160 +- share/translations/measurements_p23_pt_BR.ts | 90 +- share/translations/measurements_p23_uk_UA.ts | 234 +- share/translations/measurements_p23_zh_CN.ts | 94 +- share/translations/measurements_p24_cs_CZ.ts | 28 +- share/translations/measurements_p24_de_DE.ts | 76 +- share/translations/measurements_p24_es_ES.ts | 110 +- share/translations/measurements_p24_fi_FI.ts | 32 +- share/translations/measurements_p24_he_IL.ts | 12 +- share/translations/measurements_p24_id_ID.ts | 16 +- share/translations/measurements_p24_it_IT.ts | 160 +- share/translations/measurements_p24_pt_BR.ts | 90 +- share/translations/measurements_p24_uk_UA.ts | 234 +- share/translations/measurements_p24_zh_CN.ts | 94 +- share/translations/measurements_p25_cs_CZ.ts | 28 +- share/translations/measurements_p25_de_DE.ts | 76 +- share/translations/measurements_p25_es_ES.ts | 110 +- share/translations/measurements_p25_fi_FI.ts | 32 +- share/translations/measurements_p25_he_IL.ts | 12 +- share/translations/measurements_p25_id_ID.ts | 16 +- share/translations/measurements_p25_it_IT.ts | 160 +- share/translations/measurements_p25_pt_BR.ts | 90 +- share/translations/measurements_p25_uk_UA.ts | 234 +- share/translations/measurements_p25_zh_CN.ts | 94 +- share/translations/measurements_p26_cs_CZ.ts | 28 +- share/translations/measurements_p26_de_DE.ts | 76 +- share/translations/measurements_p26_es_ES.ts | 110 +- share/translations/measurements_p26_fi_FI.ts | 32 +- share/translations/measurements_p26_he_IL.ts | 12 +- share/translations/measurements_p26_id_ID.ts | 16 +- share/translations/measurements_p26_it_IT.ts | 160 +- share/translations/measurements_p26_pt_BR.ts | 90 +- share/translations/measurements_p26_uk_UA.ts | 234 +- share/translations/measurements_p26_zh_CN.ts | 94 +- share/translations/measurements_p27_cs_CZ.ts | 28 +- share/translations/measurements_p27_de_DE.ts | 76 +- share/translations/measurements_p27_es_ES.ts | 110 +- share/translations/measurements_p27_fi_FI.ts | 32 +- share/translations/measurements_p27_he_IL.ts | 12 +- share/translations/measurements_p27_id_ID.ts | 16 +- share/translations/measurements_p27_it_IT.ts | 160 +- share/translations/measurements_p27_pt_BR.ts | 90 +- share/translations/measurements_p27_uk_UA.ts | 234 +- share/translations/measurements_p27_zh_CN.ts | 94 +- share/translations/measurements_p28_cs_CZ.ts | 28 +- share/translations/measurements_p28_de_DE.ts | 76 +- share/translations/measurements_p28_es_ES.ts | 110 +- share/translations/measurements_p28_fi_FI.ts | 32 +- share/translations/measurements_p28_he_IL.ts | 12 +- share/translations/measurements_p28_id_ID.ts | 16 +- share/translations/measurements_p28_it_IT.ts | 160 +- share/translations/measurements_p28_pt_BR.ts | 90 +- share/translations/measurements_p28_uk_UA.ts | 234 +- share/translations/measurements_p28_zh_CN.ts | 94 +- share/translations/measurements_p29_cs_CZ.ts | 28 +- share/translations/measurements_p29_de_DE.ts | 76 +- share/translations/measurements_p29_es_ES.ts | 110 +- share/translations/measurements_p29_fi_FI.ts | 32 +- share/translations/measurements_p29_he_IL.ts | 12 +- share/translations/measurements_p29_id_ID.ts | 16 +- share/translations/measurements_p29_it_IT.ts | 160 +- share/translations/measurements_p29_pt_BR.ts | 90 +- share/translations/measurements_p29_uk_UA.ts | 234 +- share/translations/measurements_p29_zh_CN.ts | 94 +- share/translations/measurements_p2_cs_CZ.ts | 28 +- share/translations/measurements_p2_de_DE.ts | 76 +- share/translations/measurements_p2_es_ES.ts | 110 +- share/translations/measurements_p2_fi_FI.ts | 32 +- share/translations/measurements_p2_he_IL.ts | 12 +- share/translations/measurements_p2_id_ID.ts | 16 +- share/translations/measurements_p2_it_IT.ts | 160 +- share/translations/measurements_p2_pt_BR.ts | 90 +- share/translations/measurements_p2_uk_UA.ts | 234 +- share/translations/measurements_p2_zh_CN.ts | 94 +- share/translations/measurements_p30_cs_CZ.ts | 28 +- share/translations/measurements_p30_de_DE.ts | 76 +- share/translations/measurements_p30_es_ES.ts | 110 +- share/translations/measurements_p30_fi_FI.ts | 32 +- share/translations/measurements_p30_he_IL.ts | 12 +- share/translations/measurements_p30_id_ID.ts | 16 +- share/translations/measurements_p30_it_IT.ts | 160 +- share/translations/measurements_p30_pt_BR.ts | 90 +- share/translations/measurements_p30_uk_UA.ts | 234 +- share/translations/measurements_p30_zh_CN.ts | 94 +- share/translations/measurements_p31_cs_CZ.ts | 28 +- share/translations/measurements_p31_de_DE.ts | 76 +- share/translations/measurements_p31_es_ES.ts | 110 +- share/translations/measurements_p31_fi_FI.ts | 32 +- share/translations/measurements_p31_he_IL.ts | 12 +- share/translations/measurements_p31_id_ID.ts | 16 +- share/translations/measurements_p31_it_IT.ts | 160 +- share/translations/measurements_p31_pt_BR.ts | 90 +- share/translations/measurements_p31_uk_UA.ts | 234 +- share/translations/measurements_p31_zh_CN.ts | 94 +- share/translations/measurements_p32_cs_CZ.ts | 28 +- share/translations/measurements_p32_de_DE.ts | 76 +- share/translations/measurements_p32_es_ES.ts | 110 +- share/translations/measurements_p32_fi_FI.ts | 32 +- share/translations/measurements_p32_he_IL.ts | 12 +- share/translations/measurements_p32_id_ID.ts | 16 +- share/translations/measurements_p32_it_IT.ts | 160 +- share/translations/measurements_p32_pt_BR.ts | 90 +- share/translations/measurements_p32_uk_UA.ts | 234 +- share/translations/measurements_p32_zh_CN.ts | 94 +- share/translations/measurements_p33_cs_CZ.ts | 28 +- share/translations/measurements_p33_de_DE.ts | 76 +- share/translations/measurements_p33_es_ES.ts | 110 +- share/translations/measurements_p33_fi_FI.ts | 32 +- share/translations/measurements_p33_he_IL.ts | 12 +- share/translations/measurements_p33_id_ID.ts | 16 +- share/translations/measurements_p33_it_IT.ts | 160 +- share/translations/measurements_p33_pt_BR.ts | 90 +- share/translations/measurements_p33_uk_UA.ts | 234 +- share/translations/measurements_p33_zh_CN.ts | 94 +- share/translations/measurements_p34_cs_CZ.ts | 28 +- share/translations/measurements_p34_de_DE.ts | 76 +- share/translations/measurements_p34_es_ES.ts | 110 +- share/translations/measurements_p34_fi_FI.ts | 32 +- share/translations/measurements_p34_he_IL.ts | 12 +- share/translations/measurements_p34_id_ID.ts | 16 +- share/translations/measurements_p34_it_IT.ts | 160 +- share/translations/measurements_p34_pt_BR.ts | 90 +- share/translations/measurements_p34_uk_UA.ts | 234 +- share/translations/measurements_p34_zh_CN.ts | 94 +- share/translations/measurements_p35_cs_CZ.ts | 28 +- share/translations/measurements_p35_de_DE.ts | 76 +- share/translations/measurements_p35_es_ES.ts | 110 +- share/translations/measurements_p35_fi_FI.ts | 32 +- share/translations/measurements_p35_he_IL.ts | 12 +- share/translations/measurements_p35_id_ID.ts | 16 +- share/translations/measurements_p35_it_IT.ts | 160 +- share/translations/measurements_p35_pt_BR.ts | 90 +- share/translations/measurements_p35_uk_UA.ts | 234 +- share/translations/measurements_p35_zh_CN.ts | 94 +- share/translations/measurements_p36_cs_CZ.ts | 28 +- share/translations/measurements_p36_de_DE.ts | 76 +- share/translations/measurements_p36_es_ES.ts | 110 +- share/translations/measurements_p36_fi_FI.ts | 32 +- share/translations/measurements_p36_he_IL.ts | 12 +- share/translations/measurements_p36_id_ID.ts | 16 +- share/translations/measurements_p36_it_IT.ts | 160 +- share/translations/measurements_p36_pt_BR.ts | 90 +- share/translations/measurements_p36_uk_UA.ts | 234 +- share/translations/measurements_p36_zh_CN.ts | 94 +- share/translations/measurements_p37_cs_CZ.ts | 28 +- share/translations/measurements_p37_de_DE.ts | 76 +- share/translations/measurements_p37_es_ES.ts | 110 +- share/translations/measurements_p37_fi_FI.ts | 32 +- share/translations/measurements_p37_he_IL.ts | 12 +- share/translations/measurements_p37_id_ID.ts | 16 +- share/translations/measurements_p37_it_IT.ts | 160 +- share/translations/measurements_p37_pt_BR.ts | 90 +- share/translations/measurements_p37_uk_UA.ts | 234 +- share/translations/measurements_p37_zh_CN.ts | 94 +- share/translations/measurements_p38_cs_CZ.ts | 28 +- share/translations/measurements_p38_de_DE.ts | 76 +- share/translations/measurements_p38_es_ES.ts | 110 +- share/translations/measurements_p38_fi_FI.ts | 32 +- share/translations/measurements_p38_he_IL.ts | 12 +- share/translations/measurements_p38_id_ID.ts | 16 +- share/translations/measurements_p38_it_IT.ts | 160 +- share/translations/measurements_p38_pt_BR.ts | 90 +- share/translations/measurements_p38_uk_UA.ts | 234 +- share/translations/measurements_p38_zh_CN.ts | 94 +- share/translations/measurements_p39_cs_CZ.ts | 28 +- share/translations/measurements_p39_de_DE.ts | 76 +- share/translations/measurements_p39_es_ES.ts | 110 +- share/translations/measurements_p39_fi_FI.ts | 32 +- share/translations/measurements_p39_he_IL.ts | 12 +- share/translations/measurements_p39_id_ID.ts | 16 +- share/translations/measurements_p39_it_IT.ts | 160 +- share/translations/measurements_p39_pt_BR.ts | 90 +- share/translations/measurements_p39_uk_UA.ts | 234 +- share/translations/measurements_p39_zh_CN.ts | 94 +- share/translations/measurements_p3_cs_CZ.ts | 28 +- share/translations/measurements_p3_de_DE.ts | 76 +- share/translations/measurements_p3_es_ES.ts | 110 +- share/translations/measurements_p3_fi_FI.ts | 32 +- share/translations/measurements_p3_he_IL.ts | 12 +- share/translations/measurements_p3_id_ID.ts | 16 +- share/translations/measurements_p3_it_IT.ts | 160 +- share/translations/measurements_p3_pt_BR.ts | 90 +- share/translations/measurements_p3_uk_UA.ts | 234 +- share/translations/measurements_p3_zh_CN.ts | 94 +- share/translations/measurements_p40_cs_CZ.ts | 28 +- share/translations/measurements_p40_de_DE.ts | 76 +- share/translations/measurements_p40_es_ES.ts | 110 +- share/translations/measurements_p40_fi_FI.ts | 32 +- share/translations/measurements_p40_he_IL.ts | 12 +- share/translations/measurements_p40_id_ID.ts | 16 +- share/translations/measurements_p40_it_IT.ts | 160 +- share/translations/measurements_p40_pt_BR.ts | 90 +- share/translations/measurements_p40_uk_UA.ts | 234 +- share/translations/measurements_p40_zh_CN.ts | 94 +- share/translations/measurements_p41_cs_CZ.ts | 28 +- share/translations/measurements_p41_de_DE.ts | 76 +- share/translations/measurements_p41_es_ES.ts | 110 +- share/translations/measurements_p41_fi_FI.ts | 32 +- share/translations/measurements_p41_he_IL.ts | 12 +- share/translations/measurements_p41_id_ID.ts | 16 +- share/translations/measurements_p41_it_IT.ts | 160 +- share/translations/measurements_p41_pt_BR.ts | 90 +- share/translations/measurements_p41_uk_UA.ts | 234 +- share/translations/measurements_p41_zh_CN.ts | 94 +- share/translations/measurements_p42_cs_CZ.ts | 28 +- share/translations/measurements_p42_de_DE.ts | 76 +- share/translations/measurements_p42_es_ES.ts | 110 +- share/translations/measurements_p42_fi_FI.ts | 32 +- share/translations/measurements_p42_he_IL.ts | 12 +- share/translations/measurements_p42_id_ID.ts | 16 +- share/translations/measurements_p42_it_IT.ts | 160 +- share/translations/measurements_p42_pt_BR.ts | 90 +- share/translations/measurements_p42_uk_UA.ts | 234 +- share/translations/measurements_p42_zh_CN.ts | 94 +- share/translations/measurements_p43_cs_CZ.ts | 28 +- share/translations/measurements_p43_de_DE.ts | 76 +- share/translations/measurements_p43_es_ES.ts | 110 +- share/translations/measurements_p43_fi_FI.ts | 32 +- share/translations/measurements_p43_he_IL.ts | 12 +- share/translations/measurements_p43_id_ID.ts | 16 +- share/translations/measurements_p43_it_IT.ts | 160 +- share/translations/measurements_p43_pt_BR.ts | 90 +- share/translations/measurements_p43_uk_UA.ts | 234 +- share/translations/measurements_p43_zh_CN.ts | 94 +- share/translations/measurements_p44_cs_CZ.ts | 28 +- share/translations/measurements_p44_de_DE.ts | 76 +- share/translations/measurements_p44_es_ES.ts | 110 +- share/translations/measurements_p44_fi_FI.ts | 32 +- share/translations/measurements_p44_he_IL.ts | 12 +- share/translations/measurements_p44_id_ID.ts | 16 +- share/translations/measurements_p44_it_IT.ts | 160 +- share/translations/measurements_p44_pt_BR.ts | 90 +- share/translations/measurements_p44_uk_UA.ts | 234 +- share/translations/measurements_p44_zh_CN.ts | 94 +- share/translations/measurements_p45_cs_CZ.ts | 28 +- share/translations/measurements_p45_de_DE.ts | 76 +- share/translations/measurements_p45_es_ES.ts | 110 +- share/translations/measurements_p45_fi_FI.ts | 32 +- share/translations/measurements_p45_he_IL.ts | 12 +- share/translations/measurements_p45_id_ID.ts | 16 +- share/translations/measurements_p45_it_IT.ts | 160 +- share/translations/measurements_p45_pt_BR.ts | 90 +- share/translations/measurements_p45_uk_UA.ts | 234 +- share/translations/measurements_p45_zh_CN.ts | 94 +- share/translations/measurements_p46_cs_CZ.ts | 28 +- share/translations/measurements_p46_de_DE.ts | 76 +- share/translations/measurements_p46_es_ES.ts | 110 +- share/translations/measurements_p46_fi_FI.ts | 32 +- share/translations/measurements_p46_he_IL.ts | 12 +- share/translations/measurements_p46_id_ID.ts | 16 +- share/translations/measurements_p46_it_IT.ts | 160 +- share/translations/measurements_p46_pt_BR.ts | 90 +- share/translations/measurements_p46_uk_UA.ts | 234 +- share/translations/measurements_p46_zh_CN.ts | 94 +- share/translations/measurements_p47_cs_CZ.ts | 28 +- share/translations/measurements_p47_de_DE.ts | 76 +- share/translations/measurements_p47_es_ES.ts | 110 +- share/translations/measurements_p47_fi_FI.ts | 32 +- share/translations/measurements_p47_he_IL.ts | 12 +- share/translations/measurements_p47_id_ID.ts | 16 +- share/translations/measurements_p47_it_IT.ts | 160 +- share/translations/measurements_p47_pt_BR.ts | 90 +- share/translations/measurements_p47_uk_UA.ts | 234 +- share/translations/measurements_p47_zh_CN.ts | 94 +- share/translations/measurements_p48_cs_CZ.ts | 28 +- share/translations/measurements_p48_de_DE.ts | 76 +- share/translations/measurements_p48_es_ES.ts | 110 +- share/translations/measurements_p48_fi_FI.ts | 32 +- share/translations/measurements_p48_he_IL.ts | 12 +- share/translations/measurements_p48_id_ID.ts | 16 +- share/translations/measurements_p48_it_IT.ts | 160 +- share/translations/measurements_p48_pt_BR.ts | 90 +- share/translations/measurements_p48_uk_UA.ts | 234 +- share/translations/measurements_p48_zh_CN.ts | 94 +- share/translations/measurements_p49_cs_CZ.ts | 28 +- share/translations/measurements_p49_de_DE.ts | 76 +- share/translations/measurements_p49_es_ES.ts | 110 +- share/translations/measurements_p49_fi_FI.ts | 32 +- share/translations/measurements_p49_he_IL.ts | 12 +- share/translations/measurements_p49_id_ID.ts | 16 +- share/translations/measurements_p49_it_IT.ts | 160 +- share/translations/measurements_p49_pt_BR.ts | 90 +- share/translations/measurements_p49_uk_UA.ts | 234 +- share/translations/measurements_p49_zh_CN.ts | 94 +- share/translations/measurements_p4_cs_CZ.ts | 28 +- share/translations/measurements_p4_de_DE.ts | 76 +- share/translations/measurements_p4_es_ES.ts | 110 +- share/translations/measurements_p4_fi_FI.ts | 32 +- share/translations/measurements_p4_he_IL.ts | 12 +- share/translations/measurements_p4_id_ID.ts | 16 +- share/translations/measurements_p4_it_IT.ts | 160 +- share/translations/measurements_p4_pt_BR.ts | 90 +- share/translations/measurements_p4_uk_UA.ts | 234 +- share/translations/measurements_p4_zh_CN.ts | 94 +- share/translations/measurements_p50_cs_CZ.ts | 28 +- share/translations/measurements_p50_de_DE.ts | 76 +- share/translations/measurements_p50_es_ES.ts | 110 +- share/translations/measurements_p50_fi_FI.ts | 32 +- share/translations/measurements_p50_he_IL.ts | 12 +- share/translations/measurements_p50_id_ID.ts | 16 +- share/translations/measurements_p50_it_IT.ts | 160 +- share/translations/measurements_p50_pt_BR.ts | 90 +- share/translations/measurements_p50_uk_UA.ts | 234 +- share/translations/measurements_p50_zh_CN.ts | 94 +- share/translations/measurements_p51_cs_CZ.ts | 28 +- share/translations/measurements_p51_de_DE.ts | 76 +- share/translations/measurements_p51_es_ES.ts | 110 +- share/translations/measurements_p51_fi_FI.ts | 32 +- share/translations/measurements_p51_he_IL.ts | 12 +- share/translations/measurements_p51_id_ID.ts | 16 +- share/translations/measurements_p51_it_IT.ts | 160 +- share/translations/measurements_p51_pt_BR.ts | 90 +- share/translations/measurements_p51_uk_UA.ts | 234 +- share/translations/measurements_p51_zh_CN.ts | 94 +- share/translations/measurements_p52_cs_CZ.ts | 28 +- share/translations/measurements_p52_de_DE.ts | 76 +- share/translations/measurements_p52_es_ES.ts | 110 +- share/translations/measurements_p52_fi_FI.ts | 32 +- share/translations/measurements_p52_he_IL.ts | 12 +- share/translations/measurements_p52_id_ID.ts | 16 +- share/translations/measurements_p52_it_IT.ts | 160 +- share/translations/measurements_p52_pt_BR.ts | 90 +- share/translations/measurements_p52_uk_UA.ts | 234 +- share/translations/measurements_p52_zh_CN.ts | 94 +- share/translations/measurements_p53_cs_CZ.ts | 28 +- share/translations/measurements_p53_de_DE.ts | 76 +- share/translations/measurements_p53_es_ES.ts | 110 +- share/translations/measurements_p53_fi_FI.ts | 32 +- share/translations/measurements_p53_he_IL.ts | 12 +- share/translations/measurements_p53_id_ID.ts | 16 +- share/translations/measurements_p53_it_IT.ts | 160 +- share/translations/measurements_p53_pt_BR.ts | 90 +- share/translations/measurements_p53_uk_UA.ts | 234 +- share/translations/measurements_p53_zh_CN.ts | 94 +- share/translations/measurements_p54_cs_CZ.ts | 28 +- share/translations/measurements_p54_de_DE.ts | 76 +- share/translations/measurements_p54_es_ES.ts | 110 +- share/translations/measurements_p54_fi_FI.ts | 32 +- share/translations/measurements_p54_he_IL.ts | 12 +- share/translations/measurements_p54_id_ID.ts | 16 +- share/translations/measurements_p54_it_IT.ts | 160 +- share/translations/measurements_p54_pt_BR.ts | 90 +- share/translations/measurements_p54_uk_UA.ts | 234 +- share/translations/measurements_p54_zh_CN.ts | 94 +- share/translations/measurements_p5_cs_CZ.ts | 28 +- share/translations/measurements_p5_de_DE.ts | 76 +- share/translations/measurements_p5_es_ES.ts | 110 +- share/translations/measurements_p5_fi_FI.ts | 32 +- share/translations/measurements_p5_he_IL.ts | 12 +- share/translations/measurements_p5_id_ID.ts | 16 +- share/translations/measurements_p5_it_IT.ts | 160 +- share/translations/measurements_p5_pt_BR.ts | 90 +- share/translations/measurements_p5_uk_UA.ts | 234 +- share/translations/measurements_p5_zh_CN.ts | 94 +- share/translations/measurements_p6_cs_CZ.ts | 28 +- share/translations/measurements_p6_de_DE.ts | 76 +- share/translations/measurements_p6_es_ES.ts | 110 +- share/translations/measurements_p6_fi_FI.ts | 32 +- share/translations/measurements_p6_he_IL.ts | 12 +- share/translations/measurements_p6_id_ID.ts | 16 +- share/translations/measurements_p6_it_IT.ts | 160 +- share/translations/measurements_p6_pt_BR.ts | 90 +- share/translations/measurements_p6_uk_UA.ts | 234 +- share/translations/measurements_p6_zh_CN.ts | 94 +- share/translations/measurements_p7_cs_CZ.ts | 28 +- share/translations/measurements_p7_de_DE.ts | 76 +- share/translations/measurements_p7_es_ES.ts | 110 +- share/translations/measurements_p7_fi_FI.ts | 32 +- share/translations/measurements_p7_he_IL.ts | 12 +- share/translations/measurements_p7_id_ID.ts | 16 +- share/translations/measurements_p7_it_IT.ts | 160 +- share/translations/measurements_p7_pt_BR.ts | 90 +- share/translations/measurements_p7_uk_UA.ts | 234 +- share/translations/measurements_p7_zh_CN.ts | 94 +- share/translations/measurements_p8_cs_CZ.ts | 28 +- share/translations/measurements_p8_de_DE.ts | 76 +- share/translations/measurements_p8_es_ES.ts | 110 +- share/translations/measurements_p8_fi_FI.ts | 32 +- share/translations/measurements_p8_he_IL.ts | 12 +- share/translations/measurements_p8_id_ID.ts | 16 +- share/translations/measurements_p8_it_IT.ts | 160 +- share/translations/measurements_p8_pt_BR.ts | 90 +- share/translations/measurements_p8_uk_UA.ts | 234 +- share/translations/measurements_p8_zh_CN.ts | 94 +- share/translations/measurements_p998_cs_CZ.ts | 28 +- share/translations/measurements_p998_de_DE.ts | 76 +- share/translations/measurements_p998_es_ES.ts | 110 +- share/translations/measurements_p998_fi_FI.ts | 32 +- share/translations/measurements_p998_he_IL.ts | 12 +- share/translations/measurements_p998_id_ID.ts | 16 +- share/translations/measurements_p998_it_IT.ts | 160 +- share/translations/measurements_p998_pt_BR.ts | 24 +- share/translations/measurements_p998_uk_UA.ts | 234 +- share/translations/measurements_p998_zh_CN.ts | 28 +- share/translations/measurements_p9_cs_CZ.ts | 28 +- share/translations/measurements_p9_de_DE.ts | 76 +- share/translations/measurements_p9_es_ES.ts | 110 +- share/translations/measurements_p9_fi_FI.ts | 32 +- share/translations/measurements_p9_he_IL.ts | 12 +- share/translations/measurements_p9_id_ID.ts | 16 +- share/translations/measurements_p9_it_IT.ts | 160 +- share/translations/measurements_p9_pt_BR.ts | 90 +- share/translations/measurements_p9_uk_UA.ts | 234 +- share/translations/measurements_p9_zh_CN.ts | 94 +- share/translations/valentina.ts | 26 +- share/translations/valentina_cs_CZ.ts | 8 +- share/translations/valentina_de_DE.ts | 26 +- share/translations/valentina_he_IL.ts | 275 +- share/translations/valentina_id_ID.ts | 887 +- share/translations/valentina_pt_BR.ts | 7418 +++++++---------- share/translations/valentina_zh_CN.ts | 7075 ++++++---------- 568 files changed, 29543 insertions(+), 33758 deletions(-) diff --git a/scripts/lupdate.sh b/scripts/lupdate.sh index cc03dfab0..237678547 100755 --- a/scripts/lupdate.sh +++ b/scripts/lupdate.sh @@ -3,8 +3,12 @@ # lupdate doesn't work with recursive *.pro file and without direct pointing to correct *.pro file just update exists strings in code. # Please, run this script from folder /scripts. +# Download all translations from transifex.com. +# Use if have problems with default way. +#tx pull --mode=developer -f -s --skip + # Download last translations from transifex.com. -tx pull --mode=developer -f -s --skip +tx pull --mode=developer --skip # Update local strings lupdate -recursive ../share/translations/translations.pro diff --git a/share/translations/measurements_p0_cs_CZ.ts b/share/translations/measurements_p0_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p0_cs_CZ.ts +++ b/share/translations/measurements_p0_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p0_de_DE.ts b/share/translations/measurements_p0_de_DE.ts index 267408aa2..439b50261 100644 --- a/share/translations/measurements_p0_de_DE.ts +++ b/share/translations/measurements_p0_de_DE.ts @@ -2131,19 +2131,19 @@ neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2167,91 +2167,91 @@ waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2413,25 +2413,25 @@ From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2545,25 +2545,25 @@ armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2575,7 +2575,7 @@ Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2599,37 +2599,37 @@ neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2659,13 +2659,13 @@ Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2833,19 +2833,19 @@ neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p0_es_ES.ts b/share/translations/measurements_p0_es_ES.ts index b8cadf697..5b00d924b 100644 --- a/share/translations/measurements_p0_es_ES.ts +++ b/share/translations/measurements_p0_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la parte delantera de la cintura hasta el suelo. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p0_fi_FI.ts b/share/translations/measurements_p0_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p0_fi_FI.ts +++ b/share/translations/measurements_p0_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p0_he_IL.ts b/share/translations/measurements_p0_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p0_he_IL.ts +++ b/share/translations/measurements_p0_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p0_id_ID.ts b/share/translations/measurements_p0_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p0_id_ID.ts +++ b/share/translations/measurements_p0_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p0_it_IT.ts b/share/translations/measurements_p0_it_IT.ts index cb8f150d8..6924d422f 100644 --- a/share/translations/measurements_p0_it_IT.ts +++ b/share/translations/measurements_p0_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + testa_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p0_pt_BR.ts b/share/translations/measurements_p0_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p0_pt_BR.ts +++ b/share/translations/measurements_p0_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p0_uk_UA.ts b/share/translations/measurements_p0_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p0_uk_UA.ts +++ b/share/translations/measurements_p0_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p0_zh_CN.ts b/share/translations/measurements_p0_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p0_zh_CN.ts +++ b/share/translations/measurements_p0_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p10_cs_CZ.ts b/share/translations/measurements_p10_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p10_cs_CZ.ts +++ b/share/translations/measurements_p10_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p10_de_DE.ts b/share/translations/measurements_p10_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p10_de_DE.ts +++ b/share/translations/measurements_p10_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p10_es_ES.ts b/share/translations/measurements_p10_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p10_es_ES.ts +++ b/share/translations/measurements_p10_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p10_fi_FI.ts b/share/translations/measurements_p10_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p10_fi_FI.ts +++ b/share/translations/measurements_p10_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p10_he_IL.ts b/share/translations/measurements_p10_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p10_he_IL.ts +++ b/share/translations/measurements_p10_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p10_id_ID.ts b/share/translations/measurements_p10_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p10_id_ID.ts +++ b/share/translations/measurements_p10_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p10_it_IT.ts b/share/translations/measurements_p10_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p10_it_IT.ts +++ b/share/translations/measurements_p10_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p10_pt_BR.ts b/share/translations/measurements_p10_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p10_pt_BR.ts +++ b/share/translations/measurements_p10_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p10_uk_UA.ts b/share/translations/measurements_p10_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p10_uk_UA.ts +++ b/share/translations/measurements_p10_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p10_zh_CN.ts b/share/translations/measurements_p10_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p10_zh_CN.ts +++ b/share/translations/measurements_p10_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p11_cs_CZ.ts b/share/translations/measurements_p11_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p11_cs_CZ.ts +++ b/share/translations/measurements_p11_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p11_de_DE.ts b/share/translations/measurements_p11_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p11_de_DE.ts +++ b/share/translations/measurements_p11_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p11_es_ES.ts b/share/translations/measurements_p11_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p11_es_ES.ts +++ b/share/translations/measurements_p11_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p11_fi_FI.ts b/share/translations/measurements_p11_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p11_fi_FI.ts +++ b/share/translations/measurements_p11_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p11_he_IL.ts b/share/translations/measurements_p11_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p11_he_IL.ts +++ b/share/translations/measurements_p11_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p11_id_ID.ts b/share/translations/measurements_p11_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p11_id_ID.ts +++ b/share/translations/measurements_p11_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p11_it_IT.ts b/share/translations/measurements_p11_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p11_it_IT.ts +++ b/share/translations/measurements_p11_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p11_pt_BR.ts b/share/translations/measurements_p11_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p11_pt_BR.ts +++ b/share/translations/measurements_p11_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p11_uk_UA.ts b/share/translations/measurements_p11_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p11_uk_UA.ts +++ b/share/translations/measurements_p11_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p11_zh_CN.ts b/share/translations/measurements_p11_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p11_zh_CN.ts +++ b/share/translations/measurements_p11_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p12_cs_CZ.ts b/share/translations/measurements_p12_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p12_cs_CZ.ts +++ b/share/translations/measurements_p12_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p12_de_DE.ts b/share/translations/measurements_p12_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p12_de_DE.ts +++ b/share/translations/measurements_p12_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p12_es_ES.ts b/share/translations/measurements_p12_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p12_es_ES.ts +++ b/share/translations/measurements_p12_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p12_fi_FI.ts b/share/translations/measurements_p12_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p12_fi_FI.ts +++ b/share/translations/measurements_p12_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p12_he_IL.ts b/share/translations/measurements_p12_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p12_he_IL.ts +++ b/share/translations/measurements_p12_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p12_id_ID.ts b/share/translations/measurements_p12_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p12_id_ID.ts +++ b/share/translations/measurements_p12_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p12_it_IT.ts b/share/translations/measurements_p12_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p12_it_IT.ts +++ b/share/translations/measurements_p12_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p12_pt_BR.ts b/share/translations/measurements_p12_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p12_pt_BR.ts +++ b/share/translations/measurements_p12_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p12_uk_UA.ts b/share/translations/measurements_p12_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p12_uk_UA.ts +++ b/share/translations/measurements_p12_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p12_zh_CN.ts b/share/translations/measurements_p12_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p12_zh_CN.ts +++ b/share/translations/measurements_p12_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p13_cs_CZ.ts b/share/translations/measurements_p13_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p13_cs_CZ.ts +++ b/share/translations/measurements_p13_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p13_de_DE.ts b/share/translations/measurements_p13_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p13_de_DE.ts +++ b/share/translations/measurements_p13_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p13_es_ES.ts b/share/translations/measurements_p13_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p13_es_ES.ts +++ b/share/translations/measurements_p13_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p13_fi_FI.ts b/share/translations/measurements_p13_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p13_fi_FI.ts +++ b/share/translations/measurements_p13_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p13_he_IL.ts b/share/translations/measurements_p13_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p13_he_IL.ts +++ b/share/translations/measurements_p13_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p13_id_ID.ts b/share/translations/measurements_p13_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p13_id_ID.ts +++ b/share/translations/measurements_p13_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p13_it_IT.ts b/share/translations/measurements_p13_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p13_it_IT.ts +++ b/share/translations/measurements_p13_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p13_pt_BR.ts b/share/translations/measurements_p13_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p13_pt_BR.ts +++ b/share/translations/measurements_p13_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p13_uk_UA.ts b/share/translations/measurements_p13_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p13_uk_UA.ts +++ b/share/translations/measurements_p13_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p13_zh_CN.ts b/share/translations/measurements_p13_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p13_zh_CN.ts +++ b/share/translations/measurements_p13_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p14_cs_CZ.ts b/share/translations/measurements_p14_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p14_cs_CZ.ts +++ b/share/translations/measurements_p14_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p14_de_DE.ts b/share/translations/measurements_p14_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p14_de_DE.ts +++ b/share/translations/measurements_p14_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p14_es_ES.ts b/share/translations/measurements_p14_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p14_es_ES.ts +++ b/share/translations/measurements_p14_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p14_fi_FI.ts b/share/translations/measurements_p14_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p14_fi_FI.ts +++ b/share/translations/measurements_p14_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p14_he_IL.ts b/share/translations/measurements_p14_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p14_he_IL.ts +++ b/share/translations/measurements_p14_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p14_id_ID.ts b/share/translations/measurements_p14_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p14_id_ID.ts +++ b/share/translations/measurements_p14_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p14_it_IT.ts b/share/translations/measurements_p14_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p14_it_IT.ts +++ b/share/translations/measurements_p14_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p14_pt_BR.ts b/share/translations/measurements_p14_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p14_pt_BR.ts +++ b/share/translations/measurements_p14_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p14_uk_UA.ts b/share/translations/measurements_p14_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p14_uk_UA.ts +++ b/share/translations/measurements_p14_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p14_zh_CN.ts b/share/translations/measurements_p14_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p14_zh_CN.ts +++ b/share/translations/measurements_p14_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p15_cs_CZ.ts b/share/translations/measurements_p15_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p15_cs_CZ.ts +++ b/share/translations/measurements_p15_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p15_de_DE.ts b/share/translations/measurements_p15_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p15_de_DE.ts +++ b/share/translations/measurements_p15_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p15_es_ES.ts b/share/translations/measurements_p15_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p15_es_ES.ts +++ b/share/translations/measurements_p15_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p15_fi_FI.ts b/share/translations/measurements_p15_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p15_fi_FI.ts +++ b/share/translations/measurements_p15_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p15_he_IL.ts b/share/translations/measurements_p15_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p15_he_IL.ts +++ b/share/translations/measurements_p15_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p15_id_ID.ts b/share/translations/measurements_p15_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p15_id_ID.ts +++ b/share/translations/measurements_p15_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p15_it_IT.ts b/share/translations/measurements_p15_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p15_it_IT.ts +++ b/share/translations/measurements_p15_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p15_pt_BR.ts b/share/translations/measurements_p15_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p15_pt_BR.ts +++ b/share/translations/measurements_p15_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p15_uk_UA.ts b/share/translations/measurements_p15_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p15_uk_UA.ts +++ b/share/translations/measurements_p15_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p15_zh_CN.ts b/share/translations/measurements_p15_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p15_zh_CN.ts +++ b/share/translations/measurements_p15_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p16_cs_CZ.ts b/share/translations/measurements_p16_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p16_cs_CZ.ts +++ b/share/translations/measurements_p16_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p16_de_DE.ts b/share/translations/measurements_p16_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p16_de_DE.ts +++ b/share/translations/measurements_p16_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p16_es_ES.ts b/share/translations/measurements_p16_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p16_es_ES.ts +++ b/share/translations/measurements_p16_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p16_fi_FI.ts b/share/translations/measurements_p16_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p16_fi_FI.ts +++ b/share/translations/measurements_p16_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p16_he_IL.ts b/share/translations/measurements_p16_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p16_he_IL.ts +++ b/share/translations/measurements_p16_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p16_id_ID.ts b/share/translations/measurements_p16_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p16_id_ID.ts +++ b/share/translations/measurements_p16_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p16_it_IT.ts b/share/translations/measurements_p16_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p16_it_IT.ts +++ b/share/translations/measurements_p16_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p16_pt_BR.ts b/share/translations/measurements_p16_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p16_pt_BR.ts +++ b/share/translations/measurements_p16_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p16_uk_UA.ts b/share/translations/measurements_p16_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p16_uk_UA.ts +++ b/share/translations/measurements_p16_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p16_zh_CN.ts b/share/translations/measurements_p16_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p16_zh_CN.ts +++ b/share/translations/measurements_p16_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p17_cs_CZ.ts b/share/translations/measurements_p17_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p17_cs_CZ.ts +++ b/share/translations/measurements_p17_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p17_de_DE.ts b/share/translations/measurements_p17_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p17_de_DE.ts +++ b/share/translations/measurements_p17_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p17_es_ES.ts b/share/translations/measurements_p17_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p17_es_ES.ts +++ b/share/translations/measurements_p17_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p17_fi_FI.ts b/share/translations/measurements_p17_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p17_fi_FI.ts +++ b/share/translations/measurements_p17_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p17_he_IL.ts b/share/translations/measurements_p17_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p17_he_IL.ts +++ b/share/translations/measurements_p17_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p17_id_ID.ts b/share/translations/measurements_p17_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p17_id_ID.ts +++ b/share/translations/measurements_p17_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p17_it_IT.ts b/share/translations/measurements_p17_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p17_it_IT.ts +++ b/share/translations/measurements_p17_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p17_pt_BR.ts b/share/translations/measurements_p17_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p17_pt_BR.ts +++ b/share/translations/measurements_p17_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p17_uk_UA.ts b/share/translations/measurements_p17_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p17_uk_UA.ts +++ b/share/translations/measurements_p17_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p17_zh_CN.ts b/share/translations/measurements_p17_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p17_zh_CN.ts +++ b/share/translations/measurements_p17_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p18_cs_CZ.ts b/share/translations/measurements_p18_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p18_cs_CZ.ts +++ b/share/translations/measurements_p18_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p18_de_DE.ts b/share/translations/measurements_p18_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p18_de_DE.ts +++ b/share/translations/measurements_p18_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p18_es_ES.ts b/share/translations/measurements_p18_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p18_es_ES.ts +++ b/share/translations/measurements_p18_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p18_fi_FI.ts b/share/translations/measurements_p18_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p18_fi_FI.ts +++ b/share/translations/measurements_p18_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p18_he_IL.ts b/share/translations/measurements_p18_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p18_he_IL.ts +++ b/share/translations/measurements_p18_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p18_id_ID.ts b/share/translations/measurements_p18_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p18_id_ID.ts +++ b/share/translations/measurements_p18_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p18_it_IT.ts b/share/translations/measurements_p18_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p18_it_IT.ts +++ b/share/translations/measurements_p18_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p18_pt_BR.ts b/share/translations/measurements_p18_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p18_pt_BR.ts +++ b/share/translations/measurements_p18_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p18_uk_UA.ts b/share/translations/measurements_p18_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p18_uk_UA.ts +++ b/share/translations/measurements_p18_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p18_zh_CN.ts b/share/translations/measurements_p18_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p18_zh_CN.ts +++ b/share/translations/measurements_p18_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p19_cs_CZ.ts b/share/translations/measurements_p19_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p19_cs_CZ.ts +++ b/share/translations/measurements_p19_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p19_de_DE.ts b/share/translations/measurements_p19_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p19_de_DE.ts +++ b/share/translations/measurements_p19_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p19_es_ES.ts b/share/translations/measurements_p19_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p19_es_ES.ts +++ b/share/translations/measurements_p19_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p19_fi_FI.ts b/share/translations/measurements_p19_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p19_fi_FI.ts +++ b/share/translations/measurements_p19_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p19_he_IL.ts b/share/translations/measurements_p19_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p19_he_IL.ts +++ b/share/translations/measurements_p19_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p19_id_ID.ts b/share/translations/measurements_p19_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p19_id_ID.ts +++ b/share/translations/measurements_p19_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p19_it_IT.ts b/share/translations/measurements_p19_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p19_it_IT.ts +++ b/share/translations/measurements_p19_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p19_pt_BR.ts b/share/translations/measurements_p19_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p19_pt_BR.ts +++ b/share/translations/measurements_p19_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p19_uk_UA.ts b/share/translations/measurements_p19_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p19_uk_UA.ts +++ b/share/translations/measurements_p19_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p19_zh_CN.ts b/share/translations/measurements_p19_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p19_zh_CN.ts +++ b/share/translations/measurements_p19_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p1_cs_CZ.ts b/share/translations/measurements_p1_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p1_cs_CZ.ts +++ b/share/translations/measurements_p1_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p1_de_DE.ts b/share/translations/measurements_p1_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p1_de_DE.ts +++ b/share/translations/measurements_p1_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p1_es_ES.ts b/share/translations/measurements_p1_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p1_es_ES.ts +++ b/share/translations/measurements_p1_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p1_fi_FI.ts b/share/translations/measurements_p1_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p1_fi_FI.ts +++ b/share/translations/measurements_p1_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p1_he_IL.ts b/share/translations/measurements_p1_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p1_he_IL.ts +++ b/share/translations/measurements_p1_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p1_id_ID.ts b/share/translations/measurements_p1_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p1_id_ID.ts +++ b/share/translations/measurements_p1_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p1_it_IT.ts b/share/translations/measurements_p1_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p1_it_IT.ts +++ b/share/translations/measurements_p1_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p1_pt_BR.ts b/share/translations/measurements_p1_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p1_pt_BR.ts +++ b/share/translations/measurements_p1_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p1_uk_UA.ts b/share/translations/measurements_p1_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p1_uk_UA.ts +++ b/share/translations/measurements_p1_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p1_zh_CN.ts b/share/translations/measurements_p1_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p1_zh_CN.ts +++ b/share/translations/measurements_p1_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p20_cs_CZ.ts b/share/translations/measurements_p20_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p20_cs_CZ.ts +++ b/share/translations/measurements_p20_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p20_de_DE.ts b/share/translations/measurements_p20_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p20_de_DE.ts +++ b/share/translations/measurements_p20_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p20_es_ES.ts b/share/translations/measurements_p20_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p20_es_ES.ts +++ b/share/translations/measurements_p20_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p20_fi_FI.ts b/share/translations/measurements_p20_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p20_fi_FI.ts +++ b/share/translations/measurements_p20_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p20_he_IL.ts b/share/translations/measurements_p20_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p20_he_IL.ts +++ b/share/translations/measurements_p20_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p20_id_ID.ts b/share/translations/measurements_p20_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p20_id_ID.ts +++ b/share/translations/measurements_p20_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p20_it_IT.ts b/share/translations/measurements_p20_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p20_it_IT.ts +++ b/share/translations/measurements_p20_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p20_pt_BR.ts b/share/translations/measurements_p20_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p20_pt_BR.ts +++ b/share/translations/measurements_p20_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p20_uk_UA.ts b/share/translations/measurements_p20_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p20_uk_UA.ts +++ b/share/translations/measurements_p20_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p20_zh_CN.ts b/share/translations/measurements_p20_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p20_zh_CN.ts +++ b/share/translations/measurements_p20_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p21_cs_CZ.ts b/share/translations/measurements_p21_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p21_cs_CZ.ts +++ b/share/translations/measurements_p21_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p21_de_DE.ts b/share/translations/measurements_p21_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p21_de_DE.ts +++ b/share/translations/measurements_p21_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p21_es_ES.ts b/share/translations/measurements_p21_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p21_es_ES.ts +++ b/share/translations/measurements_p21_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p21_fi_FI.ts b/share/translations/measurements_p21_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p21_fi_FI.ts +++ b/share/translations/measurements_p21_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p21_he_IL.ts b/share/translations/measurements_p21_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p21_he_IL.ts +++ b/share/translations/measurements_p21_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p21_id_ID.ts b/share/translations/measurements_p21_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p21_id_ID.ts +++ b/share/translations/measurements_p21_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p21_it_IT.ts b/share/translations/measurements_p21_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p21_it_IT.ts +++ b/share/translations/measurements_p21_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p21_pt_BR.ts b/share/translations/measurements_p21_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p21_pt_BR.ts +++ b/share/translations/measurements_p21_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p21_uk_UA.ts b/share/translations/measurements_p21_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p21_uk_UA.ts +++ b/share/translations/measurements_p21_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p21_zh_CN.ts b/share/translations/measurements_p21_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p21_zh_CN.ts +++ b/share/translations/measurements_p21_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p22_cs_CZ.ts b/share/translations/measurements_p22_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p22_cs_CZ.ts +++ b/share/translations/measurements_p22_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p22_de_DE.ts b/share/translations/measurements_p22_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p22_de_DE.ts +++ b/share/translations/measurements_p22_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p22_es_ES.ts b/share/translations/measurements_p22_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p22_es_ES.ts +++ b/share/translations/measurements_p22_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p22_fi_FI.ts b/share/translations/measurements_p22_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p22_fi_FI.ts +++ b/share/translations/measurements_p22_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p22_he_IL.ts b/share/translations/measurements_p22_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p22_he_IL.ts +++ b/share/translations/measurements_p22_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p22_id_ID.ts b/share/translations/measurements_p22_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p22_id_ID.ts +++ b/share/translations/measurements_p22_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p22_it_IT.ts b/share/translations/measurements_p22_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p22_it_IT.ts +++ b/share/translations/measurements_p22_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p22_pt_BR.ts b/share/translations/measurements_p22_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p22_pt_BR.ts +++ b/share/translations/measurements_p22_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p22_uk_UA.ts b/share/translations/measurements_p22_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p22_uk_UA.ts +++ b/share/translations/measurements_p22_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p22_zh_CN.ts b/share/translations/measurements_p22_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p22_zh_CN.ts +++ b/share/translations/measurements_p22_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p23_cs_CZ.ts b/share/translations/measurements_p23_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p23_cs_CZ.ts +++ b/share/translations/measurements_p23_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p23_de_DE.ts b/share/translations/measurements_p23_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p23_de_DE.ts +++ b/share/translations/measurements_p23_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p23_es_ES.ts b/share/translations/measurements_p23_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p23_es_ES.ts +++ b/share/translations/measurements_p23_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p23_fi_FI.ts b/share/translations/measurements_p23_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p23_fi_FI.ts +++ b/share/translations/measurements_p23_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p23_he_IL.ts b/share/translations/measurements_p23_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p23_he_IL.ts +++ b/share/translations/measurements_p23_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p23_id_ID.ts b/share/translations/measurements_p23_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p23_id_ID.ts +++ b/share/translations/measurements_p23_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p23_it_IT.ts b/share/translations/measurements_p23_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p23_it_IT.ts +++ b/share/translations/measurements_p23_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p23_pt_BR.ts b/share/translations/measurements_p23_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p23_pt_BR.ts +++ b/share/translations/measurements_p23_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p23_uk_UA.ts b/share/translations/measurements_p23_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p23_uk_UA.ts +++ b/share/translations/measurements_p23_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p23_zh_CN.ts b/share/translations/measurements_p23_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p23_zh_CN.ts +++ b/share/translations/measurements_p23_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p24_cs_CZ.ts b/share/translations/measurements_p24_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p24_cs_CZ.ts +++ b/share/translations/measurements_p24_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p24_de_DE.ts b/share/translations/measurements_p24_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p24_de_DE.ts +++ b/share/translations/measurements_p24_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p24_es_ES.ts b/share/translations/measurements_p24_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p24_es_ES.ts +++ b/share/translations/measurements_p24_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p24_fi_FI.ts b/share/translations/measurements_p24_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p24_fi_FI.ts +++ b/share/translations/measurements_p24_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p24_he_IL.ts b/share/translations/measurements_p24_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p24_he_IL.ts +++ b/share/translations/measurements_p24_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p24_id_ID.ts b/share/translations/measurements_p24_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p24_id_ID.ts +++ b/share/translations/measurements_p24_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p24_it_IT.ts b/share/translations/measurements_p24_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p24_it_IT.ts +++ b/share/translations/measurements_p24_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p24_pt_BR.ts b/share/translations/measurements_p24_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p24_pt_BR.ts +++ b/share/translations/measurements_p24_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p24_uk_UA.ts b/share/translations/measurements_p24_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p24_uk_UA.ts +++ b/share/translations/measurements_p24_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p24_zh_CN.ts b/share/translations/measurements_p24_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p24_zh_CN.ts +++ b/share/translations/measurements_p24_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p25_cs_CZ.ts b/share/translations/measurements_p25_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p25_cs_CZ.ts +++ b/share/translations/measurements_p25_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p25_de_DE.ts b/share/translations/measurements_p25_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p25_de_DE.ts +++ b/share/translations/measurements_p25_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p25_es_ES.ts b/share/translations/measurements_p25_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p25_es_ES.ts +++ b/share/translations/measurements_p25_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p25_fi_FI.ts b/share/translations/measurements_p25_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p25_fi_FI.ts +++ b/share/translations/measurements_p25_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p25_he_IL.ts b/share/translations/measurements_p25_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p25_he_IL.ts +++ b/share/translations/measurements_p25_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p25_id_ID.ts b/share/translations/measurements_p25_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p25_id_ID.ts +++ b/share/translations/measurements_p25_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p25_it_IT.ts b/share/translations/measurements_p25_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p25_it_IT.ts +++ b/share/translations/measurements_p25_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p25_pt_BR.ts b/share/translations/measurements_p25_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p25_pt_BR.ts +++ b/share/translations/measurements_p25_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p25_uk_UA.ts b/share/translations/measurements_p25_uk_UA.ts index 5534dac51..cc1aec3cc 100644 --- a/share/translations/measurements_p25_uk_UA.ts +++ b/share/translations/measurements_p25_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота щиколотки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p25_zh_CN.ts b/share/translations/measurements_p25_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p25_zh_CN.ts +++ b/share/translations/measurements_p25_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p26_cs_CZ.ts b/share/translations/measurements_p26_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p26_cs_CZ.ts +++ b/share/translations/measurements_p26_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p26_de_DE.ts b/share/translations/measurements_p26_de_DE.ts index 34c68a6cc..bde39b4ea 100644 --- a/share/translations/measurements_p26_de_DE.ts +++ b/share/translations/measurements_p26_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p26_es_ES.ts b/share/translations/measurements_p26_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p26_es_ES.ts +++ b/share/translations/measurements_p26_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p26_fi_FI.ts b/share/translations/measurements_p26_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p26_fi_FI.ts +++ b/share/translations/measurements_p26_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p26_he_IL.ts b/share/translations/measurements_p26_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p26_he_IL.ts +++ b/share/translations/measurements_p26_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p26_id_ID.ts b/share/translations/measurements_p26_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p26_id_ID.ts +++ b/share/translations/measurements_p26_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p26_it_IT.ts b/share/translations/measurements_p26_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p26_it_IT.ts +++ b/share/translations/measurements_p26_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p26_pt_BR.ts b/share/translations/measurements_p26_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p26_pt_BR.ts +++ b/share/translations/measurements_p26_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p26_uk_UA.ts b/share/translations/measurements_p26_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p26_uk_UA.ts +++ b/share/translations/measurements_p26_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p26_zh_CN.ts b/share/translations/measurements_p26_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p26_zh_CN.ts +++ b/share/translations/measurements_p26_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p27_cs_CZ.ts b/share/translations/measurements_p27_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p27_cs_CZ.ts +++ b/share/translations/measurements_p27_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p27_de_DE.ts b/share/translations/measurements_p27_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p27_de_DE.ts +++ b/share/translations/measurements_p27_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p27_es_ES.ts b/share/translations/measurements_p27_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p27_es_ES.ts +++ b/share/translations/measurements_p27_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p27_fi_FI.ts b/share/translations/measurements_p27_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p27_fi_FI.ts +++ b/share/translations/measurements_p27_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p27_he_IL.ts b/share/translations/measurements_p27_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p27_he_IL.ts +++ b/share/translations/measurements_p27_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p27_id_ID.ts b/share/translations/measurements_p27_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p27_id_ID.ts +++ b/share/translations/measurements_p27_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p27_it_IT.ts b/share/translations/measurements_p27_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p27_it_IT.ts +++ b/share/translations/measurements_p27_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p27_pt_BR.ts b/share/translations/measurements_p27_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p27_pt_BR.ts +++ b/share/translations/measurements_p27_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p27_uk_UA.ts b/share/translations/measurements_p27_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p27_uk_UA.ts +++ b/share/translations/measurements_p27_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p27_zh_CN.ts b/share/translations/measurements_p27_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p27_zh_CN.ts +++ b/share/translations/measurements_p27_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p28_cs_CZ.ts b/share/translations/measurements_p28_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p28_cs_CZ.ts +++ b/share/translations/measurements_p28_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p28_de_DE.ts b/share/translations/measurements_p28_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p28_de_DE.ts +++ b/share/translations/measurements_p28_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p28_es_ES.ts b/share/translations/measurements_p28_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p28_es_ES.ts +++ b/share/translations/measurements_p28_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p28_fi_FI.ts b/share/translations/measurements_p28_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p28_fi_FI.ts +++ b/share/translations/measurements_p28_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p28_he_IL.ts b/share/translations/measurements_p28_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p28_he_IL.ts +++ b/share/translations/measurements_p28_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p28_id_ID.ts b/share/translations/measurements_p28_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p28_id_ID.ts +++ b/share/translations/measurements_p28_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p28_it_IT.ts b/share/translations/measurements_p28_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p28_it_IT.ts +++ b/share/translations/measurements_p28_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p28_pt_BR.ts b/share/translations/measurements_p28_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p28_pt_BR.ts +++ b/share/translations/measurements_p28_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p28_uk_UA.ts b/share/translations/measurements_p28_uk_UA.ts index 5534dac51..cc1aec3cc 100644 --- a/share/translations/measurements_p28_uk_UA.ts +++ b/share/translations/measurements_p28_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота щиколотки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p28_zh_CN.ts b/share/translations/measurements_p28_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p28_zh_CN.ts +++ b/share/translations/measurements_p28_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p29_cs_CZ.ts b/share/translations/measurements_p29_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p29_cs_CZ.ts +++ b/share/translations/measurements_p29_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p29_de_DE.ts b/share/translations/measurements_p29_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p29_de_DE.ts +++ b/share/translations/measurements_p29_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p29_es_ES.ts b/share/translations/measurements_p29_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p29_es_ES.ts +++ b/share/translations/measurements_p29_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p29_fi_FI.ts b/share/translations/measurements_p29_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p29_fi_FI.ts +++ b/share/translations/measurements_p29_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p29_he_IL.ts b/share/translations/measurements_p29_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p29_he_IL.ts +++ b/share/translations/measurements_p29_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p29_id_ID.ts b/share/translations/measurements_p29_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p29_id_ID.ts +++ b/share/translations/measurements_p29_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p29_it_IT.ts b/share/translations/measurements_p29_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p29_it_IT.ts +++ b/share/translations/measurements_p29_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p29_pt_BR.ts b/share/translations/measurements_p29_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p29_pt_BR.ts +++ b/share/translations/measurements_p29_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p29_uk_UA.ts b/share/translations/measurements_p29_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p29_uk_UA.ts +++ b/share/translations/measurements_p29_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p29_zh_CN.ts b/share/translations/measurements_p29_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p29_zh_CN.ts +++ b/share/translations/measurements_p29_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p2_cs_CZ.ts b/share/translations/measurements_p2_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p2_cs_CZ.ts +++ b/share/translations/measurements_p2_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p2_de_DE.ts b/share/translations/measurements_p2_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p2_de_DE.ts +++ b/share/translations/measurements_p2_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p2_es_ES.ts b/share/translations/measurements_p2_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p2_es_ES.ts +++ b/share/translations/measurements_p2_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p2_fi_FI.ts b/share/translations/measurements_p2_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p2_fi_FI.ts +++ b/share/translations/measurements_p2_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p2_he_IL.ts b/share/translations/measurements_p2_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p2_he_IL.ts +++ b/share/translations/measurements_p2_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p2_id_ID.ts b/share/translations/measurements_p2_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p2_id_ID.ts +++ b/share/translations/measurements_p2_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p2_it_IT.ts b/share/translations/measurements_p2_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p2_it_IT.ts +++ b/share/translations/measurements_p2_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p2_pt_BR.ts b/share/translations/measurements_p2_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p2_pt_BR.ts +++ b/share/translations/measurements_p2_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p2_uk_UA.ts b/share/translations/measurements_p2_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p2_uk_UA.ts +++ b/share/translations/measurements_p2_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p2_zh_CN.ts b/share/translations/measurements_p2_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p2_zh_CN.ts +++ b/share/translations/measurements_p2_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p30_cs_CZ.ts b/share/translations/measurements_p30_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p30_cs_CZ.ts +++ b/share/translations/measurements_p30_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p30_de_DE.ts b/share/translations/measurements_p30_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p30_de_DE.ts +++ b/share/translations/measurements_p30_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p30_es_ES.ts b/share/translations/measurements_p30_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p30_es_ES.ts +++ b/share/translations/measurements_p30_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p30_fi_FI.ts b/share/translations/measurements_p30_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p30_fi_FI.ts +++ b/share/translations/measurements_p30_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p30_he_IL.ts b/share/translations/measurements_p30_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p30_he_IL.ts +++ b/share/translations/measurements_p30_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p30_id_ID.ts b/share/translations/measurements_p30_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p30_id_ID.ts +++ b/share/translations/measurements_p30_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p30_it_IT.ts b/share/translations/measurements_p30_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p30_it_IT.ts +++ b/share/translations/measurements_p30_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p30_pt_BR.ts b/share/translations/measurements_p30_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p30_pt_BR.ts +++ b/share/translations/measurements_p30_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p30_uk_UA.ts b/share/translations/measurements_p30_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p30_uk_UA.ts +++ b/share/translations/measurements_p30_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p30_zh_CN.ts b/share/translations/measurements_p30_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p30_zh_CN.ts +++ b/share/translations/measurements_p30_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p31_cs_CZ.ts b/share/translations/measurements_p31_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p31_cs_CZ.ts +++ b/share/translations/measurements_p31_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p31_de_DE.ts b/share/translations/measurements_p31_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p31_de_DE.ts +++ b/share/translations/measurements_p31_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p31_es_ES.ts b/share/translations/measurements_p31_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p31_es_ES.ts +++ b/share/translations/measurements_p31_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p31_fi_FI.ts b/share/translations/measurements_p31_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p31_fi_FI.ts +++ b/share/translations/measurements_p31_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p31_he_IL.ts b/share/translations/measurements_p31_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p31_he_IL.ts +++ b/share/translations/measurements_p31_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p31_id_ID.ts b/share/translations/measurements_p31_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p31_id_ID.ts +++ b/share/translations/measurements_p31_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p31_it_IT.ts b/share/translations/measurements_p31_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p31_it_IT.ts +++ b/share/translations/measurements_p31_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p31_pt_BR.ts b/share/translations/measurements_p31_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p31_pt_BR.ts +++ b/share/translations/measurements_p31_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p31_uk_UA.ts b/share/translations/measurements_p31_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p31_uk_UA.ts +++ b/share/translations/measurements_p31_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p31_zh_CN.ts b/share/translations/measurements_p31_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p31_zh_CN.ts +++ b/share/translations/measurements_p31_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p32_cs_CZ.ts b/share/translations/measurements_p32_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p32_cs_CZ.ts +++ b/share/translations/measurements_p32_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p32_de_DE.ts b/share/translations/measurements_p32_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p32_de_DE.ts +++ b/share/translations/measurements_p32_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p32_es_ES.ts b/share/translations/measurements_p32_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p32_es_ES.ts +++ b/share/translations/measurements_p32_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p32_fi_FI.ts b/share/translations/measurements_p32_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p32_fi_FI.ts +++ b/share/translations/measurements_p32_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p32_he_IL.ts b/share/translations/measurements_p32_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p32_he_IL.ts +++ b/share/translations/measurements_p32_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p32_id_ID.ts b/share/translations/measurements_p32_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p32_id_ID.ts +++ b/share/translations/measurements_p32_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p32_it_IT.ts b/share/translations/measurements_p32_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p32_it_IT.ts +++ b/share/translations/measurements_p32_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p32_pt_BR.ts b/share/translations/measurements_p32_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p32_pt_BR.ts +++ b/share/translations/measurements_p32_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p32_uk_UA.ts b/share/translations/measurements_p32_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p32_uk_UA.ts +++ b/share/translations/measurements_p32_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p32_zh_CN.ts b/share/translations/measurements_p32_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p32_zh_CN.ts +++ b/share/translations/measurements_p32_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p33_cs_CZ.ts b/share/translations/measurements_p33_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p33_cs_CZ.ts +++ b/share/translations/measurements_p33_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p33_de_DE.ts b/share/translations/measurements_p33_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p33_de_DE.ts +++ b/share/translations/measurements_p33_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p33_es_ES.ts b/share/translations/measurements_p33_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p33_es_ES.ts +++ b/share/translations/measurements_p33_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p33_fi_FI.ts b/share/translations/measurements_p33_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p33_fi_FI.ts +++ b/share/translations/measurements_p33_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p33_he_IL.ts b/share/translations/measurements_p33_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p33_he_IL.ts +++ b/share/translations/measurements_p33_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p33_id_ID.ts b/share/translations/measurements_p33_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p33_id_ID.ts +++ b/share/translations/measurements_p33_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p33_it_IT.ts b/share/translations/measurements_p33_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p33_it_IT.ts +++ b/share/translations/measurements_p33_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p33_pt_BR.ts b/share/translations/measurements_p33_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p33_pt_BR.ts +++ b/share/translations/measurements_p33_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p33_uk_UA.ts b/share/translations/measurements_p33_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p33_uk_UA.ts +++ b/share/translations/measurements_p33_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p33_zh_CN.ts b/share/translations/measurements_p33_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p33_zh_CN.ts +++ b/share/translations/measurements_p33_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p34_cs_CZ.ts b/share/translations/measurements_p34_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p34_cs_CZ.ts +++ b/share/translations/measurements_p34_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p34_de_DE.ts b/share/translations/measurements_p34_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p34_de_DE.ts +++ b/share/translations/measurements_p34_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p34_es_ES.ts b/share/translations/measurements_p34_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p34_es_ES.ts +++ b/share/translations/measurements_p34_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p34_fi_FI.ts b/share/translations/measurements_p34_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p34_fi_FI.ts +++ b/share/translations/measurements_p34_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p34_he_IL.ts b/share/translations/measurements_p34_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p34_he_IL.ts +++ b/share/translations/measurements_p34_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p34_id_ID.ts b/share/translations/measurements_p34_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p34_id_ID.ts +++ b/share/translations/measurements_p34_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p34_it_IT.ts b/share/translations/measurements_p34_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p34_it_IT.ts +++ b/share/translations/measurements_p34_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p34_pt_BR.ts b/share/translations/measurements_p34_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p34_pt_BR.ts +++ b/share/translations/measurements_p34_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p34_uk_UA.ts b/share/translations/measurements_p34_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p34_uk_UA.ts +++ b/share/translations/measurements_p34_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p34_zh_CN.ts b/share/translations/measurements_p34_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p34_zh_CN.ts +++ b/share/translations/measurements_p34_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p35_cs_CZ.ts b/share/translations/measurements_p35_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p35_cs_CZ.ts +++ b/share/translations/measurements_p35_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p35_de_DE.ts b/share/translations/measurements_p35_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p35_de_DE.ts +++ b/share/translations/measurements_p35_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p35_es_ES.ts b/share/translations/measurements_p35_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p35_es_ES.ts +++ b/share/translations/measurements_p35_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p35_fi_FI.ts b/share/translations/measurements_p35_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p35_fi_FI.ts +++ b/share/translations/measurements_p35_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p35_he_IL.ts b/share/translations/measurements_p35_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p35_he_IL.ts +++ b/share/translations/measurements_p35_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p35_id_ID.ts b/share/translations/measurements_p35_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p35_id_ID.ts +++ b/share/translations/measurements_p35_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p35_it_IT.ts b/share/translations/measurements_p35_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p35_it_IT.ts +++ b/share/translations/measurements_p35_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p35_pt_BR.ts b/share/translations/measurements_p35_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p35_pt_BR.ts +++ b/share/translations/measurements_p35_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p35_uk_UA.ts b/share/translations/measurements_p35_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p35_uk_UA.ts +++ b/share/translations/measurements_p35_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p35_zh_CN.ts b/share/translations/measurements_p35_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p35_zh_CN.ts +++ b/share/translations/measurements_p35_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p36_cs_CZ.ts b/share/translations/measurements_p36_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p36_cs_CZ.ts +++ b/share/translations/measurements_p36_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p36_de_DE.ts b/share/translations/measurements_p36_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p36_de_DE.ts +++ b/share/translations/measurements_p36_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p36_es_ES.ts b/share/translations/measurements_p36_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p36_es_ES.ts +++ b/share/translations/measurements_p36_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p36_fi_FI.ts b/share/translations/measurements_p36_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p36_fi_FI.ts +++ b/share/translations/measurements_p36_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p36_he_IL.ts b/share/translations/measurements_p36_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p36_he_IL.ts +++ b/share/translations/measurements_p36_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p36_id_ID.ts b/share/translations/measurements_p36_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p36_id_ID.ts +++ b/share/translations/measurements_p36_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p36_it_IT.ts b/share/translations/measurements_p36_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p36_it_IT.ts +++ b/share/translations/measurements_p36_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p36_pt_BR.ts b/share/translations/measurements_p36_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p36_pt_BR.ts +++ b/share/translations/measurements_p36_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p36_uk_UA.ts b/share/translations/measurements_p36_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p36_uk_UA.ts +++ b/share/translations/measurements_p36_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p36_zh_CN.ts b/share/translations/measurements_p36_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p36_zh_CN.ts +++ b/share/translations/measurements_p36_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p37_cs_CZ.ts b/share/translations/measurements_p37_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p37_cs_CZ.ts +++ b/share/translations/measurements_p37_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p37_de_DE.ts b/share/translations/measurements_p37_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p37_de_DE.ts +++ b/share/translations/measurements_p37_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p37_es_ES.ts b/share/translations/measurements_p37_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p37_es_ES.ts +++ b/share/translations/measurements_p37_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p37_fi_FI.ts b/share/translations/measurements_p37_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p37_fi_FI.ts +++ b/share/translations/measurements_p37_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p37_he_IL.ts b/share/translations/measurements_p37_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p37_he_IL.ts +++ b/share/translations/measurements_p37_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p37_id_ID.ts b/share/translations/measurements_p37_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p37_id_ID.ts +++ b/share/translations/measurements_p37_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p37_it_IT.ts b/share/translations/measurements_p37_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p37_it_IT.ts +++ b/share/translations/measurements_p37_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p37_pt_BR.ts b/share/translations/measurements_p37_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p37_pt_BR.ts +++ b/share/translations/measurements_p37_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p37_uk_UA.ts b/share/translations/measurements_p37_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p37_uk_UA.ts +++ b/share/translations/measurements_p37_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p37_zh_CN.ts b/share/translations/measurements_p37_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p37_zh_CN.ts +++ b/share/translations/measurements_p37_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p38_cs_CZ.ts b/share/translations/measurements_p38_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p38_cs_CZ.ts +++ b/share/translations/measurements_p38_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p38_de_DE.ts b/share/translations/measurements_p38_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p38_de_DE.ts +++ b/share/translations/measurements_p38_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p38_es_ES.ts b/share/translations/measurements_p38_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p38_es_ES.ts +++ b/share/translations/measurements_p38_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p38_fi_FI.ts b/share/translations/measurements_p38_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p38_fi_FI.ts +++ b/share/translations/measurements_p38_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p38_he_IL.ts b/share/translations/measurements_p38_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p38_he_IL.ts +++ b/share/translations/measurements_p38_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p38_id_ID.ts b/share/translations/measurements_p38_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p38_id_ID.ts +++ b/share/translations/measurements_p38_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p38_it_IT.ts b/share/translations/measurements_p38_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p38_it_IT.ts +++ b/share/translations/measurements_p38_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p38_pt_BR.ts b/share/translations/measurements_p38_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p38_pt_BR.ts +++ b/share/translations/measurements_p38_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p38_uk_UA.ts b/share/translations/measurements_p38_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p38_uk_UA.ts +++ b/share/translations/measurements_p38_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p38_zh_CN.ts b/share/translations/measurements_p38_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p38_zh_CN.ts +++ b/share/translations/measurements_p38_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p39_cs_CZ.ts b/share/translations/measurements_p39_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p39_cs_CZ.ts +++ b/share/translations/measurements_p39_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p39_de_DE.ts b/share/translations/measurements_p39_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p39_de_DE.ts +++ b/share/translations/measurements_p39_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p39_es_ES.ts b/share/translations/measurements_p39_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p39_es_ES.ts +++ b/share/translations/measurements_p39_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p39_fi_FI.ts b/share/translations/measurements_p39_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p39_fi_FI.ts +++ b/share/translations/measurements_p39_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p39_he_IL.ts b/share/translations/measurements_p39_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p39_he_IL.ts +++ b/share/translations/measurements_p39_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p39_id_ID.ts b/share/translations/measurements_p39_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p39_id_ID.ts +++ b/share/translations/measurements_p39_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p39_it_IT.ts b/share/translations/measurements_p39_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p39_it_IT.ts +++ b/share/translations/measurements_p39_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p39_pt_BR.ts b/share/translations/measurements_p39_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p39_pt_BR.ts +++ b/share/translations/measurements_p39_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p39_uk_UA.ts b/share/translations/measurements_p39_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p39_uk_UA.ts +++ b/share/translations/measurements_p39_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p39_zh_CN.ts b/share/translations/measurements_p39_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p39_zh_CN.ts +++ b/share/translations/measurements_p39_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p3_cs_CZ.ts b/share/translations/measurements_p3_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p3_cs_CZ.ts +++ b/share/translations/measurements_p3_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p3_de_DE.ts b/share/translations/measurements_p3_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p3_de_DE.ts +++ b/share/translations/measurements_p3_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p3_es_ES.ts b/share/translations/measurements_p3_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p3_es_ES.ts +++ b/share/translations/measurements_p3_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p3_fi_FI.ts b/share/translations/measurements_p3_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p3_fi_FI.ts +++ b/share/translations/measurements_p3_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p3_he_IL.ts b/share/translations/measurements_p3_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p3_he_IL.ts +++ b/share/translations/measurements_p3_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p3_id_ID.ts b/share/translations/measurements_p3_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p3_id_ID.ts +++ b/share/translations/measurements_p3_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p3_it_IT.ts b/share/translations/measurements_p3_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p3_it_IT.ts +++ b/share/translations/measurements_p3_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p3_pt_BR.ts b/share/translations/measurements_p3_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p3_pt_BR.ts +++ b/share/translations/measurements_p3_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p3_uk_UA.ts b/share/translations/measurements_p3_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p3_uk_UA.ts +++ b/share/translations/measurements_p3_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p3_zh_CN.ts b/share/translations/measurements_p3_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p3_zh_CN.ts +++ b/share/translations/measurements_p3_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p40_cs_CZ.ts b/share/translations/measurements_p40_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p40_cs_CZ.ts +++ b/share/translations/measurements_p40_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p40_de_DE.ts b/share/translations/measurements_p40_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p40_de_DE.ts +++ b/share/translations/measurements_p40_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p40_es_ES.ts b/share/translations/measurements_p40_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p40_es_ES.ts +++ b/share/translations/measurements_p40_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p40_fi_FI.ts b/share/translations/measurements_p40_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p40_fi_FI.ts +++ b/share/translations/measurements_p40_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p40_he_IL.ts b/share/translations/measurements_p40_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p40_he_IL.ts +++ b/share/translations/measurements_p40_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p40_id_ID.ts b/share/translations/measurements_p40_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p40_id_ID.ts +++ b/share/translations/measurements_p40_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p40_it_IT.ts b/share/translations/measurements_p40_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p40_it_IT.ts +++ b/share/translations/measurements_p40_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p40_pt_BR.ts b/share/translations/measurements_p40_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p40_pt_BR.ts +++ b/share/translations/measurements_p40_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p40_uk_UA.ts b/share/translations/measurements_p40_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p40_uk_UA.ts +++ b/share/translations/measurements_p40_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p40_zh_CN.ts b/share/translations/measurements_p40_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p40_zh_CN.ts +++ b/share/translations/measurements_p40_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p41_cs_CZ.ts b/share/translations/measurements_p41_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p41_cs_CZ.ts +++ b/share/translations/measurements_p41_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p41_de_DE.ts b/share/translations/measurements_p41_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p41_de_DE.ts +++ b/share/translations/measurements_p41_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p41_es_ES.ts b/share/translations/measurements_p41_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p41_es_ES.ts +++ b/share/translations/measurements_p41_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p41_fi_FI.ts b/share/translations/measurements_p41_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p41_fi_FI.ts +++ b/share/translations/measurements_p41_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p41_he_IL.ts b/share/translations/measurements_p41_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p41_he_IL.ts +++ b/share/translations/measurements_p41_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p41_id_ID.ts b/share/translations/measurements_p41_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p41_id_ID.ts +++ b/share/translations/measurements_p41_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p41_it_IT.ts b/share/translations/measurements_p41_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p41_it_IT.ts +++ b/share/translations/measurements_p41_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p41_pt_BR.ts b/share/translations/measurements_p41_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p41_pt_BR.ts +++ b/share/translations/measurements_p41_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p41_uk_UA.ts b/share/translations/measurements_p41_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p41_uk_UA.ts +++ b/share/translations/measurements_p41_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p41_zh_CN.ts b/share/translations/measurements_p41_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p41_zh_CN.ts +++ b/share/translations/measurements_p41_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p42_cs_CZ.ts b/share/translations/measurements_p42_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p42_cs_CZ.ts +++ b/share/translations/measurements_p42_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p42_de_DE.ts b/share/translations/measurements_p42_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p42_de_DE.ts +++ b/share/translations/measurements_p42_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p42_es_ES.ts b/share/translations/measurements_p42_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p42_es_ES.ts +++ b/share/translations/measurements_p42_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p42_fi_FI.ts b/share/translations/measurements_p42_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p42_fi_FI.ts +++ b/share/translations/measurements_p42_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p42_he_IL.ts b/share/translations/measurements_p42_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p42_he_IL.ts +++ b/share/translations/measurements_p42_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p42_id_ID.ts b/share/translations/measurements_p42_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p42_id_ID.ts +++ b/share/translations/measurements_p42_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p42_it_IT.ts b/share/translations/measurements_p42_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p42_it_IT.ts +++ b/share/translations/measurements_p42_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p42_pt_BR.ts b/share/translations/measurements_p42_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p42_pt_BR.ts +++ b/share/translations/measurements_p42_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p42_uk_UA.ts b/share/translations/measurements_p42_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p42_uk_UA.ts +++ b/share/translations/measurements_p42_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p42_zh_CN.ts b/share/translations/measurements_p42_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p42_zh_CN.ts +++ b/share/translations/measurements_p42_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p43_cs_CZ.ts b/share/translations/measurements_p43_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p43_cs_CZ.ts +++ b/share/translations/measurements_p43_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p43_de_DE.ts b/share/translations/measurements_p43_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p43_de_DE.ts +++ b/share/translations/measurements_p43_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p43_es_ES.ts b/share/translations/measurements_p43_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p43_es_ES.ts +++ b/share/translations/measurements_p43_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p43_fi_FI.ts b/share/translations/measurements_p43_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p43_fi_FI.ts +++ b/share/translations/measurements_p43_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p43_he_IL.ts b/share/translations/measurements_p43_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p43_he_IL.ts +++ b/share/translations/measurements_p43_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p43_id_ID.ts b/share/translations/measurements_p43_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p43_id_ID.ts +++ b/share/translations/measurements_p43_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p43_it_IT.ts b/share/translations/measurements_p43_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p43_it_IT.ts +++ b/share/translations/measurements_p43_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p43_pt_BR.ts b/share/translations/measurements_p43_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p43_pt_BR.ts +++ b/share/translations/measurements_p43_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p43_uk_UA.ts b/share/translations/measurements_p43_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p43_uk_UA.ts +++ b/share/translations/measurements_p43_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p43_zh_CN.ts b/share/translations/measurements_p43_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p43_zh_CN.ts +++ b/share/translations/measurements_p43_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p44_cs_CZ.ts b/share/translations/measurements_p44_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p44_cs_CZ.ts +++ b/share/translations/measurements_p44_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p44_de_DE.ts b/share/translations/measurements_p44_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p44_de_DE.ts +++ b/share/translations/measurements_p44_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p44_es_ES.ts b/share/translations/measurements_p44_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p44_es_ES.ts +++ b/share/translations/measurements_p44_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p44_fi_FI.ts b/share/translations/measurements_p44_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p44_fi_FI.ts +++ b/share/translations/measurements_p44_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p44_he_IL.ts b/share/translations/measurements_p44_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p44_he_IL.ts +++ b/share/translations/measurements_p44_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p44_id_ID.ts b/share/translations/measurements_p44_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p44_id_ID.ts +++ b/share/translations/measurements_p44_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p44_it_IT.ts b/share/translations/measurements_p44_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p44_it_IT.ts +++ b/share/translations/measurements_p44_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p44_pt_BR.ts b/share/translations/measurements_p44_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p44_pt_BR.ts +++ b/share/translations/measurements_p44_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p44_uk_UA.ts b/share/translations/measurements_p44_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p44_uk_UA.ts +++ b/share/translations/measurements_p44_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p44_zh_CN.ts b/share/translations/measurements_p44_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p44_zh_CN.ts +++ b/share/translations/measurements_p44_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p45_cs_CZ.ts b/share/translations/measurements_p45_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p45_cs_CZ.ts +++ b/share/translations/measurements_p45_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p45_de_DE.ts b/share/translations/measurements_p45_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p45_de_DE.ts +++ b/share/translations/measurements_p45_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p45_es_ES.ts b/share/translations/measurements_p45_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p45_es_ES.ts +++ b/share/translations/measurements_p45_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p45_fi_FI.ts b/share/translations/measurements_p45_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p45_fi_FI.ts +++ b/share/translations/measurements_p45_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p45_he_IL.ts b/share/translations/measurements_p45_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p45_he_IL.ts +++ b/share/translations/measurements_p45_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p45_id_ID.ts b/share/translations/measurements_p45_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p45_id_ID.ts +++ b/share/translations/measurements_p45_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p45_it_IT.ts b/share/translations/measurements_p45_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p45_it_IT.ts +++ b/share/translations/measurements_p45_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p45_pt_BR.ts b/share/translations/measurements_p45_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p45_pt_BR.ts +++ b/share/translations/measurements_p45_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p45_uk_UA.ts b/share/translations/measurements_p45_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p45_uk_UA.ts +++ b/share/translations/measurements_p45_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p45_zh_CN.ts b/share/translations/measurements_p45_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p45_zh_CN.ts +++ b/share/translations/measurements_p45_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p46_cs_CZ.ts b/share/translations/measurements_p46_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p46_cs_CZ.ts +++ b/share/translations/measurements_p46_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p46_de_DE.ts b/share/translations/measurements_p46_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p46_de_DE.ts +++ b/share/translations/measurements_p46_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p46_es_ES.ts b/share/translations/measurements_p46_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p46_es_ES.ts +++ b/share/translations/measurements_p46_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p46_fi_FI.ts b/share/translations/measurements_p46_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p46_fi_FI.ts +++ b/share/translations/measurements_p46_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p46_he_IL.ts b/share/translations/measurements_p46_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p46_he_IL.ts +++ b/share/translations/measurements_p46_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p46_id_ID.ts b/share/translations/measurements_p46_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p46_id_ID.ts +++ b/share/translations/measurements_p46_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p46_it_IT.ts b/share/translations/measurements_p46_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p46_it_IT.ts +++ b/share/translations/measurements_p46_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p46_pt_BR.ts b/share/translations/measurements_p46_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p46_pt_BR.ts +++ b/share/translations/measurements_p46_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p46_uk_UA.ts b/share/translations/measurements_p46_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p46_uk_UA.ts +++ b/share/translations/measurements_p46_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p46_zh_CN.ts b/share/translations/measurements_p46_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p46_zh_CN.ts +++ b/share/translations/measurements_p46_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p47_cs_CZ.ts b/share/translations/measurements_p47_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p47_cs_CZ.ts +++ b/share/translations/measurements_p47_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p47_de_DE.ts b/share/translations/measurements_p47_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p47_de_DE.ts +++ b/share/translations/measurements_p47_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p47_es_ES.ts b/share/translations/measurements_p47_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p47_es_ES.ts +++ b/share/translations/measurements_p47_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p47_fi_FI.ts b/share/translations/measurements_p47_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p47_fi_FI.ts +++ b/share/translations/measurements_p47_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p47_he_IL.ts b/share/translations/measurements_p47_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p47_he_IL.ts +++ b/share/translations/measurements_p47_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p47_id_ID.ts b/share/translations/measurements_p47_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p47_id_ID.ts +++ b/share/translations/measurements_p47_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p47_it_IT.ts b/share/translations/measurements_p47_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p47_it_IT.ts +++ b/share/translations/measurements_p47_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p47_pt_BR.ts b/share/translations/measurements_p47_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p47_pt_BR.ts +++ b/share/translations/measurements_p47_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p47_uk_UA.ts b/share/translations/measurements_p47_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p47_uk_UA.ts +++ b/share/translations/measurements_p47_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p47_zh_CN.ts b/share/translations/measurements_p47_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p47_zh_CN.ts +++ b/share/translations/measurements_p47_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p48_cs_CZ.ts b/share/translations/measurements_p48_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p48_cs_CZ.ts +++ b/share/translations/measurements_p48_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p48_de_DE.ts b/share/translations/measurements_p48_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p48_de_DE.ts +++ b/share/translations/measurements_p48_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p48_es_ES.ts b/share/translations/measurements_p48_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p48_es_ES.ts +++ b/share/translations/measurements_p48_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p48_fi_FI.ts b/share/translations/measurements_p48_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p48_fi_FI.ts +++ b/share/translations/measurements_p48_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p48_he_IL.ts b/share/translations/measurements_p48_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p48_he_IL.ts +++ b/share/translations/measurements_p48_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p48_id_ID.ts b/share/translations/measurements_p48_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p48_id_ID.ts +++ b/share/translations/measurements_p48_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p48_it_IT.ts b/share/translations/measurements_p48_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p48_it_IT.ts +++ b/share/translations/measurements_p48_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p48_pt_BR.ts b/share/translations/measurements_p48_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p48_pt_BR.ts +++ b/share/translations/measurements_p48_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p48_uk_UA.ts b/share/translations/measurements_p48_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p48_uk_UA.ts +++ b/share/translations/measurements_p48_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p48_zh_CN.ts b/share/translations/measurements_p48_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p48_zh_CN.ts +++ b/share/translations/measurements_p48_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p49_cs_CZ.ts b/share/translations/measurements_p49_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p49_cs_CZ.ts +++ b/share/translations/measurements_p49_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p49_de_DE.ts b/share/translations/measurements_p49_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p49_de_DE.ts +++ b/share/translations/measurements_p49_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p49_es_ES.ts b/share/translations/measurements_p49_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p49_es_ES.ts +++ b/share/translations/measurements_p49_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p49_fi_FI.ts b/share/translations/measurements_p49_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p49_fi_FI.ts +++ b/share/translations/measurements_p49_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p49_he_IL.ts b/share/translations/measurements_p49_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p49_he_IL.ts +++ b/share/translations/measurements_p49_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p49_id_ID.ts b/share/translations/measurements_p49_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p49_id_ID.ts +++ b/share/translations/measurements_p49_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p49_it_IT.ts b/share/translations/measurements_p49_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p49_it_IT.ts +++ b/share/translations/measurements_p49_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p49_pt_BR.ts b/share/translations/measurements_p49_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p49_pt_BR.ts +++ b/share/translations/measurements_p49_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p49_uk_UA.ts b/share/translations/measurements_p49_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p49_uk_UA.ts +++ b/share/translations/measurements_p49_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p49_zh_CN.ts b/share/translations/measurements_p49_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p49_zh_CN.ts +++ b/share/translations/measurements_p49_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p4_cs_CZ.ts b/share/translations/measurements_p4_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p4_cs_CZ.ts +++ b/share/translations/measurements_p4_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p4_de_DE.ts b/share/translations/measurements_p4_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p4_de_DE.ts +++ b/share/translations/measurements_p4_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p4_es_ES.ts b/share/translations/measurements_p4_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p4_es_ES.ts +++ b/share/translations/measurements_p4_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p4_fi_FI.ts b/share/translations/measurements_p4_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p4_fi_FI.ts +++ b/share/translations/measurements_p4_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p4_he_IL.ts b/share/translations/measurements_p4_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p4_he_IL.ts +++ b/share/translations/measurements_p4_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p4_id_ID.ts b/share/translations/measurements_p4_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p4_id_ID.ts +++ b/share/translations/measurements_p4_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p4_it_IT.ts b/share/translations/measurements_p4_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p4_it_IT.ts +++ b/share/translations/measurements_p4_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p4_pt_BR.ts b/share/translations/measurements_p4_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p4_pt_BR.ts +++ b/share/translations/measurements_p4_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p4_uk_UA.ts b/share/translations/measurements_p4_uk_UA.ts index 5534dac51..cc1aec3cc 100644 --- a/share/translations/measurements_p4_uk_UA.ts +++ b/share/translations/measurements_p4_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота щиколотки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p4_zh_CN.ts b/share/translations/measurements_p4_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p4_zh_CN.ts +++ b/share/translations/measurements_p4_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p50_cs_CZ.ts b/share/translations/measurements_p50_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p50_cs_CZ.ts +++ b/share/translations/measurements_p50_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p50_de_DE.ts b/share/translations/measurements_p50_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p50_de_DE.ts +++ b/share/translations/measurements_p50_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p50_es_ES.ts b/share/translations/measurements_p50_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p50_es_ES.ts +++ b/share/translations/measurements_p50_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p50_fi_FI.ts b/share/translations/measurements_p50_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p50_fi_FI.ts +++ b/share/translations/measurements_p50_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p50_he_IL.ts b/share/translations/measurements_p50_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p50_he_IL.ts +++ b/share/translations/measurements_p50_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p50_id_ID.ts b/share/translations/measurements_p50_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p50_id_ID.ts +++ b/share/translations/measurements_p50_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p50_it_IT.ts b/share/translations/measurements_p50_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p50_it_IT.ts +++ b/share/translations/measurements_p50_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p50_pt_BR.ts b/share/translations/measurements_p50_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p50_pt_BR.ts +++ b/share/translations/measurements_p50_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p50_uk_UA.ts b/share/translations/measurements_p50_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p50_uk_UA.ts +++ b/share/translations/measurements_p50_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p50_zh_CN.ts b/share/translations/measurements_p50_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p50_zh_CN.ts +++ b/share/translations/measurements_p50_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p51_cs_CZ.ts b/share/translations/measurements_p51_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p51_cs_CZ.ts +++ b/share/translations/measurements_p51_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p51_de_DE.ts b/share/translations/measurements_p51_de_DE.ts index bbb4f6d18..9f5af72f7 100644 --- a/share/translations/measurements_p51_de_DE.ts +++ b/share/translations/measurements_p51_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p51_es_ES.ts b/share/translations/measurements_p51_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p51_es_ES.ts +++ b/share/translations/measurements_p51_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p51_fi_FI.ts b/share/translations/measurements_p51_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p51_fi_FI.ts +++ b/share/translations/measurements_p51_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p51_he_IL.ts b/share/translations/measurements_p51_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p51_he_IL.ts +++ b/share/translations/measurements_p51_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p51_id_ID.ts b/share/translations/measurements_p51_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p51_id_ID.ts +++ b/share/translations/measurements_p51_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p51_it_IT.ts b/share/translations/measurements_p51_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p51_it_IT.ts +++ b/share/translations/measurements_p51_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p51_pt_BR.ts b/share/translations/measurements_p51_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p51_pt_BR.ts +++ b/share/translations/measurements_p51_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p51_uk_UA.ts b/share/translations/measurements_p51_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p51_uk_UA.ts +++ b/share/translations/measurements_p51_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p51_zh_CN.ts b/share/translations/measurements_p51_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p51_zh_CN.ts +++ b/share/translations/measurements_p51_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p52_cs_CZ.ts b/share/translations/measurements_p52_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p52_cs_CZ.ts +++ b/share/translations/measurements_p52_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p52_de_DE.ts b/share/translations/measurements_p52_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p52_de_DE.ts +++ b/share/translations/measurements_p52_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p52_es_ES.ts b/share/translations/measurements_p52_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p52_es_ES.ts +++ b/share/translations/measurements_p52_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p52_fi_FI.ts b/share/translations/measurements_p52_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p52_fi_FI.ts +++ b/share/translations/measurements_p52_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p52_he_IL.ts b/share/translations/measurements_p52_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p52_he_IL.ts +++ b/share/translations/measurements_p52_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p52_id_ID.ts b/share/translations/measurements_p52_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p52_id_ID.ts +++ b/share/translations/measurements_p52_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p52_it_IT.ts b/share/translations/measurements_p52_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p52_it_IT.ts +++ b/share/translations/measurements_p52_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p52_pt_BR.ts b/share/translations/measurements_p52_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p52_pt_BR.ts +++ b/share/translations/measurements_p52_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p52_uk_UA.ts b/share/translations/measurements_p52_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p52_uk_UA.ts +++ b/share/translations/measurements_p52_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p52_zh_CN.ts b/share/translations/measurements_p52_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p52_zh_CN.ts +++ b/share/translations/measurements_p52_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p53_cs_CZ.ts b/share/translations/measurements_p53_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p53_cs_CZ.ts +++ b/share/translations/measurements_p53_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p53_de_DE.ts b/share/translations/measurements_p53_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p53_de_DE.ts +++ b/share/translations/measurements_p53_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p53_es_ES.ts b/share/translations/measurements_p53_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p53_es_ES.ts +++ b/share/translations/measurements_p53_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p53_fi_FI.ts b/share/translations/measurements_p53_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p53_fi_FI.ts +++ b/share/translations/measurements_p53_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p53_he_IL.ts b/share/translations/measurements_p53_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p53_he_IL.ts +++ b/share/translations/measurements_p53_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p53_id_ID.ts b/share/translations/measurements_p53_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p53_id_ID.ts +++ b/share/translations/measurements_p53_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p53_it_IT.ts b/share/translations/measurements_p53_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p53_it_IT.ts +++ b/share/translations/measurements_p53_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p53_pt_BR.ts b/share/translations/measurements_p53_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p53_pt_BR.ts +++ b/share/translations/measurements_p53_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p53_uk_UA.ts b/share/translations/measurements_p53_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p53_uk_UA.ts +++ b/share/translations/measurements_p53_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p53_zh_CN.ts b/share/translations/measurements_p53_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p53_zh_CN.ts +++ b/share/translations/measurements_p53_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p54_cs_CZ.ts b/share/translations/measurements_p54_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p54_cs_CZ.ts +++ b/share/translations/measurements_p54_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p54_de_DE.ts b/share/translations/measurements_p54_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p54_de_DE.ts +++ b/share/translations/measurements_p54_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p54_es_ES.ts b/share/translations/measurements_p54_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p54_es_ES.ts +++ b/share/translations/measurements_p54_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p54_fi_FI.ts b/share/translations/measurements_p54_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p54_fi_FI.ts +++ b/share/translations/measurements_p54_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p54_he_IL.ts b/share/translations/measurements_p54_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p54_he_IL.ts +++ b/share/translations/measurements_p54_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p54_id_ID.ts b/share/translations/measurements_p54_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p54_id_ID.ts +++ b/share/translations/measurements_p54_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p54_it_IT.ts b/share/translations/measurements_p54_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p54_it_IT.ts +++ b/share/translations/measurements_p54_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p54_pt_BR.ts b/share/translations/measurements_p54_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p54_pt_BR.ts +++ b/share/translations/measurements_p54_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p54_uk_UA.ts b/share/translations/measurements_p54_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p54_uk_UA.ts +++ b/share/translations/measurements_p54_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p54_zh_CN.ts b/share/translations/measurements_p54_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p54_zh_CN.ts +++ b/share/translations/measurements_p54_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p5_cs_CZ.ts b/share/translations/measurements_p5_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p5_cs_CZ.ts +++ b/share/translations/measurements_p5_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p5_de_DE.ts b/share/translations/measurements_p5_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p5_de_DE.ts +++ b/share/translations/measurements_p5_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p5_es_ES.ts b/share/translations/measurements_p5_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p5_es_ES.ts +++ b/share/translations/measurements_p5_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p5_fi_FI.ts b/share/translations/measurements_p5_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p5_fi_FI.ts +++ b/share/translations/measurements_p5_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p5_he_IL.ts b/share/translations/measurements_p5_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p5_he_IL.ts +++ b/share/translations/measurements_p5_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p5_id_ID.ts b/share/translations/measurements_p5_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p5_id_ID.ts +++ b/share/translations/measurements_p5_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p5_it_IT.ts b/share/translations/measurements_p5_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p5_it_IT.ts +++ b/share/translations/measurements_p5_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p5_pt_BR.ts b/share/translations/measurements_p5_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p5_pt_BR.ts +++ b/share/translations/measurements_p5_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p5_uk_UA.ts b/share/translations/measurements_p5_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p5_uk_UA.ts +++ b/share/translations/measurements_p5_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p5_zh_CN.ts b/share/translations/measurements_p5_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p5_zh_CN.ts +++ b/share/translations/measurements_p5_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p6_cs_CZ.ts b/share/translations/measurements_p6_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p6_cs_CZ.ts +++ b/share/translations/measurements_p6_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p6_de_DE.ts b/share/translations/measurements_p6_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p6_de_DE.ts +++ b/share/translations/measurements_p6_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p6_es_ES.ts b/share/translations/measurements_p6_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p6_es_ES.ts +++ b/share/translations/measurements_p6_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p6_fi_FI.ts b/share/translations/measurements_p6_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p6_fi_FI.ts +++ b/share/translations/measurements_p6_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p6_he_IL.ts b/share/translations/measurements_p6_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p6_he_IL.ts +++ b/share/translations/measurements_p6_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p6_id_ID.ts b/share/translations/measurements_p6_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p6_id_ID.ts +++ b/share/translations/measurements_p6_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p6_it_IT.ts b/share/translations/measurements_p6_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p6_it_IT.ts +++ b/share/translations/measurements_p6_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p6_pt_BR.ts b/share/translations/measurements_p6_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p6_pt_BR.ts +++ b/share/translations/measurements_p6_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p6_uk_UA.ts b/share/translations/measurements_p6_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p6_uk_UA.ts +++ b/share/translations/measurements_p6_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p6_zh_CN.ts b/share/translations/measurements_p6_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p6_zh_CN.ts +++ b/share/translations/measurements_p6_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p7_cs_CZ.ts b/share/translations/measurements_p7_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p7_cs_CZ.ts +++ b/share/translations/measurements_p7_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p7_de_DE.ts b/share/translations/measurements_p7_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p7_de_DE.ts +++ b/share/translations/measurements_p7_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p7_es_ES.ts b/share/translations/measurements_p7_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p7_es_ES.ts +++ b/share/translations/measurements_p7_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p7_fi_FI.ts b/share/translations/measurements_p7_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p7_fi_FI.ts +++ b/share/translations/measurements_p7_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p7_he_IL.ts b/share/translations/measurements_p7_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p7_he_IL.ts +++ b/share/translations/measurements_p7_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p7_id_ID.ts b/share/translations/measurements_p7_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p7_id_ID.ts +++ b/share/translations/measurements_p7_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p7_it_IT.ts b/share/translations/measurements_p7_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p7_it_IT.ts +++ b/share/translations/measurements_p7_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p7_pt_BR.ts b/share/translations/measurements_p7_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p7_pt_BR.ts +++ b/share/translations/measurements_p7_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p7_uk_UA.ts b/share/translations/measurements_p7_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p7_uk_UA.ts +++ b/share/translations/measurements_p7_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p7_zh_CN.ts b/share/translations/measurements_p7_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p7_zh_CN.ts +++ b/share/translations/measurements_p7_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p8_cs_CZ.ts b/share/translations/measurements_p8_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p8_cs_CZ.ts +++ b/share/translations/measurements_p8_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p8_de_DE.ts b/share/translations/measurements_p8_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p8_de_DE.ts +++ b/share/translations/measurements_p8_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p8_es_ES.ts b/share/translations/measurements_p8_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p8_es_ES.ts +++ b/share/translations/measurements_p8_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p8_fi_FI.ts b/share/translations/measurements_p8_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p8_fi_FI.ts +++ b/share/translations/measurements_p8_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p8_he_IL.ts b/share/translations/measurements_p8_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p8_he_IL.ts +++ b/share/translations/measurements_p8_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p8_id_ID.ts b/share/translations/measurements_p8_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p8_id_ID.ts +++ b/share/translations/measurements_p8_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p8_it_IT.ts b/share/translations/measurements_p8_it_IT.ts index cb8f150d8..5d5761411 100644 --- a/share/translations/measurements_p8_it_IT.ts +++ b/share/translations/measurements_p8_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p8_pt_BR.ts b/share/translations/measurements_p8_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p8_pt_BR.ts +++ b/share/translations/measurements_p8_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p8_uk_UA.ts b/share/translations/measurements_p8_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p8_uk_UA.ts +++ b/share/translations/measurements_p8_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p8_zh_CN.ts b/share/translations/measurements_p8_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p8_zh_CN.ts +++ b/share/translations/measurements_p8_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p998_cs_CZ.ts b/share/translations/measurements_p998_cs_CZ.ts index a456bd96a..d390da3fe 100644 --- a/share/translations/measurements_p998_cs_CZ.ts +++ b/share/translations/measurements_p998_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3697,7 +3697,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3753,6 +3753,12 @@ Name in a formula. Don't use math symbols and space in name!!!! + + + Rise length, side, sitting + Full measurement name. + + From Waist Side around hp curve down to surface, while seated on hard surface. @@ -3777,12 +3783,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p998_de_DE.ts b/share/translations/measurements_p998_de_DE.ts index 56c658d9d..c85c54f57 100644 --- a/share/translations/measurements_p998_de_DE.ts +++ b/share/translations/measurements_p998_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p998_es_ES.ts b/share/translations/measurements_p998_es_ES.ts index 572ac43b7..b3d3db14b 100644 --- a/share/translations/measurements_p998_es_ES.ts +++ b/share/translations/measurements_p998_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3697,7 +3697,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3753,6 +3753,12 @@ Name in a formula. Don't use math symbols and space in name!!!! + + + Rise length, side, sitting + Full measurement name. + + From Waist Side around hp curve down to surface, while seated on hard surface. @@ -3777,12 +3783,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p998_fi_FI.ts b/share/translations/measurements_p998_fi_FI.ts index a76effd14..42835b801 100644 --- a/share/translations/measurements_p998_fi_FI.ts +++ b/share/translations/measurements_p998_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3697,13 +3697,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3753,6 +3753,12 @@ Name in a formula. Don't use math symbols and space in name!!!! + + + Rise length, side, sitting + Full measurement name. + + From Waist Side around hp curve down to surface, while seated on hard surface. @@ -3777,12 +3783,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p998_he_IL.ts b/share/translations/measurements_p998_he_IL.ts index 6c12ed23b..c01f77689 100644 --- a/share/translations/measurements_p998_he_IL.ts +++ b/share/translations/measurements_p998_he_IL.ts @@ -3753,6 +3753,12 @@ Name in a formula. Don't use math symbols and space in name!!!! + + + Rise length, side, sitting + Full measurement name. + + From Waist Side around hp curve down to surface, while seated on hard surface. @@ -3777,12 +3783,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p998_id_ID.ts b/share/translations/measurements_p998_id_ID.ts index 66ccc6333..1186f4fb0 100644 --- a/share/translations/measurements_p998_id_ID.ts +++ b/share/translations/measurements_p998_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3753,6 +3753,12 @@ Name in a formula. Don't use math symbols and space in name!!!! + + + Rise length, side, sitting + Full measurement name. + + From Waist Side around hp curve down to surface, while seated on hard surface. @@ -3777,12 +3783,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p998_it_IT.ts b/share/translations/measurements_p998_it_IT.ts index 6bad9ce92..3fd13d780 100644 --- a/share/translations/measurements_p998_it_IT.ts +++ b/share/translations/measurements_p998_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Total Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3753,6 +3753,12 @@ Name in a formula. Don't use math symbols and space in name!!!! + + + Rise length, side, sitting + Full measurement name. + + From Waist Side around hp curve down to surface, while seated on hard surface. @@ -3777,12 +3783,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p998_pt_BR.ts b/share/translations/measurements_p998_pt_BR.ts index f319fbefa..c59e74e49 100644 --- a/share/translations/measurements_p998_pt_BR.ts +++ b/share/translations/measurements_p998_pt_BR.ts @@ -3765,6 +3765,18 @@ Full measurement description. + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + rise_length_diag @@ -3819,18 +3831,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). diff --git a/share/translations/measurements_p998_uk_UA.ts b/share/translations/measurements_p998_uk_UA.ts index cbfccb8bd..6d702687f 100644 --- a/share/translations/measurements_p998_uk_UA.ts +++ b/share/translations/measurements_p998_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + зріст Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу: шия ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + довжина_кисті Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ширина_ступні Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + довжина_ступні Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + довжина_плеча Shoulder length Full measurement name. - + Довжина плеча @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + соскова_точка_до_соскової_точки @@ -3697,13 +3697,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + довжина_промежини Crotch length Full measurement name. - + Довжина промежини @@ -3753,6 +3753,12 @@ Name in a formula. Don't use math symbols and space in name!!!! + + + Rise length, side, sitting + Full measurement name. + + From Waist Side around hp curve down to surface, while seated on hard surface. @@ -3777,12 +3783,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p998_zh_CN.ts b/share/translations/measurements_p998_zh_CN.ts index 30c95222e..5f41bf7e6 100644 --- a/share/translations/measurements_p998_zh_CN.ts +++ b/share/translations/measurements_p998_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3765,6 +3765,18 @@ Full measurement description. + + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. + + rise_length_diag @@ -3819,18 +3831,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). diff --git a/share/translations/measurements_p9_cs_CZ.ts b/share/translations/measurements_p9_cs_CZ.ts index 080ecca24..e1b1ff305 100644 --- a/share/translations/measurements_p9_cs_CZ.ts +++ b/share/translations/measurements_p9_cs_CZ.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + výška @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ruky @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + šířka_chodidla @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_chodidla @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_ramene @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + od_bradavky_k_bradavce @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + délka_rozkroku @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p9_de_DE.ts b/share/translations/measurements_p9_de_DE.ts index 35246a96e..9a7786117 100644 --- a/share/translations/measurements_p9_de_DE.ts +++ b/share/translations/measurements_p9_de_DE.ts @@ -2142,19 +2142,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_side_to_highbust_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_seite_zur_oberbrust_hinten Neck Side to Highbust level, back Full measurement name. - + Halsseite zur Oberbrusthöhe, hinten From Neck Side straight down back to Highbust level. Full measurement description. - + Von der Halsseite gerade den Rücken herunter bis zur Höhe der Oberbrust messen. @@ -2178,91 +2178,91 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba waist_to_highhip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_vorne Waist Front to Highhip Front Full measurement name. - + Taille vorne zur hohen Hüfte vorne From Waist Front to Highhip Front. Full measurement description. - + Von der Vroderseite der Taille zur Vorderseite der hohen Hüfte messen. waist_to_hip_f Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_vorne Waist Front to Hip Front Full measurement name. - + Taille vorne zur Hüfte vorne From Waist Front to Hip Front. Full measurement description. - + Von der Vorderseite der Taille zur Vorderseite der Hüfte messen. waist_to_highhip_side Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_seite Waist Side to Highhip Side Full measurement name. - + Taillenseite zur Seite der hohen Hüfte From Waist Side to Highhip Side. Full measurement description. - + Von der Seite der Taille zur Seite der hohen Hüfte messen. waist_to_highhip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hohen_hüfte_hinten Waist Back to Highhip Back Full measurement name. - + Taille hinten zur hohen Hüfte hinten From Waist Back down to Highhip Back. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Höhe der hohen Hüfte messen. waist_to_hip_b Name in a formula. Don't use math symbols and space in name!!!! - + taille_zur_hüfte_hinten Waist Back to Hip Back Full measurement name. - + Taille hinten zur Hüfte hinten From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks. Full measurement description. - + Auf dem Rücken von der Taillenhöhe zur Hüfthöhe messen. Bei Bedarf den Po mit Band überdecken. @@ -2424,25 +2424,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba From Neck Side to Shoulder Tip. Full measurement description. - + Von der Seite des Halses bis zur Schulterspitze messen. shoulder_tip_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_vorne Shoulder Tip to Shoulder Tip, front Full measurement name. - + Schulterspitze zur Schulterspitze, vorne From Shoulder Tip to Shoulder Tip, across front. Full measurement description. - + Von der einen Schulterspitze zur anderen auf der Vorderseite messen. @@ -2556,25 +2556,25 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba armfold_to_armfold_b Name in a formula. Don't use math symbols and space in name!!!! - + achsel_zur_achsel_hinten Armfold to Armfold, back Full measurement name. - + Achsel zur Achsel, hinten From Armfold to Armfold across the back. Full measurement description. - + Von der einen Achsel zur anderen über den Rücken messen. shoulder_tip_to_shoulder_tip_half_b Name in a formula. Don't use math symbols and space in name!!!! - + schulterspitze_zur_schulterspitze_halb_hinten @@ -2586,7 +2586,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2). Full measurement description. - + Die Hälfte von 'Schulterspitze zu Schulterspitze, hinten'. ('Schulterspitze zu Schulterspitze, hinten' / 2) @@ -2610,37 +2610,37 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_shoulder_tip_f Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_schulterspitze_vorne Neck Front to Shoulder Tip Full measurement name. - + Hals vorne zur Schulterspitze From Neck Front to Shoulder Tip. Full measurement description. - + Von der Vorderseite des Halses bis zur Schulterspitze messen. neck_back_to_shoulder_tip_b Name in a formula. Don't use math symbols and space in name!!!! - + hals_hinten_zur_schulterspitze_hinten Neck Back to Shoulder Tip Full measurement name. - + Nacken zur Schulterspitze From Neck Back to Shoulder Tip. Full measurement description. - + Vom Nacken zur Schulterspitze messen. @@ -2670,13 +2670,13 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba Bustpoint to Bustpoint Full measurement name. - + Brustpunkt zu Brustpunkt From Bustpoint to Bustpoint. Full measurement description. - + Vom einen Brustpunkt zum anderen. @@ -2844,19 +2844,19 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba neck_front_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + hals_vorne_zur_taille_seite Neck Front to Waist Side Full measurement name. - + Hals vorne zur Taillenseite From Neck Front diagonal to Waist Side. Full measurement description. - + Von der Vorderseite des Halses diagonal zur Seite der Taille messen. diff --git a/share/translations/measurements_p9_es_ES.ts b/share/translations/measurements_p9_es_ES.ts index b8cadf697..3d07f1430 100644 --- a/share/translations/measurements_p9_es_ES.ts +++ b/share/translations/measurements_p9_es_ES.ts @@ -1,259 +1,259 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + altura Height: Total Full measurement name. - + Altura: Total Vertical distance from crown of head to floor. Full measurement description. - + Distancia vertical desde la coronilla de la cabeza al suelo. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altura_cuello_trasero Height: Neck Back Full measurement name. - + Altura: Cuello Trasero Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altura_escapula Height: Scapula Full measurement name. - + Altura: Escapula Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distancia vertical de la escapula (punta de la cuchilla) al suelo. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altura_axila Height: Armpit Full measurement name. - + Altura: Axila Vertical distance from the Armpit to the floor. Full measurement description. - + Distancia vertical de la axila al suelo. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_lateral Height: Waist Side Full measurement name. - + Altura: Cintura Lateral Vertical distance from the Waist Side to the floor. Full measurement description. - + Distancia vertical de la cintura lateral al suelo. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altura_cadera Height: Hip Full measurement name. - + Altura: Cadera Vertical distance from the Hip level to the floor. Full measurement description. - + Distancia vertical del nivel de la cadera al piso. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altura_pliegue_glúteo Height: Gluteal Fold Full measurement name. - + Altura: pliegue del glúteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distancia vertical desde el pliegue del glúteo, donde el músculo del glúteo se encuentra con la parte superior de la parte posterior del muslo, hasta el suelo. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altura_rodilla Height: Knee Full measurement name. - + Altura: Rodilla Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distancia vertical desde el pliegue en la parte posterior de la rodilla hasta el suelo. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altura_pantorrilla Height: Calf Full measurement name. - + Altura: Pantorrilla Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distancia vertical desde el punto más ancho de la pantorrilla hasta el suelo. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altura_alto_tobillo Height: Ankle High Full measurement name. - + Altura: Alto Tobillo Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distancia vertical desde la hendidura más profunda de la parte posterior del tobillo hasta el suelo. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altura_tobillo Height: Ankle Full measurement name. - + Altura: Tobillo Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distancia vertical desde el punto donde la parte delantera de la pierna se encuentra con el pie hasta el suelo. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altura_alturadelacadera Height: Highhip Full measurement name. - + Altura: Altura de la Cadera Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distancia vertical desde el nivel de la altura de la cadera, donde la parte delantera del abdomen es más prominente, hasta el suelo. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altura_cintura_frontal Height: Waist Front Full measurement name. - + Altura: Cintura Frontal Vertical distance from the Waist Front to the floor. Full measurement description. - + Distancia vertical desde la cintura frontal al piso. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altura_busto Height: Bustpoint Full measurement name. - + Altura: Busto Vertical distance from Bustpoint to the floor. Full measurement description. - + Distancia vertical desde la altura donde el busto es mas prominente hasta el suelo. @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_mano @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + ancho_pie @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_pie @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_hombro @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + separación_pechos @@ -3721,7 +3721,7 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + longitud_entrepierna @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p9_fi_FI.ts b/share/translations/measurements_p9_fi_FI.ts index 8b2f57d13..d9a8dbb3d 100644 --- a/share/translations/measurements_p9_fi_FI.ts +++ b/share/translations/measurements_p9_fi_FI.ts @@ -1,13 +1,13 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + pituus @@ -565,7 +565,7 @@ hand_length Name in a formula. Don't use math symbols and space in name!!!! - + käden_pituus @@ -637,7 +637,7 @@ foot_width Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_leveys @@ -655,7 +655,7 @@ foot_length Name in a formula. Don't use math symbols and space in name!!!! - + jalkaterän_pituus @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + olkapään_pituus Shoulder length Full measurement name. - + Olkapään pituus @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + rintapisteestä_rintapisteeseen @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + haaran_pituus Crotch length Full measurement name. - + Haaran pituus @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p9_he_IL.ts b/share/translations/measurements_p9_he_IL.ts index 34fbbe690..ad7a7434c 100644 --- a/share/translations/measurements_p9_he_IL.ts +++ b/share/translations/measurements_p9_he_IL.ts @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p9_id_ID.ts b/share/translations/measurements_p9_id_ID.ts index 8d43e9d74..8663958e6 100644 --- a/share/translations/measurements_p9_id_ID.ts +++ b/share/translations/measurements_p9_id_ID.ts @@ -1,6 +1,6 @@ - + VTranslateMeasurements @@ -2401,7 +2401,7 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + panjang_bahu @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p9_it_IT.ts b/share/translations/measurements_p9_it_IT.ts index cb8f150d8..c2dfbdbb8 100644 --- a/share/translations/measurements_p9_it_IT.ts +++ b/share/translations/measurements_p9_it_IT.ts @@ -7,415 +7,415 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + altezza Height: Total Full measurement name. - + Altezza: Totale Vertical distance from crown of head to floor. Full measurement description. - + Distanza verticale dalla parte superiore della testa al pavimento. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro Height: Neck Back Full measurement name. - + Altezza: Collo Dietro Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Distanza verticale da Collo Dietro (vertebra cervicale) al pavimento. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + altezza_scapola Height: Scapula Full measurement name. - + Altezza: Scapola Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Distanza verticale dalla Scapola (punto più esterno della scapola) al pavimento. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ascella Height: Armpit Full measurement name. - + Altezza: Ascella Vertical distance from the Armpit to the floor. Full measurement description. - + Distanza verticale dall'Ascella al pavimento. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_fianco Height: Waist Side Full measurement name. - + Altezza: Vita Fianco Vertical distance from the Waist Side to the floor. Full measurement description. - + Distanza verticale dal Fianco Vita al pavimento. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_anca Height: Hip Full measurement name. - + Altezza: Anca Vertical distance from the Hip level to the floor. Full measurement description. - + Distanza verticale dal livello Anca al pavimento. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + altezza_piega_gluteo Height: Gluteal Fold Full measurement name. - + Altezza: Piega Gluteo Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Distanza verticale dalla piega del Gluteo, dove il muscolo del Gluteo incontra la parte superiore della coscia dietro, al pavimento. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio Height: Knee Full measurement name. - + Altezza: Ginocchio Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Distanza verticale dalla piega dietro il ginocchio al pavimento. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + altezza_polpaccio Height: Calf Full measurement name. - + Altezza: Polpaccio Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Distanza verticale dal punto più ampio del polpaccio al pavimento. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia_alto Height: Ankle High Full measurement name. - + Altezza: Caviglia Alta Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Distanza verticale dal rientro più profondo della parte posteriore della caviglia al pavimento . height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_caviglia Height: Ankle Full measurement name. - + Altezza: Caviglia Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Distanza verticale dal punto dove la gamba di fronte incontra il piede al pavimento. height_highhip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ancasuperiore Height: Highhip Full measurement name. - + Altezza: Anca superiore Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor. Full measurement description. - + Distanza verticale dal livello superiore Anca, dove l'addome anteriore è più sporgente, al pavimento. height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_vita_davanti Height: Waist Front Full measurement name. - + Altezza: Vita Davanti Vertical distance from the Waist Front to the floor. Full measurement description. - + Distanza verticale dalla Vita Davanti al pavimento. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + altezza_seno Height: Bustpoint Full measurement name. - + Altezza: Seno Vertical distance from Bustpoint to the floor. Full measurement description. - + Distanza verticale dal Seno al pavimento. height_shoulder_tip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_spalla_punta Height: Shoulder Tip Full measurement name. - + Altezza: Punta Spalla Vertical distance from the Shoulder Tip to the floor. Full measurement description. - + Distanza verticale dalla Punta della Spalla al pavimento. height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_fronte Height: Neck Front Full measurement name. - + Altezza: Collo Fronte Vertical distance from the Neck Front to the floor. Full measurement description. - + Distanza verticale dal Collo Davanti al pavimento. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_collo Height: Neck Side Full measurement name. - + Altezza: Lato Collo Vertical distance from the Neck Side to the floor. Full measurement description. - + Distanza verticale dal Lato Collo al pavimento. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_ginocchio Height: Neck Back to Knee Full measurement name. - + Altezza: Collo Dietro al Ginocchio Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Collo Dietro (vertebra cervicale) alla piega dietro del ginocchio. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_ginocchio Height: Waist Side to Knee Full measurement name. - + Altezza: Lato Vita al Ginocchio Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Distanza verticale dal Lato Vita alla piega dietro al ginocchio. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + altezza_lato_vita_al_fianco Height: Waist Side to Hip Full measurement name. - + Altezza: Lato Vita al Fianco Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Distanza verticale dal Lato Vita al Livello Fianco. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + altezza_ginocchio_ad_anca Height: Knee to Ankle Full measurement name. - + Altezza: Ginocchio all'Anca Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Distanza verticale dalla piega dietro del ginocchio al punto dove la parte frontale della gamba incontra la parte superiore del piede. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + altezza_collo_dietro_al_lato_vita Height: Neck Back to Waist Side Full measurement name. - + Altezza: Collo Dietro al Lato Vita Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Distanza verticale dal Collo Dietro al Lato Vita. ('Altezza:Collo Dietro'-'Altezza:Lato Vita'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + larghezza_spalla Width: Shoulder Full measurement name. - + Larghezza: Spalla Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Distanza orizzontale da una Punta della Spalla all'altra Punta della Spalla. @@ -733,7 +733,7 @@ Head: Length Full measurement name. - + Testa: Lunghezza @@ -745,13 +745,13 @@ head_depth Name in a formula. Don't use math symbols and space in name!!!! - + testa_profondità Head: Depth Full measurement name. - + Testa: Profondità @@ -763,13 +763,13 @@ head_width Name in a formula. Don't use math symbols and space in name!!!! - + altezza_larghezza Head: Width Full measurement name. - + Testa: Larghezza @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p9_pt_BR.ts b/share/translations/measurements_p9_pt_BR.ts index f319fbefa..d29c9ff53 100644 --- a/share/translations/measurements_p9_pt_BR.ts +++ b/share/translations/measurements_p9_pt_BR.ts @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/measurements_p9_uk_UA.ts b/share/translations/measurements_p9_uk_UA.ts index 5534dac51..384caddf4 100644 --- a/share/translations/measurements_p9_uk_UA.ts +++ b/share/translations/measurements_p9_uk_UA.ts @@ -1,205 +1,205 @@ - + VTranslateMeasurements height Name in a formula. Don't use math symbols and space in name!!!! - + Р Height: Total Full measurement name. - + Зріст Vertical distance from crown of head to floor. Full measurement description. - + Вертикальна відстань від найвищої точки голови до підлоги. height_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду Height: Neck Back Full measurement name. - + Висота шиї ззаду Vertical distance from the Neck Back (cervicale vertebra) to the floor. Full measurement description. - + Вертикальна відстань шиї ззаду (від сьомого шийного хребця) до підлоги. height_scapula Name in a formula. Don't use math symbols and space in name!!!! - + висота_лопатки Height: Scapula Full measurement name. - + Висота лопатки Vertical distance from the Scapula (Blade point) to the floor. Full measurement description. - + Вертикальна відстань від лопатки до підлоги. height_armpit Name in a formula. Don't use math symbols and space in name!!!! - + висота_пахва Height: Armpit Full measurement name. - + Висота пахва Vertical distance from the Armpit to the floor. Full measurement description. - + Вертикальна відстань від пахва до підлоги. height_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку Height: Waist Side Full measurement name. - + Висота талії збоку Vertical distance from the Waist Side to the floor. Full measurement description. - + Вертикальна відстань від талії збоку до підлоги. height_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_стегна Height: Hip Full measurement name. - + Висота стегна Vertical distance from the Hip level to the floor. Full measurement description. - + Вертикальна відстань від стегна до підлоги. height_gluteal_fold Name in a formula. Don't use math symbols and space in name!!!! - + висота_сідничної_складки Height: Gluteal Fold Full measurement name. - + Висота сідничної складки Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor. Full measurement description. - + Вертикальна відстань від сідничної складки, де сідничний м'яз зустрічає верхню частину задньої сторони стегна, до підлоги. height_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна Height: Knee Full measurement name. - + Висота: колінної точки Vertical distance from the fold at the back of the Knee to the floor. Full measurement description. - + Вертикальна відстань від згину на задній частині коліна до підлоги. height_calf Name in a formula. Don't use math symbols and space in name!!!! - + висота_ікри Height: Calf Full measurement name. - + Висота ікри Vertical distance from the widest point of the calf to the floor. Full measurement description. - + Вертикальна відстань від найширшої точки ікри до підлоги. height_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + висота_гомілки Height: Ankle High Full measurement name. - + Висота гомілки Vertical distance from the deepest indentation of the back of the ankle to the floor. Full measurement description. - + Вертикальна відстань від найглибшої виїмки задньої щиколотки до підлоги. height_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_щиколотки Height: Ankle Full measurement name. - + Висота щиколотки Vertical distance from point where the front leg meets the foot to the floor. Full measurement description. - + Вертикальна відстань від передньої найвищої точки ступні до підлоги. @@ -223,37 +223,37 @@ height_waist_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_зпереду Height: Waist Front Full measurement name. - + Висота талії зпереду Vertical distance from the Waist Front to the floor. Full measurement description. - + Вертикальна відстань талії зпереду до підлоги. height_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + висота_соскової_точки Height: Bustpoint Full measurement name. - + Висота соскової точки Vertical distance from Bustpoint to the floor. Full measurement description. - + Вертикальна відстань від соскової точки до підлоги. @@ -277,397 +277,397 @@ height_neck_front Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_зпереду Height: Neck Front Full measurement name. - + Висота шиї зпереду Vertical distance from the Neck Front to the floor. Full measurement description. - + Вертикальна відстань шиї зпереду до підлоги. height_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_збоку Height: Neck Side Full measurement name. - + Висота шиї збоку Vertical distance from the Neck Side to the floor. Full measurement description. - + Вертикальна відстань шиї збоку до підлоги. height_neck_back_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_коліна Height: Neck Back to Knee Full measurement name. - + Висота від шиї ззаду до коліна Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від шиї ззаду (шийного хребця) до згину коліна ззаду. height_waist_side_to_knee Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_збоку_до_коліна Height: Waist Side to Knee Full measurement name. - + Висота талії збоку до коліна Vertical distance from the Waist Side to the fold at the back of the knee. Full measurement description. - + Вертикальна відстань від талії збоку до згину коліна ззаду. height_waist_side_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + висота_талії_до_стегна Height: Waist Side to Hip Full measurement name. - + Висота від талії збоку до стегна Vertical distance from the Waist Side to the Hip level. Full measurement description. - + Вертикальна відстань від талії збоку до рівня стегна. height_knee_to_ankle Name in a formula. Don't use math symbols and space in name!!!! - + висота_коліна_до_щиколотки Height: Knee to Ankle Full measurement name. - + Висота коліна до щиколотки Vertical distance from the fold at the back of the knee to the point where the front leg meets the top of the foot. Full measurement description. - + Вертикальна відстань між згином коліна ззаду до точки, де перед ноги зустрічає верх стопи. height_neck_back_to_waist_side Name in a formula. Don't use math symbols and space in name!!!! - + висота_шиї_ззаду_до_талії_збоку Height: Neck Back to Waist Side Full measurement name. - + Висота шиї ззаду до талії збоку Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - 'Height: Waist Side'). Full measurement description. - + Вертикальна відстань від шиї ззаду до талії збоку. ('Висота шиї збоку' - 'Висота талії збоку'). width_shoulder Name in a formula. Don't use math symbols and space in name!!!! - + ширина_плеча Width: Shoulder Full measurement name. - + Ширина плеча Horizontal distance from Shoulder Tip to Shoulder Tip. Full measurement description. - + Горизонтальна відстань між нахилами лівого та правого плечей. width_bust Name in a formula. Don't use math symbols and space in name!!!! - + ширина_грудей Width: Bust Full measurement name. - + Ширина грудей Horizontal distance from Bust Side to Bust Side. Full measurement description. - + Горизонтальна відстань ширини грудей від боку до боку. width_waist Name in a formula. Don't use math symbols and space in name!!!! - + ширина_талії Width: Waist Full measurement name. - + Ширина талії Horizontal distance from Waist Side to Waist Side. Full measurement description. - + Горизонтальна відстань талії від боку до боку. width_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_стегна Width: Hip Full measurement name. - + Ширина стегна Horizontal distance from Hip Side to Hip Side. Full measurement description. - + Горизонтальна відстань стегна від боку до боку. width_abdomen_to_hip Name in a formula. Don't use math symbols and space in name!!!! - + ширина_живота_до_стегна Width: Abdomen to Hip Full measurement name. - + Ширина від живота до стегна Horizontal distance from the greatest abdomen prominence to the greatest hip prominence. Full measurement description. - + Горизонтальна відстань між точками найбільшого виступу живота і стегна. indent_neck_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпуса_шия_ззаду Indent: Neck Back Full measurement name. - + Положення корпусу шиї ззаду Horizontal distance from Scapula (Blade point) to the Neck Back. Full measurement description. - + Горизонтальна відстань від лопатки до шиї ззаду. indent_waist_back Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_талія_ззаду Indent: Waist Back Full measurement name. - + Положення корпусу: талія ззаду Horizontal distance between a flat stick, placed to touch Hip and Scapula, and Waist Back. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що доторкається стегна і лопаток, і талії ззаду. indent_ankle_high Name in a formula. Don't use math symbols and space in name!!!! - + положення_корпусу_щиколотка Indent: Ankle High Full measurement name. - + Положення корпусу: щиколотка Horizontal Distance betwee a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle. Full measurement description. - + Горизонтальна відстань між плоскою палицею, що розміщена перпендикулярно до п'яти, і найбільшим відступом щиколотки. hand_palm_length Name in a formula. Don't use math symbols and space in name!!!! - + рука_довжина_долоні Hand: Palm length Full measurement name. - + Рука: довжина долоні Length from Wrist line to base of middle finger. Full measurement description. - + Довжина від зап'ястя до основи середнього пальця руки. hand_length Name in a formula. Don't use math symbols and space in name!!!! - + hand_length Hand: Length Full measurement name. - + Довжина кисті Length from Wrist line to end of middle finger. Full measurement description. - + Довжина від зап'ястя до кінця середнього пальця руки. hand_palm_width Name in a formula. Don't use math symbols and space in name!!!! - + рука_ширина_долоні Hand: Palm width Full measurement name. - + Рука: ширина долоні Measure where Palm is widest. Full measurement description. - + Виміряють найбільшу ширину долоні. hand_palm_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_долоні Hand: Palm circumference Full measurement name. - + Рука: окружність долоні Circumference where Palm is widest. Full measurement description. - + Окружність найширшої частини долоні. hand_circ Name in a formula. Don't use math symbols and space in name!!!! - + окружність_руки Hand: Circumference Full measurement name. - + Рука: окружність Tuck thumb toward smallest finger, bring fingers close together. Measure circumference around widest part of hand. Full measurement description. - + Складіть великий палець так щоб він прилягав до долоні. Міряйте окружність навколо найширшої частини руки. foot_width Name in a formula. Don't use math symbols and space in name!!!! - + foot_width Foot: Width Full measurement name. - + Ступня: ширина Measure at widest part of foot. Full measurement description. - + Вимірюють найширшу частину ступні. foot_length Name in a formula. Don't use math symbols and space in name!!!! - + foot_length Foot: Length Full measurement name. - + Ступня: довжина Measure from back of heel to end of longest toe. Full measurement description. - + Вимірюють від п'ятки до кінця найдовшого пальця. @@ -2401,13 +2401,13 @@ shoulder_length Name in a formula. Don't use math symbols and space in name!!!! - + Шп Shoulder length Full measurement name. - + Довжина плечового ската @@ -2653,7 +2653,7 @@ bustpoint_to_bustpoint Name in a formula. Don't use math symbols and space in name!!!! - + Цг @@ -3721,13 +3721,13 @@ crotch_length Name in a formula. Don't use math symbols and space in name!!!! - + crotch_length Crotch length Full measurement name. - + Довжина промежини @@ -3771,6 +3771,12 @@ Full measurement description. + + + Rise length, side, sitting + Full measurement name. + + rise_length_side @@ -3789,12 +3795,6 @@ Name in a formula. Don't use math symbols and space in name!!!! - - - Rise length, side, sitting - Full measurement name. - - Rise length, diagonal diff --git a/share/translations/measurements_p9_zh_CN.ts b/share/translations/measurements_p9_zh_CN.ts index 30c95222e..85830dedd 100644 --- a/share/translations/measurements_p9_zh_CN.ts +++ b/share/translations/measurements_p9_zh_CN.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - + 高度 @@ -933,12 +933,6 @@ Full measurement name. - - - Circumference around Waist, following natural contours. Waists are typically higher in back. - Full measurement description. - - highhip_circ @@ -951,6 +945,12 @@ Full measurement name. + + + Circumference around Waist, following natural contours. Waists are typically higher in back. + Full measurement description. + + Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. @@ -2497,7 +2497,7 @@ Across Chest, half Full measurement name. - + 1/2胸围 @@ -3459,6 +3459,36 @@ Full measurement description. + + + From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). + Full measurement description. + + + + + rise_length_side_sitting + Name in a formula. Don't use math symbols and space in name!!!! + + + + + From Waist Side around hp curve down to surface, while seated on hard surface. + Full measurement description. + + + + + Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). + Full measurement description. + + + + + This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". + Full measurement description. + + leg_waist_side_to_floor @@ -3687,12 +3717,6 @@ Full measurement name. - - - From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to Floor' - 'Height Knee'). - Full measurement description. - - crotch_length @@ -3747,12 +3771,6 @@ Full measurement description. - - - rise_length_side_sitting - Name in a formula. Don't use math symbols and space in name!!!! - - Rise length, side, sitting @@ -3760,9 +3778,15 @@ - - From Waist Side around hp curve down to surface, while seated on hard surface. - Full measurement description. + + rise_length_side + Name in a formula. Don't use math symbols and space in name!!!! + + + + + Rise length, side + Full measurement name. @@ -3819,24 +3843,6 @@ Full measurement description. - - - rise_length_side - Name in a formula. Don't use math symbols and space in name!!!! - - - - - Rise length, side - Full measurement name. - - - - - Vertical distance from Waist side down to Crotch level. Use formula (Height: Waist side - Leg: Crotch to floor). - Full measurement description. - - neck_back_to_waist_front @@ -4348,11 +4354,5 @@ Full measurement name. - - - This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. Aldrich's "Metric Pattern Cutting". - Full measurement description. - - diff --git a/share/translations/valentina.ts b/share/translations/valentina.ts index c609159b2..9f4ad4ad4 100644 --- a/share/translations/valentina.ts +++ b/share/translations/valentina.ts @@ -3739,51 +3739,51 @@ Apply settings anyway? Length: - Length: + Length: Formula wizard - Formula wizard + Formula wizard Value - Value + Value Calulation - Calulation + Calulation <html><head/><body><p>Show full calculation in message box</p></body></html> - <html><head/><body><p>Show full calculation in message box</p></body></html> + <html><head/><body><p>Show full calculation in message box</p></body></html> Edit first control point angle - Edit first control point angle + Edit first control point angle Edit second control point angle - Edit second control point angle + Edit second control point angle Edit first control point length - Edit first control point length + Edit first control point length Edit second control point length - Edit second control point length + Edit second control point length Error - Error + Error Length can't be negative - Length can't be negative + Length can't be negative Not used - + Not used @@ -7114,7 +7114,7 @@ Do you want to save your changes? Error creating or updating interactive spline path - + Error creating or updating interactive spline path diff --git a/share/translations/valentina_cs_CZ.ts b/share/translations/valentina_cs_CZ.ts index a11e020a2..40af6d5b3 100644 --- a/share/translations/valentina_cs_CZ.ts +++ b/share/translations/valentina_cs_CZ.ts @@ -7973,7 +7973,7 @@ Do you want to save your changes? AngleLine_ Left symbol _ in name - Úhel čáry_ + Úhelčáry_ Arc_ @@ -7988,7 +7988,7 @@ Do you want to save your changes? SplPath Do not add symbol _ to the end of name - Cesta křivky + CestaKřivky RadiusArc_ @@ -8018,12 +8018,12 @@ Do you want to save your changes? Angle1SplPath Do not add symbol _ to the end of name - + Úhel1CestaKřivky Angle2SplPath Do not add symbol _ to the end of name - + Úhel2CestaKřivky sin diff --git a/share/translations/valentina_de_DE.ts b/share/translations/valentina_de_DE.ts index 86846d197..740459eb5 100644 --- a/share/translations/valentina_de_DE.ts +++ b/share/translations/valentina_de_DE.ts @@ -3739,51 +3739,51 @@ Einstellungen trotzdem anwenden? Length: - Länge: + Länge: Formula wizard - + Formel-Assistent Value - Wert + Wert Calulation - Berechnung + Berechnung <html><head/><body><p>Show full calculation in message box</p></body></html> - + <html><head/><body><p>Ganze Berechnungsformel anzeigen</p></body></html> Edit first control point angle - Winkel des ersten Kontrollpunktes bearbeiten + Winkel des ersten Kontrollpunktes bearbeiten Edit second control point angle - Winkel des zweiten Kontrollpunktes bearbeiten + Winkel des zweiten Kontrollpunktes bearbeiten Edit first control point length - Länge des ersten Kontrollpunktes bearbeiten + Länge des ersten Kontrollpunktes bearbeiten Edit second control point length - Länge des zweiten Kontrollpunktes bearbeiten + Länge des zweiten Kontrollpunktes bearbeiten Error - Fehler + Fehler Length can't be negative - Länge kann nicht negativ sein + Länge kann nicht negativ sein Not used - + Nicht verwendet @@ -7112,7 +7112,7 @@ Do you want to save your changes? Error creating or updating interactive spline path - + Fehler beim Anlegen oder Aktualisieren des interaktiven Splinepfades diff --git a/share/translations/valentina_he_IL.ts b/share/translations/valentina_he_IL.ts index 085a78c14..f7422efc8 100644 --- a/share/translations/valentina_he_IL.ts +++ b/share/translations/valentina_he_IL.ts @@ -26,7 +26,11 @@ CommunityPage Server - + שרת + + + Server name/IP + שם שרת/IP Secure connection @@ -116,7 +120,7 @@ ConfigurationPage Save - שמור + שמור Auto-save modified pattern @@ -140,11 +144,11 @@ Centimeters - + סנטימטרים Millimiters - + מילימטר Inches @@ -340,14 +344,6 @@ Type of line סוג הקו - - Length of lines - אורך הקווים - - - Length of curves - אורך העקומות - Select second point of line @@ -435,14 +431,6 @@ Center point נקודת מרכז - - Length of lines - אורך הקווים - - - Length of curves - אורך העקומות - Error @@ -516,11 +504,11 @@ Radius - רדיוס + רדיוס Value of radius - ערך הרדיוס + ערך הרדיוס <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -528,11 +516,11 @@ Length - אורך + אורך Center point - נקודת מרכז + נקודת מרכז Edit radius @@ -621,14 +609,6 @@ Type of line סוג הקו - - Length of lines - אורך הקווים - - - Length of curves - אורך העקומות - Select second point of angle @@ -702,23 +682,15 @@ Curve - עקומה + עקומה Point label - תווית הנקודה + תווית הנקודה Type of line - סוג הקו - - - Length of lines - אורך הקווים - - - Length of curves - אורך העקומות + סוג הקו Select axis point @@ -787,10 +759,6 @@ Value of length ערך האורך - - _ - _ - <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -799,14 +767,6 @@ Point label תווית הנקודה - - Length of lines - אורך הקווים - - - Length of curves - אורך העקומות - Segment an arc @@ -862,10 +822,6 @@ Value of length ערך האורך - - _ - _ - <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -878,14 +834,6 @@ Point label תווית הנקודה - - Length of lines - אורך הקווים - - - Length of curves - אורך העקומות - Segmenting a simple curve @@ -941,10 +889,6 @@ Value of length ערך האורך - - _ - _ - <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -957,14 +901,6 @@ Point label תווית הנקודה - - Length of lines - אורך הקווים - - - Length of curves - אורך העקומות - Segment a curved path @@ -1022,7 +958,7 @@ Options - אפשרויות + אפשרויות Seam allowance @@ -1060,6 +996,10 @@ Scroll down the list + + ... + ... + Scroll up the list @@ -1111,10 +1051,6 @@ Insert variable into formula - - _ - _ - <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -1133,7 +1069,7 @@ Length of lines - אורך הקווים + אורך הקווים Length of arcs @@ -1141,7 +1077,7 @@ Length of curves - אורך העקומות + אורך העקומות Angle of lines @@ -1157,7 +1093,7 @@ Line length - אורך הקו + אורך הקו Arc length @@ -1165,7 +1101,7 @@ Curve length - אורך העקומה + אורך העקומה Line Angle @@ -1234,14 +1170,6 @@ Type of line סוג הקו - - Length of lines - אורך הקווים - - - Length of curves - אורך העקומות - Point at distance and angle @@ -1505,11 +1433,7 @@ Length - אורך - - - Curves - עקומות + אורך Curve @@ -1549,7 +1473,7 @@ Radius - רדיוס + רדיוס Angles arcs @@ -1695,11 +1619,11 @@ Millimiters - + מילימטר Centimeters - + סנטימטרים Inches @@ -1851,7 +1775,7 @@ Apply settings anyway? Type of line - סוג הקו + סוג הקו Select second point @@ -1945,28 +1869,20 @@ Apply settings anyway? First point of line - + נקודה ראשונה בשורה Point label - תווית הנקודה + תווית הנקודה Type of line - סוג הקו + סוג הקו Show line from first point to this point - - Length of lines - אורך הקווים - - - Length of curves - אורך העקומות - Select second point of line @@ -1985,7 +1901,7 @@ Apply settings anyway? Second point of line - + נקודה שנייה בשורה Edit angle @@ -2184,11 +2100,11 @@ Apply settings anyway? Centimeters - + סנטימטרים Millimiters - + מילימטר Inches @@ -2203,11 +2119,11 @@ Apply settings anyway? Centimeters - + סנטימטרים Millimiters - + מילימטר Inches @@ -2234,7 +2150,7 @@ Apply settings anyway? DialogNormal Length - אורך + אורך Value of length @@ -2260,14 +2176,6 @@ Apply settings anyway? Type of line סוג הקו - - Length of lines - אורך הקווים - - - Length of curves - אורך העקומות - Select second point of line @@ -2276,6 +2184,14 @@ Apply settings anyway? Point along perpendicular + + First point of line + נקודה ראשונה בשורה + + + Second point of line + נקודה שנייה בשורה + Edit length @@ -2535,7 +2451,7 @@ Apply settings anyway? Point label - תווית הנקודה + תווית הנקודה Select an arc @@ -2574,7 +2490,7 @@ Apply settings anyway? Radius - רדיוס + רדיוס <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -2582,7 +2498,7 @@ Apply settings anyway? Point label - תווית הנקודה + תווית הנקודה Select a circle center @@ -2663,14 +2579,6 @@ Apply settings anyway? Select point of center of arc - - Length of lines - אורך הקווים - - - Length of curves - אורך העקומות - Select second point of line @@ -2767,7 +2675,7 @@ Apply settings anyway? Point label - תווית הנקודה + תווית הנקודה Select second an arc @@ -2810,7 +2718,7 @@ Apply settings anyway? Point label - תווית הנקודה + תווית הנקודה Select second circle center @@ -3052,17 +2960,9 @@ Apply settings anyway? Type of line סוג הקו - - Length of lines - אורך הקווים - - - Length of curves - אורך העקומות - Select first point of line - לבחור נקודה ראשונה + לבחור נקודה ראשונה Select second point of line @@ -3360,25 +3260,17 @@ Apply settings anyway? Value - - Line length - אורך הקו - - - Curve length - אורך העקומה - Parser error: %1 First point - נקודה ראשונה + נקודה ראשונה Second point - נקודה שנייה + נקודה שנייה Highest point @@ -3403,6 +3295,10 @@ Apply settings anyway? Point label תווית הנקודה + + First point of line + נקודה ראשונה בשורה + First point נקודה ראשונה @@ -3427,6 +3323,10 @@ Apply settings anyway? Triangle tool + + Second point of line + נקודה שנייה בשורה + Point label: @@ -3540,14 +3440,6 @@ Apply settings anyway? DialogUnionDetails - - Select first point - לבחור נקודה ראשונה - - - Select second point - לבחור נקודה שנייה - Union tool @@ -3687,7 +3579,7 @@ Apply settings anyway? MainWindow Valentina - + ולנטינה Tools for creating points. @@ -3811,7 +3703,7 @@ Apply settings anyway? Create a new pattern - + יצירת תבנית חדשה Open @@ -3827,7 +3719,7 @@ Apply settings anyway? Save - שמור + שמור &Save @@ -3835,7 +3727,7 @@ Apply settings anyway? Save pattern - + שמירת תבנית Save &As... @@ -3971,7 +3863,7 @@ Apply settings anyway? Select first point of line - לבחור נקודה ראשונה + לבחור נקודה ראשונה Select first point of angle @@ -4051,7 +3943,7 @@ Apply settings anyway? Save as - + שמירה בשם Could not save file @@ -4071,7 +3963,7 @@ Apply settings anyway? Error empty parameter. - + שגיאה חסר פרמטר. Error wrong id. @@ -5266,7 +5158,7 @@ Do you want to save your changes? File - + קובץ Window @@ -5294,7 +5186,7 @@ Do you want to save your changes? Save - שמור + שמור Save As ... @@ -5314,7 +5206,7 @@ Do you want to save your changes? New - חדש + חדש Add known @@ -5378,7 +5270,7 @@ Do you want to save your changes? Save as - + שמירה בשם &New Window @@ -5665,13 +5557,6 @@ Do you want to save your changes? - - TableWindow - - Save - שמור - - TapeConfigDialog @@ -6301,7 +6186,7 @@ Do you want to save your changes? Error empty parameter. - + שגיאה חסר פרמטר. Error wrong id. @@ -6498,7 +6383,7 @@ Do you want to save your changes? VToolDetail Options - אפשרויות + אפשרויות Delete @@ -6513,7 +6398,7 @@ Do you want to save your changes? Point label - תווית הנקודה + תווית הנקודה Position @@ -6529,7 +6414,7 @@ Do you want to save your changes? Length - אורך + אורך Angle @@ -6545,7 +6430,7 @@ Do you want to save your changes? Radius - רדיוס + רדיוס First angle @@ -6633,11 +6518,11 @@ Do you want to save your changes? First point - נקודה ראשונה + נקודה ראשונה Second point - נקודה שנייה + נקודה שנייה Arc with given length diff --git a/share/translations/valentina_id_ID.ts b/share/translations/valentina_id_ID.ts index 9304781f9..6d439a346 100644 --- a/share/translations/valentina_id_ID.ts +++ b/share/translations/valentina_id_ID.ts @@ -3,10 +3,6 @@ AddDet - - Add detail - tambahkan detail - add detail @@ -14,10 +10,6 @@ AddPatternPiece - - Add pattern piece %1 - Tambahkan Potongan Pola %1 - add pattern piece %1 @@ -25,22 +17,11 @@ AddToCalc - - Add object - tambahkan obyek - add object - - AddUnionDetails - - Add union details - Tambah rincian himpunan - - CommunityPage @@ -288,10 +269,6 @@ DelTool - - Delete tool - Hapus alat bantu - delete tool @@ -299,10 +276,6 @@ DeleteDetail - - Delete tool - Hapus alat bantu - delete tool @@ -310,10 +283,6 @@ DeletePatternPiece - - Delete pattern piece %1 - Hapus bagian pola % 1 - delete pattern piece %1 @@ -341,10 +310,6 @@ Web site : %1 Situs web : %1 - - Warning - peringatan - Cannot open your default browser Tidak dapat membuka peramban bawaan Anda @@ -382,19 +347,15 @@ Built on %3 at %4 - Dibuat pada %3 at %4 + Dibuat pada %3 at %4 Web site : %1 - Situs web : % 1 - - - Warning - peringatan + Situs web : %1 Cannot open your default browser - Tidak dapat membuka peramban bawaan Anda + Tidak dapat membuka peramban bawaan Anda Built on %1 at %2 @@ -407,10 +368,6 @@ Length panjang - - Insert variable into the formula - Masukkan variabel ke dalam rumus - Value of length Nilai panjang @@ -447,46 +404,6 @@ Show line from first point to this point Tampilkan garis dari titik pertama ke titik ini - - Input data - masukkan data - - - Size and height - Ukuran dan tinggi - - - Measurements - pengukuran - - - Increments - penambahan - - - Length of lines - Panjang garis - - - Length of arcs - Panjang busur - - - Length of curves - Panjang kurva - - - Angle of lines - Sudut garis - - - Hide empty measurements - Sembunyikan pengukuran kosong - - - Variables - Click twice to insert into formula - Variabel - Klik dua kali untuk menyisipkan ke dalam rumus - Select second point of line Pilih titik kedua dari garis @@ -563,10 +480,6 @@ radius - - Insert variable into the formula - sisipkan variabel ke dalam formula - Value of radius nilai radius @@ -579,10 +492,6 @@ First angle sudut pertama - - Insert variable into formula - sisipkan variabel ke dalam formula - Value of first angle nilai dari sudut pertama @@ -591,10 +500,6 @@ Second angle sudut kedua - - Insert marked variable into formula - sisipkan variabel yang ditandai ke dalam formula - Value of second angle nilai dari sudut kedua @@ -607,46 +512,6 @@ Select point of center of arc pilih titik tengah dari busur - - Input data - masukkan data - - - Size and height - ukuran dan tinggi - - - Measurements - pengukuran - - - Increments - tambahan - - - Length of lines - panjang garis - - - Length of arcs - panjang busur - - - Length of curves - panjang kurva - - - Angle of lines - sudut garis - - - Hide empty measurements - sembunyikan pengukuran yang kosong - - - Variables - variabel - Error @@ -720,36 +585,36 @@ Radius - radius + radius Value of radius - nilai radius + nilai radius <html><head/><body><p>Show full calculation in message box</p></body></html> - + <html><head/><body><p>Tampilkan perhitungan penuh dalam kotak pesan</p></body></html> First angle - sudut pertama + sudut pertama Value of first angle - nilai dari sudut pertama + nilai dari sudut pertama Length - panjang + panjang Center point - titik tengah + titik tengah Select point of center of arc - pilih titik tengah dari busur + pilih titik tengah dari busur Edit radius @@ -814,10 +679,6 @@ Length panjang - - Insert marked variable into the formula - sisipkan variabel yang ditandai ke dalam rumus - Value of length nilai panjang @@ -862,46 +723,6 @@ Show line from second point to this point Tampilkan garis dari titik kedua ke titik ini - - Input data - masukan data - - - Size and height - ukuran dan panjang - - - Measurements - pengukuran - - - Increments - tambahan - - - Length of lines - Panjang garis - - - Length of arcs - Panjang busur - - - Length of curves - Panjang kurva - - - Angle of lines - Sudut garis - - - Hide empty measurements - Sembunyikan pengukuran kosong - - - Variables - Click twice to insert into formula - Variabel - Klik dua kali untuk menyisipkan ke dalam rumus - Select second point of angle Pilih titik kedua dari sudut @@ -1001,46 +822,6 @@ Show line from first point to this point Tampilkan garis dari titik pertama ke titik ini - - Input data - masukan data - - - Size and height - ukuran dan panjang - - - Measurements - pengukuran - - - Increments - tambahan - - - Length of lines - panjang garis - - - Length of arcs - panjang busur - - - Length of curves - Panjang kurva - - - Angle of lines - Sudut garis - - - Hide empty measurements - Sembunyikan pengukuran kosong - - - Variables - variabel - Select axis point pilih titik sumbu @@ -1108,10 +889,6 @@ Value of length Nilai panjang - - _ - - - <html><head/><body><p>Show full calculation in message box</p></body></html> <html><head/><body><p>Tampilkan perhitungan penuh dalam kotak pesan</p></body></html> @@ -1124,46 +901,6 @@ Point label label titik - - Input data - masukan data - - - Size and height - ukuran dan panjang - - - Measurements - pengukuran - - - Increments - tambahan - - - Length of lines - panjang garis - - - Length of arcs - panjang busur - - - Length of curves - Panjang kurva - - - Angle of lines - Sudut garis - - - Hide empty measurements - Sembunyikan pengukuran kosong - - - Variables - Click twice to insert into formula - Variabel - Klik dua kali untuk menyisipkan ke dalam rumus - Segment an arc @@ -1219,10 +956,6 @@ Value of length Nilai panjang - - _ - _ - <html><head/><body><p>Show full calculation in message box</p></body></html> <html><head/><body><p>Tampilkan perhitungan penuh dalam kotak pesan</p></body></html> @@ -1239,46 +972,6 @@ Point label label titik - - Input data - masukan data - - - Size and height - ukuran dan panjang - - - Measurements - pengukuran - - - Increments - tambahan - - - Length of lines - panjang garis - - - Length of arcs - panjang busur - - - Length of curves - Panjang kurva - - - Angle of lines - Sudut garis - - - Hide empty measurements - Sembunyikan pengukuran kosong - - - Variables - Click twice to insert into formula - Variabel - Klik dua kali untuk menyisipkan ke dalam rumus - Segmenting a simple curve @@ -1334,10 +1027,6 @@ Value of length Nilai panjang - - _ - _ - <html><head/><body><p>Show full calculation in message box</p></body></html> <html><head/><body><p>Tampilkan perhitungan penuh dalam kotak pesan</p></body></html> @@ -1354,46 +1043,6 @@ Point label label titik - - Input data - masukan data - - - Size and height - ukuran dan panjang - - - Measurements - pengukuran - - - Increments - tambahan - - - Length of lines - panjang garis - - - Length of arcs - panjang busur - - - Length of curves - Panjang kurva - - - Angle of lines - Sudut garis - - - Hide empty measurements - Sembunyikan pengukuran kosong - - - Variables - Click twice to insert into formula - Variabel - Klik dua kali untuk menyisipkan ke dalam rumus - Segment a curved path @@ -1552,10 +1201,6 @@ Value of first angle nilai dari sudut pertama - - _ - _ - <html><head/><body><p>Show full calculation in message box</p></body></html> <html><head/><body><p>Tampilkan perhitungan penuh dalam kotak pesan</p></body></html> @@ -1596,10 +1241,6 @@ Hide empty measurements Sembunyikan pengukuran kosong - - Variables - variabel - Double click for add to formula @@ -1661,43 +1302,39 @@ DialogEndLine Length - panjang + panjang + + + Value of length + Nilai panjang <html><head/><body><p>Show full calculation in message box</p></body></html> - + <html><head/><body><p>Tampilkan perhitungan penuh dalam kotak pesan</p></body></html> Angle - sudut + sudut Value of angle - nilai dari sudut + nilai dari sudut First point of line - Titik pertama dari baris + Titik pertama dari baris Point label - label titik + label titik Type of line - Jenis baris + Jenis baris Show line from first point to this point - Tampilkan garis dari titik pertama ke titik ini - - - Measurements - pengukuran - - - Variables - variabel + Tampilkan garis dari titik pertama ke titik ini Point at distance and angle @@ -1760,19 +1397,19 @@ DialogHeight Point label - label titik + label titik First point of line - Titik pertama dari baris + Titik pertama dari baris Second point of line - titik kedua dari baris + titik kedua dari baris Type of line - Jenis baris + Jenis baris Select first point of line @@ -1780,7 +1417,7 @@ Select second point of line - Pilih titik kedua dari garis + Pilih titik kedua dari garis Perpendicular point along line @@ -1942,15 +1579,7 @@ DialogIncrements Increments - - - - Measurements - pengukuran - - - Email - Surel + tambahan Name @@ -1970,19 +1599,15 @@ Length - panjang + panjang Curve - kurva + kurva Arc - busur - - - Open file - Buka file + busur Tables of Variables @@ -1994,7 +1619,7 @@ Angle - sudut + sudut Lengths curves @@ -2014,7 +1639,7 @@ Radius - radius + radius @@ -2023,7 +1648,7 @@ Formula - rumus + rumus Details @@ -2051,7 +1676,7 @@ <html><head/><body><p>Show full calculation in message box</p></body></html> - + <html><head/><body><p>Tampilkan perhitungan penuh dalam kotak pesan</p></body></html> Description: @@ -2098,25 +1723,6 @@ - - DialogIndividualMeasurements - - Pattern piece name - Nama potongan pola - - - Centimeters - Centimeter - - - Millimiters - Milimeter - - - Inches - Inchi - - DialogLayoutProgress @@ -2180,15 +1786,15 @@ Millimiters - Milimeter + Milimeter Centimeters - Centimeter + Centimeter Inches - Inchi + Inchi Pixels @@ -2328,19 +1934,19 @@ Apply settings anyway? DialogLine First point - Titik pertama + Titik pertama Second point - titik kedua + titik kedua Type of line - Jenis baris + Jenis baris Show line from first point to this point - Tampilkan garis dari titik pertama ke titik ini + Tampilkan garis dari titik pertama ke titik ini Select second point @@ -2371,7 +1977,7 @@ Apply settings anyway? DialogLineIntersect Point label - label titik + label titik First line @@ -2379,11 +1985,11 @@ Apply settings anyway? First point - Titik pertama + Titik pertama Second point - titik kedua + titik kedua Second line @@ -2430,51 +2036,43 @@ Apply settings anyway? DialogLineIntersectAxis Angle - sudut + sudut Value of angle - nilai dari sudut + nilai dari sudut <html><head/><body><p>Show full calculation in message box</p></body></html> - + <html><head/><body><p>Tampilkan perhitungan penuh dalam kotak pesan</p></body></html> Axis point - titik sumbu + titik sumbu First point of line - Titik pertama dari baris + Titik pertama dari baris Point label - label titik + label titik Type of line - Jenis baris + Jenis baris Show line from first point to this point - Tampilkan garis dari titik pertama ke titik ini - - - Measurements - pengukuran - - - Variables - variabel + Tampilkan garis dari titik pertama ke titik ini Select second point of line - Pilih titik kedua dari garis + Pilih titik kedua dari garis Select axis point - pilih titik sumbu + pilih titik sumbu Point intersect line and axis @@ -2486,7 +2084,7 @@ Apply settings anyway? Second point of line - titik kedua dari baris + titik kedua dari baris Edit angle @@ -2549,7 +2147,7 @@ Apply settings anyway? Measurements - pengukuran + pengukuran Direct Height @@ -2653,13 +2251,6 @@ Apply settings anyway? - - DialogMeasurements - - Measurements - pengukuran - - DialogNewMeasurements @@ -2692,22 +2283,22 @@ Apply settings anyway? Centimeters - Centimeter + Centimeter Millimiters - Milimeter + Milimeter Inches - Inchi + Inchi DialogNewPattern Pattern piece name - Nama potongan pola + Nama potongan pola Units: @@ -2715,15 +2306,15 @@ Apply settings anyway? Centimeters - Centimeter + Centimeter Millimiters - Milimeter + Milimeter Inches - Inchi + Inchi Pattern piece name: @@ -2746,43 +2337,39 @@ Apply settings anyway? DialogNormal Length - panjang + panjang + + + Value of length + Nilai panjang <html><head/><body><p>Show full calculation in message box</p></body></html> - + <html><head/><body><p>Tampilkan perhitungan penuh dalam kotak pesan</p></body></html> Point label - label titik + label titik First point - Titik pertama + Titik pertama Second point - titik kedua + titik kedua Type of line - Jenis baris + Jenis baris Show line from first point to this point - Tampilkan garis dari titik pertama ke titik ini - - - Measurements - pengukuran - - - Variables - Click twice to insert into formula - Variabel - Klik dua kali untuk menyisipkan ke dalam rumus + Tampilkan garis dari titik pertama ke titik ini Select second point of line - Pilih titik kedua dari garis + Pilih titik kedua dari garis Point along perpendicular @@ -2790,11 +2377,11 @@ Apply settings anyway? First point of line - Titik pertama dari baris + Titik pertama dari baris Second point of line - titik kedua dari baris + titik kedua dari baris Edit length @@ -3055,15 +2642,15 @@ Apply settings anyway? Point label - label titik + label titik Arc - busur + busur Select point of center of arc - pilih titik tengah dari busur + pilih titik tengah dari busur Select an arc @@ -3102,20 +2689,20 @@ Apply settings anyway? Radius - radius + radius <html><head/><body><p>Show full calculation in message box</p></body></html> - + <html><head/><body><p>Tampilkan perhitungan penuh dalam kotak pesan</p></body></html> Point label - label titik + label titik Select point of center of arc - pilih titik tengah dari busur + pilih titik tengah dari busur Select a circle center @@ -3178,32 +2765,28 @@ Apply settings anyway? DialogPointOfContact Radius - radius + radius Value of radius - nilai radius + nilai radius <html><head/><body><p>Show full calculation in message box</p></body></html> - + <html><head/><body><p>Tampilkan perhitungan penuh dalam kotak pesan</p></body></html> Point label - label titik + label titik Select point of center of arc - pilih titik tengah dari busur - - - Measurements - pengukuran + pilih titik tengah dari busur Select second point of line - Pilih titik kedua dari garis + Pilih titik kedua dari garis Point at intersection of arc and line @@ -3258,15 +2841,15 @@ Apply settings anyway? DialogPointOfIntersection Point label - label titik + label titik First point of angle - Titik pertama dari sudut + Titik pertama dari sudut Second point of angle - titik kedua dari sudut + titik kedua dari sudut Point from X and Y of two other points @@ -3305,7 +2888,7 @@ Apply settings anyway? Point label - label titik + label titik Select second an arc @@ -3344,15 +2927,15 @@ Apply settings anyway? <html><head/><body><p>Show full calculation in message box</p></body></html> - + <html><head/><body><p>Tampilkan perhitungan penuh dalam kotak pesan</p></body></html> Point label - label titik + label titik Select point of center of arc - pilih titik tengah dari busur + pilih titik tengah dari busur Select second circle center @@ -3568,39 +3151,35 @@ Apply settings anyway? DialogShoulderPoint Length - panjang + panjang + + + Value of length + Nilai panjang <html><head/><body><p>Show full calculation in message box</p></body></html> - + <html><head/><body><p>Tampilkan perhitungan penuh dalam kotak pesan</p></body></html> Point label - label titik + label titik First point - Titik pertama + Titik pertama Second point - titik kedua + titik kedua Third point - titik ketiga + titik ketiga Type of line - Jenis baris - - - Measurements - pengukuran - - - Variables - Click twice to insert into formula - Variabel - Klik dua kali untuk menyisipkan ke dalam rumus + Jenis baris Select first point of line @@ -3608,7 +3187,7 @@ Apply settings anyway? Select second point of line - Pilih titik kedua dari garis + Pilih titik kedua dari garis Special point on shoulder @@ -3691,7 +3270,7 @@ Apply settings anyway? Point label - label titik + label titik Unique label @@ -3706,11 +3285,11 @@ Apply settings anyway? DialogSpline First point - Titik pertama + Titik pertama Second point - titik kedua + titik kedua Select last point of curve @@ -3884,13 +3463,6 @@ Apply settings anyway? - - DialogStandardMeasurements - - Pattern piece name - Nama potongan pola - - DialogTool @@ -3915,11 +3487,11 @@ Apply settings anyway? First point - Titik pertama + Titik pertama Second point - titik kedua + titik kedua Highest point @@ -3942,19 +3514,19 @@ Apply settings anyway? DialogTriangle Point label - label titik + label titik First point of line - Titik pertama dari baris + Titik pertama dari baris First point - Titik pertama + Titik pertama Second point - titik kedua + titik kedua Select second point of axis @@ -3974,7 +3546,7 @@ Apply settings anyway? Second point of line - titik kedua dari baris + titik kedua dari baris Point label: @@ -4013,19 +3585,19 @@ Apply settings anyway? First point of angle - Titik pertama dari sudut + Titik pertama dari sudut Second point of angle - titik kedua dari sudut + titik kedua dari sudut Third point of angle - titik ketiga dari sudut + titik ketiga dari sudut Show line from second point to this point - Tampilkan garis dari titik kedua ke titik ini + Tampilkan garis dari titik kedua ke titik ini Select the second base point @@ -4096,7 +3668,7 @@ Apply settings anyway? &Cancel - &Batalkan + &Batalkan Error while calculation formula. You can try to undo last operation or fix broken formula. @@ -4138,14 +3710,6 @@ Apply settings anyway? - - Functions - - min - min of all arguments - minimal - - InternalStrings @@ -4304,7 +3868,7 @@ Apply settings anyway? Curve - kurva + kurva Tools for creating arcs. @@ -4312,7 +3876,7 @@ Apply settings anyway? Arc - busur + busur Tools for creating details. @@ -4320,7 +3884,7 @@ Apply settings anyway? Detail - rincial + rincial &File @@ -4336,7 +3900,7 @@ Apply settings anyway? Measurements - pengukuran + pengukuran Window @@ -4392,7 +3956,7 @@ Apply settings anyway? Save - Simpan + Simpan &Save @@ -4556,7 +4120,7 @@ Apply settings anyway? Select point of center of arc - pilih titik tengah dari busur + pilih titik tengah dari busur Select point of curve path @@ -4614,10 +4178,6 @@ Apply settings anyway? pattern - - /pattern.val - /Pola.val - Save as @@ -4662,10 +4222,6 @@ Apply settings anyway? untitled.val tanpajudul.val - - Unsaved change - Perubahan belum disimpan - The pattern has been modified. Do you want to save your changes? @@ -5253,89 +4809,6 @@ Apakah anda ingin menyimpan perubahan anda? - - Measurements - - head_girth - Short measurement name. Don't use math symbols in name!!!! - Lingkar Kepala - - - mid_neck_girth - Short measurement name. Don't use math symbols in name!!!! - Setengah Lingkar Leher - - - neck_base_girth - Short measurement name. Don't use math symbols in name!!!! - Lingkar Leher Bawah - - - head_and_neck_length - Short measurement name. Don't use math symbols in name!!!! - Panjang Leher dan Kepala - - - shoulder_length - Short measurement name. Don't use math symbols in name!!!! - Panjang Bahu - - - side_waist_length - Short measurement name. Don't use math symbols in name!!!! - Panjang Sisi Pinggang - - - trunk_length - Short measurement name. Don't use math symbols in name!!!! - Panjang Badan - - - shoulder_girth - Short measurement name. Don't use math symbols in name!!!! - Lingkar Bahu - - - upper_chest_girth - Short measurement name. Don't use math symbols in name!!!! - Lingkar data atas - - - bust_girth - Short measurement name. Don't use math symbols in name!!!! - Lingkar dada/payudara - - - under_bust_girth - Short measurement name. Don't use math symbols in name!!!! - lingkar bawah payudara - - - waist_girth - Short measurement name. Don't use math symbols in name!!!! - Lingkar Pinggang - - - high_hip_girth - Short measurement name. Don't use math symbols in name!!!! - Tinggi Lingkar Pinggul - - - hip_girth - Short measurement name. Don't use math symbols in name!!!! - Lingkar Pinggul - - - upper_front_chest_width - Short measurement name. Don't use math symbols in name!!!! - Lebar dada depan atas - - - front_chest_width - Short measurement name. Don't use math symbols in name!!!! - Lebar dada depan - - MoveDoubleLabel @@ -5449,14 +4922,6 @@ Apakah anda ingin menyimpan perubahan anda? - - PostfixOperators - - cm - centimeter - cm - - QApplication @@ -5530,7 +4995,7 @@ Apakah anda ingin menyimpan perubahan anda? cm - cm + cm inch @@ -5803,7 +5268,7 @@ Apakah anda ingin menyimpan perubahan anda? Name - Nama + Nama Calculated value @@ -5811,7 +5276,7 @@ Apakah anda ingin menyimpan perubahan anda? Formula - rumus + rumus Base value @@ -5839,7 +5304,7 @@ Apakah anda ingin menyimpan perubahan anda? <html><head/><body><p>Show full calculation in message box</p></body></html> - + <html><head/><body><p>Tampilkan perhitungan penuh dalam kotak pesan</p></body></html> Base value: @@ -5943,7 +5408,7 @@ Apakah anda ingin menyimpan perubahan anda? Measurements - pengukuran + pengukuran Menu @@ -5959,7 +5424,7 @@ Apakah anda ingin menyimpan perubahan anda? Save - Simpan + Simpan Save As ... @@ -6112,7 +5577,7 @@ Do you want to save your changes? Open file - + Buka File Import from a pattern @@ -6330,34 +5795,27 @@ Do you want to save your changes? - - TableWindow - - Save - Simpan - - TapeConfigDialog Apply - Terapkan + Terapkan &Cancel - &Batalkan + &Batalkan &Ok - &Ok + &Ok Config Dialog - Dialog konfigurasi + Dialog konfigurasi Configuration - Konfigurasi + Konfigurasi Paths @@ -6368,11 +5826,11 @@ Do you want to save your changes? TapeConfigurationPage Language - Bahasa + Bahasa GUI language - Bahasa GUI + Bahasa GUI Pattern making system @@ -6388,11 +5846,11 @@ Do you want to save your changes? Decimal separator parts - komponen pemisah desimal + komponen pemisah desimal With OS options (%1) - dengan pilihan OS (%1) + dengan pilihan OS (%1) GUI language: @@ -6637,7 +6095,7 @@ Do you want to save your changes? Angle - sudut + sudut Auto crop unused length (export mode). @@ -6737,11 +6195,11 @@ Do you want to save your changes? Pattern making program. - program pembuat pola + program pembuat pola Pattern file. - Berkas pola. + Berkas pola. Gap width must be used together with shift units. @@ -6904,11 +6362,11 @@ Do you want to save your changes? Options - pilihan + pilihan Delete - hapus + hapus @@ -6926,7 +6384,7 @@ Do you want to save your changes? Formula - rumus + rumus @@ -7171,11 +6629,11 @@ Do you want to save your changes? VToolDetail Options - pilihan + pilihan Delete - hapus + hapus @@ -7186,7 +6644,7 @@ Do you want to save your changes? Point label - label titik + label titik Position @@ -7202,11 +6660,11 @@ Do you want to save your changes? Length - panjang + panjang Angle - sudut + sudut Point at distance along line @@ -7214,20 +6672,20 @@ Do you want to save your changes? Arc - busur + busur Radius - radius + radius First angle - sudut pertama + sudut pertama Second angle - sudut kedua + sudut kedua Point along bisector @@ -7307,11 +6765,11 @@ Do you want to save your changes? First point - Titik pertama + Titik pertama Second point - titik kedua + titik kedua Arc with given length @@ -8395,7 +7853,7 @@ Do you want to save your changes? min min of all arguments - minimal + minimal max @@ -8420,7 +7878,7 @@ Do you want to save your changes? cm centimeter - cm + cm mm @@ -8518,17 +7976,6 @@ Do you want to save your changes? - - main - - Pattern making program. - program pembuat pola - - - Pattern file. - Berkas pola. - - vNoisyHandler diff --git a/share/translations/valentina_pt_BR.ts b/share/translations/valentina_pt_BR.ts index 07e01bdde..07d280c9c 100644 --- a/share/translations/valentina_pt_BR.ts +++ b/share/translations/valentina_pt_BR.ts @@ -4,317 +4,259 @@ AddDet - add detail - + Adicionar detalhe AddPatternPiece - add pattern piece %1 - + Adicionar peça padrão %1 AddToCalc - add object - + Adicionar objeto + + + + AddUnionDetails + + add union details + Adicionar detalhes de ligação CommunityPage - - Server - + Servidor - - - Server name/IP: - + Server name/IP + Nome do Servidor/IP - - Secure connection - + Conexão Segura - - Proxy settings - + Configurações de Proxy - - Use Proxy - + Usar Proxy + + + Proxy address + Endereço do Proxy + + + Proxy port + Porta do Proxy + + + Proxy user + Usuário do Proxy + + + Proxy pass + Senha Do Proxy + + + User settings + Configurações do Usuário + + + User Name + Usuário + + + Save password + Salvar Senha + + + Password + Senha + + + Server name/IP: + Nome do Servidor/IP - - Proxy address: - + Endereço do Proxy - - Proxy port: - + Porta do Proxy - - Proxy user: - + Usuário do Proxy - - Proxy pass: - - - User settings - - - - - User Name: - + Nome de usuário - - - Save password - - - - - Password: - + Senha: ConfigDialog - - Apply - + Aplicar - - &Cancel - + Cancelar - - &Ok - + Ok - - Config Dialog - - Configuration - + Configuração - - Pattern - + Padrão - - Community - + Comunidade - - Paths - + Paths ConfigurationPage - - The Default unit has been updated and will be used as the default for the next pattern you create. - - - - - Save - + Salvar - - Auto-save modified pattern - + Salvar - - min - + min - - Interval: - + Intervalo - - Language - + Idioma - - - GUI language: - - - - - - Decimal separator parts: - - - - - With OS options (%1) - - + Default unit + Unidade de medida padrão + + Centimeters - + Centimetros - - Millimiters - + Milimetros - - Inches - + Polegadas - - - Default unit: - - - - - - Label language: - - - - - - Pattern making system - - - - - - Pattern making system: - - - - - - Author: - - - - - - Book: - - - - - Send crash reports - + Enviar relatório de erro - - Send crash reports (recommended) - + Enviar relatório de erro ( Recomendável ) - - - After each crash Valentina collects information that may help us fix the problem. We do not collect any personal information. Find more about what <a href="https://bitbucket.org/dismine/valentina/wiki/manual/Crash_reports">kind of information</a> we collect. - - - - - Pattern Editing - - - Confirm item deletion - - Toolbar - - - The text appears under the icon. (recommended for beginners.) + + GUI language: + + + + Decimal separator parts: + + + + Default unit: + + + + Label language: + + + + Pattern making system + + + + Pattern making system: + + + + Author: + Autor: + + + Book: + Livro: + + + The Default unit has been updated and will be used as the default for the next pattern you create. + + + + After each crash Valentina collects information that may help us fix the problem. We do not collect any personal information. Find more about what <a href="https://bitbucket.org/dismine/valentina/wiki/manual/Crash_reports">kind of information</a> we collect. + + DelTool - delete tool @@ -322,7 +264,6 @@ DeleteDetail - delete tool @@ -330,7 +271,6 @@ DeletePatternPiece - delete pattern piece %1 @@ -338,1669 +278,1547 @@ DialogAboutApp - About Valentina - + Sobre Valentina - Valentina version - + Versão Valentina - - Build revision: - - - - Contributors - + Contribuidores - - Built on %1 at %2 - - - - Web site : %1 - Cannot open your default browser + + Build revision: + + + + Built on %1 at %2 + + DialogAboutTape - About Tape - Tape version - Build revision: - This program is part of Valentina project. - - Cannot open your default browser - - - - Build revision: %1 - - Built on %1 at %2 + Web site : %1 - - Web site : %1 + Cannot open your default browser + + + + Built on %1 at %2 DialogAlongLine - - Point at distance along line - + Length + Comprimento - - Length: - + Value of length + Valor do comprimento - - Formula wizard - - - - - Value - - - - - Calculation - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - + First point + Primeiro ponto + + + First point of line + Primeiro ponto da linha + + + Second point + Segundo ponto + + + Second point of line + Segundo ponto da linha + + + Type of line + Tipo de linha + + + Select second point of line + + + + Point at distance along line + + + + Line color + Cor da linha + + + Edit length + Editar comprimento + + + Length: + Comprimento + + + Formula wizard + + + + Value + Valor + + + Calculation + Cálculo + + Point label: - First point: - + Primeiro ponto - First point of the line - Second point: - + Segundo ponto - Second point of the line - Type of line: - + Tipo de linha - Line color: - + Cor da linha - Unique label - Choose unique label. - - - Edit length - - - - - Select second point of line - - DialogArc - Arc - + Arco - - Radius: - - - - - - - Formula wizard - - - - - - - Value - - - - - Calulation - - - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - - First angle: - + First angle + Primeiro ângulo - - - Calculation - + Value of first angle + Valor do primeiro ângulo - - Second angle: - + Second angle + Segundo ângulo - - Center point: - + Value of second angle + Valor do segundo ângulo - - Select center point of the arc - + Center point + Ponto central - - Color: - + Select point of center of arc + Selecione o ponto central da curva - - Edit radius - - - - - Edit first angle - - - - - Edit second angle - - - - - - Error - + Erro - Radius can't be negative - - Angles equal + + Color + Cor + + + Edit radius + + + + Edit first angle + + + + Edit second angle + + + + Radius: + + + + Formula wizard + + + + Value + Valor + + + Calulation + + + + First angle: + Primeiro ângulo + + + Calculation + Cálculo + + + Second angle: + Segundo ângulo + + + Center point: + Ponto central + + + Select center point of the arc + + + + Color: + Cor + DialogArcWithLength - Dialog - - Radius: - - - - - - - Formula wizard - - - - - - - Value - - - - - - - Calculation - - - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - - First angle: - + First angle + Primeiro ângulo - - Length: - + Value of first angle + Valor do primeiro ângulo - - Center point: - + Length + Comprimento - - Color: - + Center point + Ponto central + + + Select point of center of arc + Selecione o ponto central da curva + + + Color + Cor - Edit radius - Edit the first angle - Edit the arc length - - Error - + Erro - Radius can't be negative - Length can't be equal 0 + + Radius: + + + + Formula wizard + + + + Value + Valor + + + Calculation + Cálculo + + + First angle: + Primeiro ângulo + + + Length: + Comprimento + + + Center point: + Ponto central + + + Color: + Cor + DialogBisector - - Point along bisector - + Length + Comprimento - - Length: - + Value of length + Valor do comprimento - - Formula wizard - - - - - Value - - - - - Calculation - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - - Point label: - + First point + Primeiro ponto - - Unique label - + Second point + Segundo ponto - - Choose unique label. - + Type of line + Tipo de linha - - First point: - - - - - Second point: - - - - - Third point: - - - - - Type of line: - - - - - Line color: - - - - - Edit length - - - - Select second point of angle - Select third point of angle + + Point along bisector + + + + Line color + Cor da linha + + + Edit length + Editar comprimento + + + Length: + Comprimento + + + Formula wizard + + + + Value + Valor + + + Calculation + Cálculo + + + Point label: + + + + Unique label + + + + Choose unique label. + + + + First point: + Primeiro ponto + + + Second point: + Segundo ponto + + + Third point: + + + + Type of line: + Tipo de linha + + + Line color: + Cor da linha + DialogCurveIntersectAxis - - Point intersect curve and axis - + Angle + Ângulo - - Angle: - - - - - Formula wizard - - - - - Value - - - - - Calculation - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - - Axis point: - + Curve + Curva - - Curve: - + Type of line + Tipo de linha - - Point label: - - - - - Unique label - - - - - Choose unique label. - - - - - Type of line: - - - - - Line color: - - - - Select axis point - + Point intersect curve and axis + + + + Line color + Cor da linha + + Edit angle + + Angle: + + + + Formula wizard + + + + Value + Valor + + + Calculation + Cálculo + + + Axis point: + + + + Curve: + Curva: + + + Point label: + + + + Unique label + + + + Choose unique label. + + + + Type of line: + Tipo de linha + + + Line color: + Cor da linha + DialogCutArc - - Segment an arc - + Length + Comprimento - - Length: - + Value of length + Valor do comprimento - - Formula wizard - - - - - Value - - - - - Calculation - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - + Arc + Arco + + + Segment an arc + + + + Selected arc + Selecionar arco + + + Color + Cor + + + Edit length + Editar comprimento + + + Length: + Comprimento + + + Formula wizard + + + + Value + Valor + + + Calculation + Cálculo + + Arc: - Point label: - Unique label - Choose unique label. - Color: - - - - - Edit length - + Cor DialogCutSpline - - Segmenting a simple curve - + Length + Comprimento - - Length: - + Value of length + Valor do comprimento - - Formula wizard - - - - - Value - - - - - Calculation - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - - Curve: + Curve + Curva + + + Selected curve + Curva selecionada + + + Segmenting a simple curve - + Color + Cor + + + Edit length + Editar comprimento + + + Length: + Comprimento + + + Formula wizard + + + + Value + Valor + + + Calculation + Cálculo + + + Curve: + Curva: + + Point label: - Unique label - Choose unique label. - Color: - - - - - Edit length - + Cor DialogCutSplinePath - - Segment a curved path - + Length + Comprimento - - Length: - + Value of length + Valor do comprimento - - Formula wizard - - - - - Value - - - - - Calculation - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - - Curve: + Curve + Curva + + + Segment a curved path - + Color + Cor + + + Edit length + Editar comprimento + + + Length: + Comprimento + + + Formula wizard + + + + Value + Valor + + + Calculation + Cálculo + + + Curve: + Curva: + + Point label: - Unique label - Choose unique label. - Color: - - - - - Edit length - + Cor DialogDetail - - Seam allowance tool - - - - - All objects in path should follow in clockwise direction. - - - - - Bias X: - - - - - - - cm - - - - - Bias Y: - - - - - Reverse - - - - - Options - - - - - Name of detail: - - - - Detail - + cm + + + + Options + Opções + + Seam allowance - - Width: - - - - Closed - + Fechado - Delete - + Excluir - - Scroll down the list - - - - - Scroll up the list - - - - - - Ready! - - - - Got wrong scene object. Ignore. - + Reverse + + + + Seam allowance tool + + + + All objects in path should follow in clockwise direction. + + + + Scroll down the list + + + + ... + ... + + + Scroll up the list + + + + Ready! + Pronto! + + You need more points! - + You have double points! + + + You have to choose points in a clockwise direction! - - First point cannot be equal to the last point! + Bias X: - - You have double points! + Bias Y: + + + + Name of detail: + + + + Width: + Largura: + + + First point cannot be equal to the last point! DialogEditWrongFormula - Edit formula - + Editar fórmula - - Formula: - + Formula + Fórmula - Insert variable into formula - - Value - + Value of first angle + Valor do primeiro ângulo - - Calculation - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - Input data - + Inserir dados + + + Size and height + Tamanho e altura - Measurements - Increments - + Incrementos - Length of lines - + Comprimento das linhas - Length of arcs - + Comprimento dos arcos - Length of curves - + Comprimento das curvas - Angle of lines - + Ângulo das linhas - - Radius of arcs - - - - - Angles of arcs - - - - - Angles of curves - - - - Hide empty measurements - Double click for add to formula - - Line length - + Height + Altura: + + + Size + Tamanho: + + + Line length + Comprimento da linha - Arc length - Curve length - Line Angle - + Radius of arcs + + + + Angles of arcs + + + + Angles of curves + + + Arc radius - Arc angle - Curve angle + + Formula: + Fórmula: + + + Value + Valor + + + Calculation + Cálculo + DialogEndLine - - Point at distance and angle - + Length + Comprimento - - Length: - + Value of length + Valor do comprimento - - - Formula wizard - - - - - - Value - - - - - - Calculation - - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - - Angle: + Angle + Ângulo + + + First point of line + Primeiro ponto da linha + + + Type of line + Tipo de linha + + + Point at distance and angle - - Base point: - + Line color + Cor da linha - - Point label: - - - - - Unique label - - - - - Choose unique label. - - - - - Type of line: - - - - - Line color: - - - - Edit angle - Edit length + Editar comprimento + + + Length: + Comprimento + + + Formula wizard + + Value + Valor + + + Calculation + Cálculo + + + Angle: + + + + Base point: + + + + Point label: + + + + Unique label + + + + Choose unique label. + + + + Type of line: + Tipo de linha + + + Line color: + Cor da linha + DialogHeight - - Perpendicular point along line - + First point of line + Primeiro ponto da linha - - Point label: - + Second point of line + Segundo ponto da linha - - Unique label - + Type of line + Tipo de linha - - Choose unique label. - - - - - Base point: - - - - - First point of line: - - - - - Second point of line: - - - - - Type of line: - - - - - Line color: - - - - Select first point of line - Select second point of line + + Perpendicular point along line + + + + Line color + Cor da linha + + + Point label: + + + + Unique label + + + + Choose unique label. + + + + Base point: + + + + First point of line: + + + + Second point of line: + + + + Type of line: + Tipo de linha + + + Line color: + Cor da linha + DialogHistory - History - - Tool - - - - - Can't create record. - %1 - Base point - - %1_%2 - Line from point %1 to point %2 - %3 - Point along line %1_%2 - %1 - Point of shoulder - %3 - normal to line %1_%2 - %4 - bisector of angle %1_%2_%3 - %5 - intersection of lines %1_%2 and %3_%4 - Curve %1_%2 - Arc with center in point %1 - - Arc with center in point %1 and length %2 - - - - Curve point %1 - %4 - point of contact of arc with the center in point %1 and line %2_%3 - Point of perpendicular from point %1 to line %2_%3 - Triangle: axis %1_%2, points %3 and %4 - %1 - point of intersection %2 and %3 - %1 - cut arc with center %2 - %1 - cut curve %2_%3 - %1 - cut curve path %2 - %1 - point of intersection line %2_%3 and axis through point %4 - %1 - point of intersection curve and axis through point %2 - + Arc with center in point %1 and length %2 + + + %1 - point of arcs intersection - %1 - point of circles intersection - - %1 - point of curves intersection - - - - %1 - point from circle and tangent - %1 - point from arc and tangent - Correction the dart %1_%2_%3 + + %1 - point of curves intersection + + DialogIncrements - - Tables of Variables - - - - Increments - + Incrementos - Name - + Nome - The calculated value - - Formula - - - - - - Details - - - - - Move measurement up - - - - - Move measurement down - - - - - Name: - - - - - Unique increment name - - - - - Calculated value: - - - - - Formula: - - - - - Calculation - - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - - - - - Formula wizard - - - - - Description: - - - - Lines - + Linhas - - Line - - - Length + Comprimento + + + Curve + Curva + + + Arc + Arco + + + Tables of Variables - Lines angles - - - Angle - + Ângulo - Lengths curves - - - Curve - - - - Angles curves - Lengths arcs - - - - Arc - - - - Radiuses arcs - Radius - Angles arcs - - - - Error + Formula + Fórmula + + + Details - - + Move measurement up + + + + Move measurement down + + + + Name: + + + + Calculated value: + + + + Formula: + Fórmula + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + Description: + + + + Error + Erro + + Empty field. - Empty field - Value - + Valor - - Parser error: %1 - Increment_%1 - Edit increment + + Unique increment name + + + + Calculation + Cálculo + + + Formula wizard + + DialogLayoutProgress - - Create a Layout - - - - - <html><head/><body><p>Finding best position for worpieces. Please, wait.</p></body></html> - - - - - - Arranged workpieces: %1 from %2 - - - - Couldn't prepare data for creation layout - Several workpieces left not arranged, but none of them match for paper + + Create a Layout + + + + <html><head/><body><p>Finding best position for worpieces. Please, wait.</p></body></html> + + + + Arranged workpieces: %1 from %2 + + DialogLayoutSettings - - Create a layout - - - - - Paper format - - - - Templates: - Width: - + Largura: - Height: - - Fields - - - - - Left: - - - - - Right: - - - - - Top: - - - - - Bottom: - - - - - Ignore fileds - - - - - Layout options - - - - - Gap width: - - - - - Shift/Offset length: - - - - - Save length of the sheet - - - - Rotate workpiece - Rotate by - degree - - Rule for choosing the next workpiece - - - - Three groups: big, middle, small - Two groups: big, small - Descending area - + Millimiters + Milimetros + + + Centimeters + Centimetros + + + Inches + Polegadas + + + Pixels + + + + Create a layout + + + Auto crop unused length - Unite pages (if possible) - - Enabling for sheets that have big height will speed up creating. + Gap width: - - Divide into strips + Save length of the sheet - - Multiplier - - - - - Set multiplier for length of the biggest workpiece in layout. - - - - - x - - - - Letter - Legal - Roll 24in - Roll 30in - Roll 36in - Roll 42in - Roll 44in - + Paper format + + + + Fields + + + + Left: + + + + Right: + + + + Top: + + + + Bottom: + + + + Ignore fileds + + + Custom - + Wrong fields. + + + + Fields go beyond printing. + +Apply settings anyway? + + + Three groups: big, middle, small = 0; Two groups: big, small = 1; @@ -2008,390 +1826,343 @@ - - Wrong fields. + Layout options - - Fields go beyond printing. - -Apply settings anyway? + Shift/Offset length: - - - Millimiters + Rule for choosing the next workpiece - - - Centimeters + Enabling for sheets that have big height will speed up creating. - - - Inches + Divide into strips - - Pixels + Multiplier + + + + Set multiplier for length of the biggest workpiece in layout. + + + + x DialogLine - + First point + Primeiro ponto + + + Second point + Segundo ponto + + + Type of line + Tipo de linha + + + Select second point + + + Line between points - + Line color + Cor da linha + + First point: - + Primeiro ponto - Second point: - + Segundo ponto - Type of line: - + Tipo de linha - Line color: - - - - - Select second point - + Cor da linha DialogLineIntersect - - Point at line intersection - - - - - Point label: - - - - - Unique label - - - - - Choose unique label. - - - - First line - - - First point: - + First point + Primeiro ponto - - - Second point: - + Second point + Segundo ponto - Second line - Select second point of first line - Select first point of second line - Select second point of second line + + Point at line intersection + + + + Point label: + + + + Unique label + + + + Choose unique label. + + + + First point: + Primeiro ponto + + + Second point: + Segundo ponto + DialogLineIntersectAxis - - Point intersect line and axis - + Angle + Ângulo - - Angle: - - - - - Formula wizard - - - - - Value - - - - - Calculation - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - - Axis point: - - - - - Axis Point - - - - - First line point: - - - - First point of line - + Primeiro ponto da linha - - Second line point: - + Type of line + Tipo de linha - - Second point of line - - - - - Point label: - - - - - Unique label - - - - - Choose unique label. - - - - - Type of line: - - - - Show line from first point to this point - - Line color: - - - - Select second point of line - Select axis point - + Point intersect line and axis + + + + Axis Point + + + + Second point of line + Segundo ponto da linha + + + Line color + Cor da linha + + Edit angle + + Angle: + + + + Formula wizard + + + + Value + Valor + + + Calculation + Cálculo + + + Axis point: + + + + First line point: + + + + Second line point: + + + + Point label: + + + + Unique label + + + + Choose unique label. + + + + Type of line: + Tipo de linha + + + Line color: + Cor da linha + DialogMDataBase - Measurement data base - Measurements - - Direct Height Measurement section - - Direct Width Measurement section - - Indentation Measurement section - - - Hand - Measurement section - - - - - - Foot - Measurement section - - - - - - Head - Measurement section - - - - - Circumference and Arc Measurement section - - Vertical Measurement section - - Horizontal Measurement section - - Bust Measurement section - - Balance Measurement section - - Arm Measurement section - - Leg Measurement section - - Crotch and Rise Measurement section - - + Hand + Measurement section + + + + Foot + Measurement section + + + + Head + Measurement section + + + Men & Tailoring Measurement section - - Historical & Specialty Measurement section - - Patternmaking measurements Measurement section - Collapse All - Expand All - Check all - Uncheck all @@ -2399,256 +2170,239 @@ Apply settings anyway? DialogNewMeasurements - New measurement file - Measurement type: - Unit: - Base size: - Base height: - Individual - Standard - Centimeters - + Centimetros - Millimiters - + Milimetros - Inches - + Polegadas DialogNewPattern - - New pattern - - - - - Pattern piece name: - - - - - Unique pattern piece name - - - - - Choose unique pattern piece name. - - - - Units: - Centimeters - + Centimetros - Millimiters + Milimetros + + + Inches + Polegadas + + + Pattern piece name: - - Inches + Unique pattern piece name + + + + Choose unique pattern piece name. + + + + New pattern DialogNormal - - Point along perpendicular - + Length + Comprimento - - Length: - + Value of length + Valor do comprimento - - Formula wizard - - - - - Value - - - - - Calculation - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - + First point + Primeiro ponto + + + Second point + Segundo ponto + + + Type of line + Tipo de linha + + + Select second point of line + + + + Point along perpendicular + + + + First point of line + Primeiro ponto da linha + + + Second point of line + Segundo ponto da linha + + + Line color + Cor da linha + + + Edit length + Editar comprimento + + + Length: + Comprimento + + + Formula wizard + + + + Value + Valor + + + Calculation + Cálculo + + Point label: - Unique label - Choose unique label. - First point: - + Primeiro ponto - Second point: - + Segundo ponto - Additional angle degrees: - Type of line: - + Tipo de linha - Line color: - - - - - Edit length - - - - - Select second point of line - + Cor da linha DialogPatternProperties - Pattern properties - Description - Author name - Pattern description - For technical notes. - Heights and Sizes - - Default height and size - - - - - From standard measurements - - - - - Custom - - - - - Height: - - - - - Size: - - - - All heights (cm) - All sizes (cm) - + Default height and size + + + + From standard measurements + + + + Custom + + + + Height: + + + + Size: + + + Security - Open only for read @@ -2656,606 +2410,499 @@ Apply settings anyway? DialogPatternXmlEdit - XML Editor - Value : - Name : - <No selection> - Type : - Add attribute - Add son - Remove attribute - Remove node - Set - Cancel - Apply changes - Undo last - - Immediately apply - - - - Base selection - All pattern pieces - - - - No changes - Cannot delete previously created node - No changes left - Cannot undo change - - <no value> - - Unchanged - Cannot delete previously created attribute - Node Name - - Name: - Node Value (may be empty) - - Value: - Attribute Name - Attribute Value - No selection - Root node - Node - Attribute + + Immediately apply + + DialogPointFromArcAndTangent - Point from arc and tangent - + Arc + Arco + + + Select point of center of arc + Selecione o ponto central da curva + + + Select an arc + + + Point label: - Unique label - Choose unique label. - Tangent point: - Arc: - Take: - - - Select an arc - - DialogPointFromCircleAndTangent - Point from circle and tangent - - Radius: - - - - - Formula wizard - - - - - Value - - - - - Calculation - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - - Point label: - + Select point of center of arc + Selecione o ponto central da curva - - Unique label - - - - - Choose unique label. - - - - - Center of the circle: - - - - - Tangent point: - - - - - Take: - - - - Select a circle center - Edit radius - Error + Erro + + + Radius can't be negative - - Radius can't be negative + Radius: + + + + Formula wizard + + + + Value + Valor + + + Calculation + Cálculo + + + Point label: + + + + Unique label + + + + Choose unique label. + + + + Center of the circle: + + + + Tangent point: + + + + Take: DialogPointOfContact - - Point at intersection of arc and line - - - - - Radius: - - - - - Formula wizard - - - - - Value - - - - - Calculation - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - - Point label: - + Select point of center of arc + Selecione o ponto central da curva - - Unique label - - - - - Choose unique label. - - - - - Center of arc: - - - - - Top of the line: - - - - - End of the line: - - - - - Edit radius - - - - Select second point of line - - Select point of center of arc + Point at intersection of arc and line + + + + Edit radius + + + + Radius: + + + + Formula wizard + + + + Value + Valor + + + Calculation + Cálculo + + + Point label: + + + + Unique label + + + + Choose unique label. + + + + Center of arc: + + + + Top of the line: + + + + End of the line: DialogPointOfIntersection - Point from X and Y of two other points - + Select point for Y value (horizontal) + + + Point label: - Unique label - Choose unique label. - X: vertical point: - Y: horizontal point: - - - Select point for Y value (horizontal) - - DialogPointOfIntersectionArcs - Dialog - + Selected arc + Selecionar arco + + + Select second an arc + + + Point label: - Unique label - Choose unique label. - First arc: - Second arc: - Take: - - - Select second an arc - - DialogPointOfIntersectionCircles - Dialog - - Radius of the first circle: - - - - - - Formula wizard - - - - - - Value - - - - - - Calculation - - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - - Radius of the second circle: - + Select point of center of arc + Selecione o ponto central da curva - - Point label: - - - - - Unique label - - - - - Choose unique label. - - - - - Center of the first circle: - - - - - Center of the second circle: - - - - - Take: - - - - Select second circle center - Edit first circle radius - Edit second circle radius - - Error + Erro + + + Radius can't be negative - - - Radius can't be negative + Radius of the first circle: + + + + Formula wizard + + + + Value + Valor + + + Calculation + Cálculo + + + Radius of the second circle: + + + + Point label: + + + + Unique label + + + + Choose unique label. + + + + Center of the first circle: + + + + Center of the second circle: + + + + Take: DialogPointOfIntersectionCurves - Tool point of intersection curves - First curve: - Second curve: - Point label: - Unique label - Choose unique label. - Vertical correction: - Horizontal correction: - Select second curve @@ -3263,52 +2910,42 @@ Apply settings anyway? DialogSaveLAyout - Save Layout - File name: - Path: - File format: - - Destination folder - - - - - Path to destination folder. - - - - - Select path to destination folder - - - - Browse... - + Destination folder + + + + Path to destination folder. + + + + Select path to destination folder + + + File base name - File base name. @@ -3316,461 +2953,382 @@ Apply settings anyway? DialogSaveLayout - - The base filename does not match a regular expression. - - - - - Tried to use out of range format number. - - - - - Selected not present format. - - - - - The destination directory doesn't exists or is not readable. - - - - Name conflict - Folder already contain file with name %1. Rewrite all conflict file names? - Example: - Select folder - Svg files (*.svg) - PDF files (*.pdf) - Images (*.png) - Wavefront OBJ (*.obj) - PS files (*.ps) - EPS files (*.eps) - DXF files (*.dxf) + + Tried to use out of range format number. + + + + Selected not present format. + + + + The destination directory doesn't exists or is not readable. + + + + The base filename does not match a regular expression. + + DialogShoulderPoint - - Special point on shoulder - + Length + Comprimento - - Length: - + Value of length + Valor do comprimento - - Formula wizard - - - - - Value - - - - - Calculation - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - - Point label: - + First point + Primeiro ponto - - Unique label - + Second point + Segundo ponto - - Choose unique label. - + Type of line + Tipo de linha - - First point: - - - - - Second point: - - - - - Third point: - - - - - Type of line: - - - - - Line color: - - - - - Edit length - - - - Select first point of line - Select second point of line + + Special point on shoulder + + + + Line color + Cor da linha + + + Edit length + Editar comprimento + + + Length: + Comprimento + + + Formula wizard + + + + Value + Valor + + + Calculation + Cálculo + + + Point label: + + + + Unique label + + + + Choose unique label. + + + + First point: + Primeiro ponto + + + Second point: + Segundo ponto + + + Third point: + + + + Type of line: + Tipo de linha + + + Line color: + Cor da linha + DialogSinglePoint - Single point - - Unique label - - - - - Choose unique label. - - - - - Point label - - - - Coordinates on the sheet - Coordinates - Y coordinate - X coordinate + + Point label + + + + Unique label + + + + Choose unique label. + + DialogSpline - - Simple curve - + First point + Primeiro ponto - - First point: - + Second point + Segundo ponto - - - Control point - - - - - - Length: - - - - - - - - Formula wizard - - - - - - - - Value - - - - - - - - Calulation - - - - - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - - - - - - Angle: - - - - - Second point: - - - - - Color: - - - - - Name: - - - - Select last point of curve - + Simple curve + + + + Color + Cor + + + Color: + Cor + + + First point: + Primeiro ponto + + + Control point + + + + Angle: + + + + Second point: + Segundo ponto + + + Name: + + + + Invalid spline + + + + Length: + Comprimento + + + Formula wizard + + + + Value + Valor + + + Calulation + + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + Edit first control point angle - Edit second control point angle - Edit first control point length - Edit second control point length - - Error - + Erro - - Length can't be negative - - - Invalid spline - - DialogSplinePath - Curved path - - Point: - - - - - First control point - - - - - - Length: - - - - - - - - Formula wizard - - - - - - - - - - - - Value - - - - - - - - Calulation - - - - - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - - - - - - Angle: - - - - - Second control point - - - - List of points - - Color: - - - - - Name: - - - - Select point of curve path - - Edit first control point angle + Color + Cor + + + Color: + Cor + + + Point: - - Edit second control point angle + First control point - - Edit first control point length + Angle: - - Edit second control point length + Second control point - - - Error + Name: - - - Length can't be negative - - - - Invalid spline path - + Length: + Comprimento + + + Formula wizard + + + + Value + Valor + + + Calulation + + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + Edit first control point angle + + + + Edit second control point angle + + + + Edit first control point length + + + + Edit second control point length + + + + Error + Erro + + + Length can't be negative + + + Not used @@ -3778,279 +3336,233 @@ Apply settings anyway? DialogTool - - First point - - - - - Second point - - - - - Highest point - - - - - Lowest point - - - - - Leftmost point - - - - - Rightmost point - - - - - - - - - - Error - + Erro - - - Empty field - Value can't be 0 - Value + Valor + + + Parser error: %1 - - - Parser error: %1 + First point + Primeiro ponto + + + Second point + Segundo ponto + + + Highest point + + + + Lowest point + + + + Leftmost point + + + + Rightmost point DialogTriangle - - Triangle tool - + First point of line + Primeiro ponto da linha - - Point label: - + First point + Primeiro ponto - - Unique label - + Second point + Segundo ponto - - Choose unique label. - - - - - First point of axis: - - - - - Second point of axis: - - - - - First point: - - - - - Second point: - - - - Select second point of axis - Select first point - Select second point + + Triangle tool + + + + Second point of line + Segundo ponto da linha + + + Point label: + + + + Unique label + + + + Choose unique label. + + + + First point of axis: + + + + Second point of axis: + + + + First point: + Primeiro ponto + + + Second point: + Segundo ponto + DialogTrueDarts - True darts - - First base point: - - - - - Second base point: - - - - - First dart point: - - - - - Second dart point: - - - - - Third dart point: - - - - - First new dart point: - - - - - - Unique label - - - - - - Choose unique label. - - - - - Second new dart point: - - - - Select the second base point - Select the first dart point - Select the second dart point - Select the third dart point + + First base point: + + + + Second base point: + + + + First dart point: + + + + Second dart point: + + + + Third dart point: + + + + First new dart point: + + + + Unique label + + + + Choose unique label. + + + + Second new dart point: + + DialogUndo - Broken formula - - Error while calculation formula. You can try to undo last operation or fix broken formula. - - - - &Undo - &Fix formula - &Cancel + Cancelar + + + Error while calculation formula. You can try to undo last operation or fix broken formula. DialogUnionDetails - Union tool - - <html><head/><body><p>Do you really want to unite details?</p></body></html> - - - - Select a first point - Workpiece should have at least two points and three objects - Select a second point - Select a unique point - Select a detail - Select a point on edge + + <html><head/><body><p>Do you really want to unite details?</p></body></html> + + InternalStrings - - The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. @@ -4058,1422 +3570,1101 @@ Apply settings anyway? MApplication - Error parsing file. Program will be terminated. - Error bad id. Program will be terminated. - Error can't convert value. Program will be terminated. - Error empty parameter. Program will be terminated. - Error wrong id. Program will be terminated. - Something's wrong!! - Parser error: %1. Program will be terminated. - Exception thrown: %1. Program will be terminated. - Valentina's measurements editor. - The measurement file. - - Open with the base height. Valid values: %1cm. - - - - The base height - - Open with the base size. Valid values: %1cm. - - - - The base size - Set pattern file unit: cm, mm, inch. - The pattern unit - - Use for unit testing. Run the program and open a file without showing the main window. - - - - - Invalid base height argument. Must be %1cm. - - - - - Invalid base size argument. Must be %1cm. - - - - Invalid base size argument. Must be cm, mm or inch. - Can't begin to listen for incoming connections on name '%1' - Test mode doesn't support openning several files. - Please, provide one input file. + + Open with the base size. Valid values: %1cm. + + + + Invalid base height argument. Must be %1cm. + + + + Invalid base size argument. Must be %1cm. + + + + Open with the base height. Valid values: %1cm. + + + + Use for unit testing. Run the program and open a file without showing the main window. + + MainWindow - Valentina - - Tools - - - - Tools for creating points. - - Point - - Point at distance and angle - - - - - Point at distance along line - - - - Point along perpendicular - - Point along bisector - - - - - Special point on shoulder - - - - - Point at intersection of arc and line - - - - - Triangle tool - - - - - Point from X and Y of two other points - - - - Perpendicular point along line - - Point intersect line and axis + Point along bisector - - True darts + Point at distance and angle + + + + Point at distance along line - Tools for creating lines. - - Line - Line between points - Point at line intersection - Tools for creating curves. - - Curve - + Curva - - Simple curve - - - - - Segmenting a simple curve - - - - - Curved path - - - - - Segment a curved path - - - - - Point intersect curve and axis - - - - - Point intersection curves - - - - Tools for creating arcs. - - - Arc - + Arco - - Segment an arc - - - - - Point intersect arc and axis - - - - - Point of intersection arcs - - - - - Point of intersection circles - - - - - Point from circle and tangent - - - - - Point from arc and tangent - - - - - Arc with given length - - - - Tools for creating details. - - Detail - - Seam allowance tool - - - - - Union tool - - - - - - - - Layout - - - - - Create new Layout - - - - - Settings - - - - &File - &Help - &Pattern piece - - Measurements - Window - - - History - - - - - Mode - - - - Toolbar files - ToolBar modes - Toolbar pattern - Toolbar options - Toolbar tools - Tool options - - toolBar - - - - - Layout pages - - - - New - &New - Create a new pattern - Open - &Open - Open file with pattern - - Save - + Salvar - &Save - Save pattern - Save &As... - Save not yet saved pattern - Draw - - <html><head/><body><p>Mode for working with pattern pieces. These pattern pieces are base for going to the next stage &quot;Details mode&quot;. Before you will be able to enable the &quot;Details mode&quot; need create at least one detail.</p></body></html> - - - - Details - - <html><head/><body><p>Mode for working with details. Before you will be able to enable the &quot;Details mode&quot; need create at least one detail on the stage &quot;Draw mode&quot;. Details created on this stage will be used for creating a layout. </p></body></html> - - - - - Pointer - - - - Pointer tools - New pattern piece - Add new pattern piece - - Config pattern piece - - - - Change the label of pattern piece - Table of variables - Tables of variables - - <html><head/><body><p>Mode for creating a layout of details. This mode avaliable if was created at least one detail on the stage &quot;Details mode&quot;. The layout can be exported to your prefered file format and saved to your harddirve.</p></body></html> + History - About &Qt - &About Valentina - E&xit - Exit the application - - Preferences - Pattern properties - Zoom in - zoom in - - Zoom out - Edit pattern XML code - Original zoom - Original Zoom - Zoom fit best - Stop - Stop using tool - - Report Bug... - - - - Report bug - Close window - Online help - Show online help - - Last Tool - - - - - Activate last used tool again - - - - - Show Curve Details - - - - - Show/hide control points and curve direction - - - - - Save as PDF - - - - - Save original layout - - - - - Save as tiled PDF - - - - - Split and save a layout into smaller pages - - - - - Print - - - - - Print an original layout - - - - - Print tiled - - - - - Split and print a layout into smaller pages (for regular printers) - - - - - Print preview - - - - - Print preview original layout - - - - - Print preview tiled - - - - - Print preview tiled layout - - - - - Export As... - - - - - Export original layout - - - - - Load Individual ... - - - - - Load Standard ... - - - - - Create/Edit - - - - - Create/edit measurements - - - - - Show ... - - - - - Show measurements - - - - - Sync measurements - - - - - Unload measurements - - - - - Unload measurements if they was not used in a pattern file. - - - - - New pattern - - - - - Open pattern - - - - - Create/Edit measurements - - - - - Pattern piece %1 - - - Measurement file has unknown format. - - - - - - Measurement file contains invalid known measurement(s). - - - - - - Measurement file doesn't include all required measurements. - - - - - - Please, additionaly provide: %1 - - - - - Wrong units. - - - - - Application doesn't support standard table with inches. - - - - - - - - - File error. - - - - - Measurement files types have not match. - - - - - - Select point - Select first point - - - Select first point of line - Select first point of angle - Select first point of first line - Select first point curve - Select simple curve - Select point of center of arc - + Selecione o ponto central da curva - Select point of curve path - Select curve path - Select points, arcs, curves clockwise. - Select base point - Select first point of axis - - Select point for X value (vertical) - - - - Select detail - - Select arc - Select curve - - Select first an arc - - - - - Select first circle center - - - - - Select first curve - - - - - - Select point on tangent - - - - - Select point of the center of the arc - - - - - Select the first base line point - - - - About Qt - - - &Undo - + Height: + Altura: - - - &Redo - + Size: + Tamanho: - - Pattern Piece: - - - Individual measurements (*.vit);;Standard measurements (*.vst) - - - - - - - - - - Open file - - - - - - Measurements loaded - - - - - Standard measurements (*.vst);;Individual measurements (*.vit) - - - - - Measurements unloaded - - - - - Couldn't unload measurements. Some of them are used in the pattern. - - - - - Measurements was synced - - - - - Couldn't sync measurements. - - - - - Measurements was changed. Do you want to sync measurements now? - - - - - Height: - - - - - Size: - - - - - %1, %2 (%3) - Coords in status line: "X, Y (units)" - - - - - Detail mode - - - - - You can't use now the Detail mode. Please, create at least one workpiece. - - - - - Layout mode - - - - - You can't use now the Layout mode. Please, create at least one workpiece. - - - - - Pattern files (*.val) - - pattern - Save as - - Failed to lock. This file already opened in another window. - - - - - Could not save file - - Failed to lock. This file already opened in another window. Expect collissions when run 2 copies of the program. - + Open file + Abrir arquivo - - Error parsing file. - Error can't convert value. - - Error empty parameter. - Error wrong id. - Error parsing file (std::bad_alloc). - Bad id. - - - Couldn't update measurements. - - - - File saved + Arquivo Salvo + + + untitled.val - - Unsaved changes - - - - The pattern has been modified. Do you want to save your changes? - - Save... + &Undo - - Don't Save + &Redo - Pattern piece: - Enter a new label for the pattern piece. - - - The measurements file '%1' could not be found. - - - - - File loaded - - - - - Valentina didn't shut down correctly. Do you want reopen files (%1) you had open? - - - - - Reopen files. - - - - - The measurements file <br/><br/> <b>%1</b> <br/><br/> could not be found. Do you want to update the file location - - - - - Loading measurements file - - - - - Standard measurements (*.vst) - - - - - Individual measurements (*.vit) - - - - - You can't export empty scene. - - - - - Export error. - - - - - Not supported size value '%1' for this pattern file. - - - - - Couldn't set size. Need a file with standard measurements. - - - - - Couldn't set size. File wasn't opened. - - - - - - The method %1 does nothing in GUI mode - - - - - Not supported height value '%1' for this pattern file. - - - - - Couldn't set height. Need a file with standard measurements. - - - - - Couldn't set height. File wasn't opened. - - - - - Please, provide one input file. - - - - - untitled.val - - - - - (read only) - - - - - - - Locking file - - - - - This file already opened in another window. Ignore if you want to continue (not recommended, can cause a data corruption). - - - - - The lock file could not be created, for lack of permissions. Ignore if you want to continue (not recommended, can cause a data corruption). - - - - - Unknown error happened, for instance a full partition prevented writing out the lock file. Ignore if you want to continue (not recommended, can cause a data corruption). - - - - This file already opened in another window. - + Wrong units. + + + + Application doesn't support standard table with inches. + + + + File error. + Erro de arquivo. + + + File loaded + Arquivo carregado + + + Valentina didn't shut down correctly. Do you want reopen files (%1) you had open? + + + + Reopen files. + + + + Standard measurements (*.vst) + + + + Individual measurements (*.vit) + + + + Special point on shoulder + + + + Triangle tool + + + + Point at intersection of arc and line + + + + Point from X and Y of two other points + + + + Point intersect line and axis + + + + Simple curve + + + + Curved path + + + + Segmenting a simple curve + + + + Segment a curved path + + + + Point intersect curve and axis + + + + Segment an arc + + + + Point intersect arc and axis + + + + Seam allowance tool + + + + Union tool + + + + toolBar + + + + Last Tool + + + + Activate last used tool again + + + + Select point for X value (vertical) + + + + Mode + + + + Pointer + + + + Config pattern piece + + + + Layout + + + + Show Curve Details + + + + Show/hide control points and curve direction + + + + Tools + Ferramentas + + + Point of intersection arcs + + + + Point of intersection circles + + + + Point from circle and tangent + + + + Point from arc and tangent + + + + Arc with given length + + + + Settings + Configurações + + + Layout pages + + + + Save as PDF + + + + Save original layout + + + + Save as tiled PDF + + + + Split and save a layout into smaller pages + + + + Print + + + + Print tiled + + + + Split and print a layout into smaller pages (for regular printers) + + + + Print preview + + + + Print preview original layout + + + + Export As... + + + + Export original layout + + + + Select first an arc + + + + Select first circle center + + + + Select point on tangent + + + + Select point of the center of the arc + + + + Select the first base line point + + + + Detail mode + + + + You can't use now the Detail mode. Please, create at least one workpiece. + + + + Layout mode + + + + You can't use now the Layout mode. Please, create at least one workpiece. + + + + Unsaved changes + + + + Load Individual ... + + + + Load Standard ... + + + + Show ... + + + + Show measurements + + + + Sync measurements + + + + Individual measurements (*.vit);;Standard measurements (*.vst) + + + + Measurements loaded + + + + Standard measurements (*.vst);;Individual measurements (*.vit) + + + + You can't export empty scene. + + + + Create new Layout + Criar novo layout + + + Create/Edit + Criar/Editar + + + Create/edit measurements + + + + %1, %2 (%3) + Coords in status line: "X, Y (units)" + + + + Failed to lock. This file already opened in another window. + + + + Failed to lock. This file already opened in another window. Expect collissions when run 2 copies of the program. + + + + Measurement file contains invalid known measurement(s). + + + + Measurement file has unknown format. + + + + Measurement file doesn't include all required measurements. + + + + Please, additionaly provide: %1 + + + + Measurement files types have not match. + + + + Measurements was synced + + + + Couldn't sync measurements. + + + + Couldn't update measurements. + + + + The measurements file '%1' could not be found. + + + + The measurements file <br/><br/> <b>%1</b> <br/><br/> could not be found. Do you want to update the file location + + + + Loading measurements file + + + + Not supported size value '%1' for this pattern file. + + + + Couldn't set size. Need a file with standard measurements. + + + + Couldn't set size. File wasn't opened. + + + + The method %1 does nothing in GUI mode + + + + Not supported height value '%1' for this pattern file. + + + + Couldn't set height. Need a file with standard measurements. + + + + Couldn't set height. File wasn't opened. + + + + Export error. + + + + Please, provide one input file. + + + + Print an original layout + + + + Print preview tiled + + + + Print preview tiled layout + + + + <html><head/><body><p>Mode for working with pattern pieces. These pattern pieces are base for going to the next stage &quot;Details mode&quot;. Before you will be able to enable the &quot;Details mode&quot; need create at least one detail.</p></body></html> + + + + <html><head/><body><p>Mode for working with details. Before you will be able to enable the &quot;Details mode&quot; need create at least one detail on the stage &quot;Draw mode&quot;. Details created on this stage will be used for creating a layout. </p></body></html> + + + + <html><head/><body><p>Mode for creating a layout of details. This mode avaliable if was created at least one detail on the stage &quot;Details mode&quot;. The layout can be exported to your prefered file format and saved to your harddirve.</p></body></html> + + + + Unload measurements + + + + Unload measurements if they was not used in a pattern file. + + + + Measurements unloaded + + + + Couldn't unload measurements. Some of them are used in the pattern. + + + + True darts + + + + New pattern + + + + Open pattern + + + + Create/Edit measurements + + + + Save... + + + + Don't Save + + + + Locking file + + + + This file already opened in another window. Ignore if you want to continue (not recommended, can cause a data corruption). + + + + The lock file could not be created, for lack of permissions. Ignore if you want to continue (not recommended, can cause a data corruption). + + + + Unknown error happened, for instance a full partition prevented writing out the lock file. Ignore if you want to continue (not recommended, can cause a data corruption). + + + The lock file could not be created, for lack of permissions. - Unknown error happened, for instance a full partition prevented writing out the lock file. + + Report Bug... + + + + Point intersection curves + + + + Select first curve + + + + (read only) + + + + Measurements was changed. Do you want to sync measurements now? + + MainWindowsNoGUI - - Couldn't prepare data for creation layout - - - - - Several workpieces left not arranged, but none of them match for paper - - - - - Export error. - - - - - For saving multipage document all sheet should have the same size. Use export function instead. - - - - - For previewing multipage document all sheet should have the same size. - - - - - For printing multipages document all sheet should have the same size. - - - - - Can't open printer %1 - - - - Creating file '%1' failed! %2 - Critical error! - Print to pdf - PDF file (*.pdf) - Print error - Cannot proceed because there are no available printers in your system. - unnamed - The layout is stale. - The layout was not updated since last pattern modification. Do you want to continue? + + Couldn't prepare data for creation layout + + + + Several workpieces left not arranged, but none of them match for paper + + + + Can't open printer %1 + + + + Export error. + + + + For saving multipage document all sheet should have the same size. Use export function instead. + + + + For previewing multipage document all sheet should have the same size. + + + + For printing multipages document all sheet should have the same size. + + MoveDoubleLabel - move the first dart label - move the second dart label @@ -5481,7 +4672,6 @@ Do you want to save your changes? MoveLabel - move point label @@ -5489,7 +4679,6 @@ Do you want to save your changes? MoveSPoint - move single point @@ -5497,7 +4686,6 @@ Do you want to save your changes? MoveSpline - move spline @@ -5505,7 +4693,6 @@ Do you want to save your changes? MoveSplinePath - move spline path @@ -5513,67 +4700,46 @@ Do you want to save your changes? PathPage - Open Directory - - Path that use Valentina - - Default - - Edit - + Editar - - Type - - Path - - Individual measurements - - - Standard measurements - - - - - Patterns - - + Standard measurements + + + Layout - - Templates @@ -5581,38 +4747,26 @@ Do you want to save your changes? PatternPage - - User - - - User name: - - - - - Graphical output - - Use antialiasing - - Undo - - + User name: + + + Count steps (0 - no limit): @@ -5620,12 +4774,10 @@ Do you want to save your changes? QApplication - The path to the measurments is already relative. - The path to the measurments is already absolute. @@ -5633,52 +4785,42 @@ Do you want to save your changes? QCommandLineParser - Displays version information. - Displays this help. - Unknown option '%1'. - Unknown options: %1. - Missing value after '%1'. - Unexpected value after '%1'. - [options] - Usage: %1 - Options: - Arguments: @@ -5686,7 +4828,6 @@ Do you want to save your changes? QCoreApplication - Based on Qt %1 (%2, %3 bit) @@ -5694,73 +4835,59 @@ Do you want to save your changes? QObject - Create new pattern piece to start working. - - Changes applied. - - - - mm - - cm - inch - - px - - - - Property The text that appears in the first column header - Value The text that appears in the second column header + Valor + + + px - add node - move detail + + Changes applied. + + QSaveFile - Existing file %1 is not writable - Writing canceled by application - Partial write. Partition full? @@ -5768,15 +4895,11 @@ Do you want to save your changes? QmuParser - - too few arguments for function sum. parser error message - - too few arguments for function min. parser error message @@ -5785,217 +4908,181 @@ Do you want to save your changes? QmuParserErrorMsg - Unexpected token "$TOK$" found at position $POS$. Math parser error messages. Left untouched "$TOK$" and $POS$ - Internal error Math parser error messages. - Invalid function-, variable- or constant name: "$TOK$". Math parser error messages. Left untouched "$TOK$" - Invalid binary operator identifier: "$TOK$". Math parser error messages. Left untouched "$TOK$" - Invalid infix operator identifier: "$TOK$". Math parser error messages. Left untouched "$TOK$" - Invalid postfix operator identifier: "$TOK$". Math parser error messages. Left untouched "$TOK$" - Invalid pointer to callback function. Math parser error messages. - Expression is empty. Math parser error messages. - Invalid pointer to variable. Math parser error messages. - Unexpected operator "$TOK$" found at position $POS$ Math parser error messages. Left untouched "$TOK$" and $POS$ - Unexpected end of expression at position $POS$ Math parser error messages. Left untouched $POS$ - Unexpected argument separator at position $POS$ Math parser error messages. Left untouched $POS$ - Unexpected parenthesis "$TOK$" at position $POS$ Math parser error messages. Left untouched "$TOK$" and $POS$ - Unexpected function "$TOK$" at position $POS$ Math parser error messages. Left untouched "$TOK$" and $POS$ - Unexpected value "$TOK$" found at position $POS$ Math parser error messages. Left untouched "$TOK$" and $POS$ - Unexpected variable "$TOK$" found at position $POS$ Math parser error messages. Left untouched "$TOK$" and $POS$ - Function arguments used without a function (position: $POS$) Math parser error messages. Left untouched $POS$ - Missing parenthesis Math parser error messages. - Too many parameters for function "$TOK$" at expression position $POS$ Math parser error messages. Left untouched "$TOK$" and $POS$ - Too few parameters for function "$TOK$" at expression position $POS$ Math parser error messages. Left untouched "$TOK$" and $POS$ - Divide by zero Math parser error messages. - Domain error Math parser error messages. - Name conflict Math parser error messages. - Invalid value for operator priority (must be greater or equal to zero). Math parser error messages. - user defined binary operator "$TOK$" conflicts with a built in operator. Math parser error messages. Left untouched "$TOK$" - Unexpected string token found at position $POS$. Math parser error messages. Left untouched $POS$ - Unterminated string starting at position $POS$. Math parser error messages. Left untouched $POS$ - String function called with a non string type of argument. Math parser error messages. - String value used where a numerical argument is expected. Math parser error messages. - No suitable overload for operator "$TOK$" at position $POS$. Math parser error messages. Left untouched "$TOK$" and $POS$ - Function result is a string. Math parser error messages. - Parser error. Math parser error messages. - Decimal separator is identic to function argument separator. Math parser error messages. - The "$TOK$" operator must be preceeded by a closing bracket. Math parser error messages. Left untouched "$TOK$" - If-then-else operator is missing an else clause Math parser error messages. Do not translate operator name. - Misplaced colon at position $POS$ Math parser error messages. Left untouched $POS$ @@ -6004,7 +5091,6 @@ Do you want to save your changes? RenamePP - rename pattern piece @@ -6012,7 +5098,6 @@ Do you want to save your changes? SaveDetailOptions - save detail option @@ -6020,7 +5105,6 @@ Do you want to save your changes? SaveToolOptions - save tool option @@ -6028,805 +5112,608 @@ Do you want to save your changes? TMainWindow - <html><head/><body><p><span style=" font-size:18pt;">Select New for creation measurement file.</span></p></body></html> - - - Measurements - - - - - Find: - - - - - Search - - - - - Find Previous - - - - - Ctrl+Shift+G - - - - - Find Next - - - - - Ctrl+G - - - - Name - + Nome - - Full name - - - - - Calculated value - Formula - + Fórmula - Base value - In sizes - In heights - - Details - Name: - - Measurement's name in a formula - - - - - Measurement's name in a formula. - - - - Formula: - + Fórmula - <html><head/><body><p>Show full calculation in message box</p></body></html> - - Function Wizard - - - - Base value: - In sizes: - In heights: - Description: - - Move measurement top - - - - Move measurement up - Move measurement down - - Move measurement bottom - - - - - Delete measurement - - - - Calculated value: - Full name: - - Measurement's human-readable name. - - - - Information - Type: - Measurement type - Path: - Show in Explorer - Base size: - Base size value - Base height: - Base height value - Given name: - - Customer's name. - - - - Family name: - - Customer's family name. - - - - Birth date: - - Gender: - - - - Email: - - Customer's email address. - - - - Notes: - - PM system: - - - - File - Window - Help - + Measurements + + + Menu - Gradation - - Measurement diagram - - - - - <html><head/><body><p><span style=" font-size:340pt;">?</span></p><p align=\"center\">Unknown measurement</p></body></html> - - - - Open individual ... - - Save - + Salvar - Save As ... - Quit - About &Qt - About Tape - New - Add known - Add custom - Read only - Open standard ... - Open template - Database - Show information about all known measurement - - Preferences - - - Import from a pattern - - - - - Create from existing ... - - - - - Create from existing file - - - - untitled %1 - - - File '%1' doesn't exist! - - - - - - File has unknown format. - - - - - - File contains invalid known measurement(s). - - - - - - - File error. - - - - - Individual measurements (*.vit);;Standard measurements (*.vst);;All files (*.*) - - - - - Standard measurements (*.vst);;Individual measurements (*.vit);;All files (*.*) - - - - - Measurements (*.vst *.vit);;All files (*.*) - - - - - - Individual measurements (*.vit) - - - - - Select file - - - - - - Standard measurements - - - - - - Height: - - - - - - Size: - - - - - - Individual measurements - - - - - - Pattern unit: - - - - - - Could not save file - - - - - measurements - - - - - Standard measurements (*.vst) - - - - - Save as - - - - - Failed to lock. This file already opened in another window. - - - - - Failed to lock. This file already opened in another window. Expect collissions when run 2 copies of the program. - - - - - About Qt - - - - - - - - - - - Can't find measurement '%1'. - - - - - Edit measurement - - - - - M_%1 - - - - - Pattern files (*.val) - - - - - This file already opened in another window. - - <html><head/><body><p><span style=" font-size:340pt;">?</span></p><p align="center">Unknown measurement</p></body></html> + File error. + Erro de arquivo. + + + Could not save file - - The name of known measurement forbidden to change. + measurements + + + + Individual measurements (*.vit) + + + + Standard measurements (*.vst) + + + + Save as + + + + &New Window + + + + Edit measurement + + + + M_%1 - - - Error - + Erro - - Empty field. - - The full name of known measurement forbidden to change. + Parser error: %1 + + + + Standard measurements + + + + Height: + Altura: + + + Size: + Tamanho: + + + Individual measurements - untitled - <Empty> - - File was not saved yet. - - - - Unsaved changes - Measurements have been modified. Do you want to save your changes? - - Save... - - - - - Don't Save - - - - Empty field - Value - + Valor - - - Parser error: %1 - - - - Open file + Abrir arquivo + + + Import from a pattern - - Export standard measurements not supported. + Pattern files (*.val) - - &New Window + Pattern unit: - - - - Locking file + Find: - - This file already opened in another window. Ignore if you want to continue (not recommended, can cause a data corruption). + Find Previous - - The lock file could not be created, for lack of permissions. Ignore if you want to continue (not recommended, can cause a data corruption). + Ctrl+Shift+G - - Unknown error happened, for instance a full partition prevented writing out the lock file. Ignore if you want to continue (not recommended, can cause a data corruption). + Find Next - - The lock file could not be created, for lack of permissions. + Ctrl+G - - Unknown error happened, for instance a full partition prevented writing out the lock file. + Individual measurements (*.vit);;Standard measurements (*.vst);;All files (*.*) + + + + Standard measurements (*.vst);;Individual measurements (*.vit);;All files (*.*) + + + + Measurements (*.vst *.vit);;All files (*.*) + + + + Failed to lock. This file already opened in another window. + + + + Failed to lock. This file already opened in another window. Expect collissions when run 2 copies of the program. + + + + File contains invalid known measurement(s). + + + + File has unknown format. + + + + Full name + + + + File '%1' doesn't exist! + + + + The name of known measurement forbidden to change. + + + + Can't find measurement '%1'. + + + + The full name of known measurement forbidden to change. + + + + Function Wizard + + + + Move measurement top + + + + Move measurement bottom + + + + Delete measurement - unknown gender - male gender - female gender + + Gender: + + + + PM system: + + + + Create from existing ... + + + + Create from existing file + + + + Select file + + + + Export standard measurements not supported. + + + + Measurement diagram + + + + <html><head/><body><p><span style=" font-size:340pt;">?</span></p><p align=\"center\">Unknown measurement</p></body></html> + + + + <html><head/><body><p><span style=" font-size:340pt;">?</span></p><p align="center">Unknown measurement</p></body></html> + + + + About Qt + + + + File was not saved yet. + + + + Search + + + + Measurement's name in a formula + + + + Measurement's name in a formula. + + + + Measurement's human-readable name. + + + + Customer's name. + + + + Customer's family name. + + + + Customer's email address. + + + + Save... + + + + Don't Save + + + + Locking file + + + + This file already opened in another window. Ignore if you want to continue (not recommended, can cause a data corruption). + + + + The lock file could not be created, for lack of permissions. Ignore if you want to continue (not recommended, can cause a data corruption). + + + + Unknown error happened, for instance a full partition prevented writing out the lock file. Ignore if you want to continue (not recommended, can cause a data corruption). + + + + The lock file could not be created, for lack of permissions. + + + + Unknown error happened, for instance a full partition prevented writing out the lock file. + + TapeConfigDialog - - Apply - + Aplicar - - &Cancel - + Cancelar - - &Ok - + Ok - - Config Dialog - - Configuration - + Configuração - - Paths - + Paths TapeConfigurationPage - - Language - + Idioma - - - GUI language: - - - - - - Decimal separator parts: - - - - - - With OS options (%1) - - - - - Pattern making system - - + Author: + Autor: + + + Book: + Livro: + + + With OS options (%1) + + + + GUI language: + + + + Decimal separator parts: + + + Pattern making system: - - - Author: - - - - - - Book: - - - - - Default height and size - - Default height: - - Default size: @@ -6834,55 +5721,38 @@ Do you want to save your changes? TapePathPage - Open Directory - - Path that use Valentina - - Default - - Edit - + Editar - - Type - - Path - - Individual measurements - - Standard measurements - - Templates @@ -6890,17 +5760,14 @@ Do you want to save your changes? Utils::CheckableMessageBox - Do not ask again - Do not &ask again - Do not &show again @@ -6908,65 +5775,53 @@ Do you want to save your changes? VAbstractConverter - - Error creating a backup file: %1. - - - - Couldn't get version information. - Too many tags <%1> in file. - Version "%1" invalid. - Version "0.0.0" invalid. - - Error creating a reserv copy: %1. - - - - Invalid version. Minimum supported version is %1 - Invalid version. Maximum supported version is %1 - - Unexpected version "%1". - - - - Error no unique id. - Could not change version. + + Error creating a backup file: %1. + + + + Error creating a reserv copy: %1. + + + + Unexpected version "%1". + + VAbstractPattern - Can't find tool in table. @@ -6974,91 +5829,73 @@ Do you want to save your changes? VAbstractTool - - Confirm deletion - - - - - Do you really want to delete? - - - - - black - + preto - green - + verde - blue - + azul - dark red - dark green - dark blue - yellow + amarelo + + + Confirm deletion + + + + Do you really want to delete? VApplication - Error parsing file. Program will be terminated. - Error bad id. Program will be terminated. - Error can't convert value. Program will be terminated. - Error empty parameter. Program will be terminated. - Error wrong id. Program will be terminated. - Something's wrong!! - Parser error: %1. Program will be terminated. - Exception thrown: %1. Program will be terminated. @@ -7066,304 +5903,241 @@ Do you want to save your changes? VCommandLine - - Pattern making program. - - - - - Pattern file. - - - - - The base filename of exported layout files. Use it to enable console export mode. - - - - - The base filename of layout files - - - - - The path to output destination folder. By default the directory at which the application was started. - - - - - The destination folder - - - - Path to custom measure file (export mode). - The measure file - Number corresponding to output format (default = 0, export mode): - Format number - - Set size value a pattern file, that was opened with standard measurements (export mode). Valid values: %1cm. - - - - - The size value - - - - - Set height value a pattern file, that was opened with standard measurements (export mode). Valid values: %1cm. - - - - - The height value - - - - Number corresponding to page template (default = 0, export mode): - Template number - - Page width in current units like 12.0 (cannot be used with "%1", export mode). - - - - The page width - + A largura da página - - Page height in current units like 12.0 (cannot be used with "%1", export mode). - - - - - Page height/width measure units (cannot be used with "%1", export mode). Valid values: %2. - - - - The measure unit - - Ignore margins printing (export mode). Disable value keys: "%1", "%2", "%3", "%4". Set all margins to 0. - - - - - Page left margin in current units like 3.0 (export mode). If not set will be used value from default printer. Or 0 if none printers was found. Value will be ignored if key "%1" is used. - - - - - Page right margin in current units like 3.0 (export mode). If not set will be used value from default printer. Or 0 if none printers was found. Value will be ignored if key "%1" is used. - - - - - Page top margin in current units like 3.0 (export mode). If not set will be used value from default printer. Or 0 if none printers was found. Value will be ignored if key "%1" is used. - - - - - Page bottom margin in current units like 3.0 (export mode). If not set will be used value from default printer. Or 0 if none printers was found. Value will be ignored if key "%1" is used. - - - - - Rotation in degrees (one of predefined, export mode). Default value is 180. 0 is no-rotate. Valid values: %1. Each value show how many times details will be rotated. For example 180 mean two times (360/180=2) by 180 degree. - - - - Angle - + Ângulo - Auto crop unused length (export mode). - - Unite pages if possible (export mode). Maximum value limited by QImage that supports only a maximum of 32768x32768 px images. - - - - - Save length of the sheet if set (export mode). The option tells the program to use as much as possible width of sheet. Quality of a layout can be worse when this option was used. - - - - Layout units (as paper's one except px, export mode). - The unit - - Shift/Offset layout length measured in layout units (export mode). The option show how many points along edge will be used in creating a layout. - - - - - Shift/Offset length - - - - - The layout gap width x2, measured in layout units (export mode). Set distance between details and a detail and a sheet. - - - - The gap width - - Sets layout groupping cases (export mode): %1. - - - - Grouping type - - Run the program in a test mode. The program in this mode loads a single pattern file and silently quit without showing the main window. The key have priority before key '%1'. - - - - Cannot use pageformat and page explicit size/units together. - Page height, width, units must be used all 3 at once. - - Shift/Offset length must be used together with shift units. - - - - - Gap width must be used together with shift units. - - - - - Left margin must be used together with page units. - - - - - Right margin must be used together with page units. - - - - - Top margin must be used together with page units. - - - - - Bottom margin must be used together with page units. - - - - Invalid rotation value. That must be one of predefined values. - Unknown page templated selected. - Unsupported paper units. - Unsupported layout units. - - Test option can be used with single input file only. - - - - Export options can be used with single input file only. - + Test option can be used with single input file only. + + + + The base filename of exported layout files. Use it to enable console export mode. + + + + The base filename of layout files + + + + The destination folder + A pasta de destino + + + Set size value a pattern file, that was opened with standard measurements (export mode). Valid values: %1cm. + + + + The size value + + + + Set height value a pattern file, that was opened with standard measurements (export mode). Valid values: %1cm. + + + + The height value + + + + Page width in current units like 12.0 (cannot be used with "%1", export mode). + + + + Page height in current units like 12.0 (cannot be used with "%1", export mode). + + + Invalid gradation size value. - Invalid gradation height value. + + Pattern making program. + + + + Pattern file. + + + + Gap width must be used together with shift units. + + + + Left margin must be used together with page units. + + + + Right margin must be used together with page units. + + + + Top margin must be used together with page units. + + + + Bottom margin must be used together with page units. + + + + The path to output destination folder. By default the directory at which the application was started. + + + + Page height/width measure units (cannot be used with "%1", export mode). Valid values: %2. + + + + Ignore margins printing (export mode). Disable value keys: "%1", "%2", "%3", "%4". Set all margins to 0. + + + + Page left margin in current units like 3.0 (export mode). If not set will be used value from default printer. Or 0 if none printers was found. Value will be ignored if key "%1" is used. + + + + Page right margin in current units like 3.0 (export mode). If not set will be used value from default printer. Or 0 if none printers was found. Value will be ignored if key "%1" is used. + + + + Page top margin in current units like 3.0 (export mode). If not set will be used value from default printer. Or 0 if none printers was found. Value will be ignored if key "%1" is used. + + + + Page bottom margin in current units like 3.0 (export mode). If not set will be used value from default printer. Or 0 if none printers was found. Value will be ignored if key "%1" is used. + + + + Rotation in degrees (one of predefined, export mode). Default value is 180. 0 is no-rotate. Valid values: %1. Each value show how many times details will be rotated. For example 180 mean two times (360/180=2) by 180 degree. + + + + Unite pages if possible (export mode). Maximum value limited by QImage that supports only a maximum of 32768x32768 px images. + + + + Save length of the sheet if set (export mode). The option tells the program to use as much as possible width of sheet. Quality of a layout can be worse when this option was used. + + + + The layout gap width x2, measured in layout units (export mode). Set distance between details and a detail and a sheet. + + + + Sets layout groupping cases (export mode): %1. + + + + Run the program in a test mode. The program in this mode loads a single pattern file and silently quit without showing the main window. The key have priority before key '%1'. + + + + Shift/Offset layout length measured in layout units (export mode). The option show how many points along edge will be used in creating a layout. + + + + Shift/Offset length + + + + Shift/Offset length must be used together with shift units. + + VContainer - - - - Can't find object - - Can't cast object - Can't find object. Type mismatch. @@ -7371,126 +6145,96 @@ Do you want to save your changes? VDomDocument - Can't convert toUInt parameter - Can't convert toBool parameter - Got empty parameter - Can't convert toDouble parameter - - Got wrong parameter id. Need only id > 0. - - - - - This id is not unique. - - - - - Can't open file %1: %2. - Can't open schema file %1: %2. - - Could not load schema file '%1'. - - - - Validation error file %3 in line %1 column %2 - Parsing error file %3 in line %1 column %2 - Couldn't get node + + Got wrong parameter id. Need only id > 0. + + + + This id is not unique. + + + + Could not load schema file '%1'. + + VDrawTool - Edit wrong formula - Options - + Opções - Delete - + Excluir VFormula - - - - Error - + Erro VFormulaProperty - Value - + Valor - Formula - + Fórmula VMeasurements - - - - - - - Can't find measurement '%1' - The measurement name is empty! @@ -7498,280 +6242,211 @@ Do you want to save your changes? VPE::VBoolProperty - True - + Verdadeiro - False - + Falso VPE::VFileEditWidget - Directory - Open File - + Abrir arquivo VPattern - - Error not unique id. - - - - - Error parsing file. - Error can't convert value. - Error empty parameter. - Error wrong id. - Error parsing file (std::bad_alloc). - - - - Wrong tag name '%1'. - - - - Error creating or updating detail - - Unknown point type '%1'. - - - - - Error creating or updating line - - - - Error creating or updating single point - - Error creating or updating point of end line - - Error creating or updating point along line - - Error creating or updating point of shoulder - - Error creating or updating point of normal - - Error creating or updating point of bisector - Error creating or updating point of lineintersection - - Error creating or updating point of contact - Error creating or updating modeling point - Error creating or updating height - Error creating or updating triangle - Error creating or updating point of intersection - - Error creating or updating cut spline point - - Error creating or updating cut spline path point - - Error creating or updating cut arc point - - Error creating or updating point of intersection line and axis - - Error creating or updating point of intersection curve and axis - - Error creating or updating point of intersection arcs + Error creating or updating line - - Error creating or updating point of intersection circles - - - - - Error creating or updating point of intersection curves - - - - - Error creating or updating point from circle and tangent - - - - - Error creating or updating point from arc and tangent - - - - - Error creating or updating true darts - - - - - Error creating or updating simple curve - - Error creating or updating simple interactive spline - - - - - Error creating or updating curve path - - Error creating or updating interactive spline path - - - - Error creating or updating modeling simple curve - Error creating or updating modeling curve path - - - - Error creating or updating simple arc - Error creating or updating modeling arc - - Unknown spline type '%1'. - - - - - Unknown arc type '%1'. - - - - Error creating or updating union details - + Error creating or updating point of intersection arcs + + + + Error creating or updating point of intersection circles + + + + Error creating or updating point from circle and tangent + + + + Error creating or updating point from arc and tangent + + + + Error creating or updating true darts + + + + Wrong tag name '%1'. + + + + Unknown point type '%1'. + + + + Unknown spline type '%1'. + + + + Unknown arc type '%1'. + + + Unknown tools type '%1'. + + Error not unique id. + + + + Error creating or updating point of intersection curves + + + + Error creating or updating simple interactive spline + + + + Error creating or updating interactive spline path + + VPatternConverter - Error restoring backup file: %1. @@ -7779,19 +6454,14 @@ Do you want to save your changes? VSplinePath - Not enough points to create the spline. - - - This spline does not exist. - Can't cut spline path with one point @@ -7799,1590 +6469,1263 @@ Do you want to save your changes? VToolDetail - Options - + Opções - Delete - + Excluir VToolOptionsPropertyBrowser - - First point - - - - - Second point - - - - - Highest point - - - - - Lowest point - - - - - Leftmost point - - - - - Rightmost point - - - - Base point - - - - - - - - - - - - - - - - - - - - - Point label - Position - Point at distance and angle - - - - - - - - - Line type - - - - - - - - - - Line color - - - - - - - - - - - - Length - + Comprimento - - - Angle - + Ângulo - Point at distance along line - Arc - + Arco - - - Radius - - First angle - + Primeiro ângulo - Second angle - + Segundo ângulo - - - - - - - - Color - - - - - Arc with given length - - - - Point along bisector - - True darts - - - - - Point 1 label - - - - - Point 2 label - - - - Cut arc tool - Tool for segmenting a curve - Tool segment a pathed curve - Perpendicular point along line - Line between points - Point at line intersection - Point along perpendicular - Additional angle degrees - Point at intersection of arc and line - Tool to make point from x & y of two other points - - Tool to make point from intersection two arcs - - - - - - - - Take - - - - - Tool to make point from intersection two circles - - - - - First circle radius - - - - - Second circle radius - - - - - Tool to make point from intersection two curves - - - - - Vertical correction - - - - - Horizontal correction - - - - - Tool to make point from circle and tangent - - - - - Circle radius - - - - - Tool to make point from arc and tangent - - - - Special point on shoulder - Curve tool - - - Name - - - - - C1: angle - - - - - C1: length - - - - - C2: angle - - - - - C2: length - - - - Tool for path curve - Tool triangle - Point intersection line and axis - + Line color + Cor da linha + + + Color + Cor + + Point intersection curve and axis + + First point + Primeiro ponto + + + Second point + Segundo ponto + + + Arc with given length + + + + True darts + + + + Point 1 label + + + + Point 2 label + + + + Tool to make point from intersection two arcs + + + + Take + + + + Tool to make point from intersection two circles + + + + First circle radius + + + + Second circle radius + + + + Tool to make point from circle and tangent + + + + Circle radius + + + + Tool to make point from arc and tangent + + + + Highest point + + + + Lowest point + + + + Leftmost point + + + + Rightmost point + + + + Tool to make point from intersection two curves + + + + Vertical correction + + + + Horizontal correction + + + + Name + Nome + + + C1: angle + + + + C1: length + + + + C2: angle + + + + C2: length + + VTranslateVars - Bunka System name - Bunka Fashion College Author name - Fundamentals of Garment Design Book name - Barnfield and Richard System name - Jo Barnfield and Andrew Richards Author name - Pattern Making Primer Book name - Friendship/Women System name - - Elizabeth Friendship Author name - Creating Historical Clothes - Pattern Cutting from the 16th to the 19th Centuries Book name - Morris, K. System name - Karen Morris Author name - Sewing Lingerie that Fits Book name - Castro System name - Lucia Mors de Castro Author name - Patternmaking in Practic Book name - Kim & Uh System name - Injoo Kim and Mykyung Uh Author name - Apparel Making in Fashion Design Book name - Waugh System name - Norah Waugh Author name - Corsets and Crinolines Book name - Grimble System name - Frances Grimble Author name - Fashions of the Gilded Age Book name - Thornton's International System System name - - ed. R. L. Shep Author name - - The Great War: Styles and Patterns of the 1910s Book name - Hillhouse & Mansfield System name - Marion S. Hillhouse and Evelyn A. Mansfield Author name - Dress Design: Draping and Flat Pattern Making Book name - Pivnick System name - Esther Kaplan Pivnick Author name - How to Design Beautiful Clothes: Designing and Pattern Making Book name - Minister & Son System name - Edward Minister & Son, ed. R. L. Shep Author name - The Complete Guide to Practical Cutting (1853) Book name - Strickland System name - Gertrude Strickland Author name - A Tailoring Manual Book name - Loh & Lewis System name - May Loh and Diehl Lewis Author name - Patternless Fashion Design Book name - Morris, F. R. System name - F. R. Morris Author name - Ladies Garment Cutting and Making Book name - Mason System name - Gertrude Mason Author name - Gertrude Mason's Patternmaking Book Book name - Kimata System name - K. Kimata Author name - K.Kimata's Simplified Drafting Book for Dressmaking Book name - Master Designer System name - The Master Designer (Chicago, IL) Author name - Master Designer's System of Designing, Cutting and Grading Book name - Kopp System name - Ernestine Kopp, Vittorina Rolfo, Beatrice Zelin, Lee Gross Author name - How to Draft Basic Patterns Book name - Ekern System name - Doris Ekern Author name - Slacks Cut-to-Fit for Your Figure Book name - Doyle System name - Sarah J. Doyle Author name - Sarah's Key to Pattern Drafting Book name - Shelton System name - Karla J. Shelton Author name - Design and Sew Jeans Book name - Lady Boutique System name - Lady Boutique Author name - Lady Boutique magazine (Japan) Book name - Rohr System name - M. Rohr Author name - Pattern Drafting and Grading: Women's nd Misses' Garment Design Book name - Moore System name - Dorothy Moore Author name - Dorothy Moore's Pattern Drafting and Dressmaking Book name - Abling System name - Bina Abling Author name - Integrating Draping, Drafting and Drawing Book name - Fukomoto System name - Sue S. Fukomoto Author name - Scientific Pattern Drafting as taught at Style Center School of Costume Design, Dressmaking and Millinery Book name - Dressmaking International System name - Dressmaking International Author name - Dressmaking International magazine (Japan) Book name - Erwin System name - Mabel D. Erwin Author name - Practical Dress Design Book name - Gough System name - E. L. G. Gough Author name - Principles of Garment Cutting Book name - Allemong System name - Elizabeth M. Allemong Author name - European Cut Book name - McCunn System name - Donald H. McCunn Author name - How to Make Your Own Sewing Patterns Book name - Zarapkar System name - Shri K. R. Zarapkar and Shri Arvind K. Zarapkar Author name - Zarapkar System of Cutting Book name - Kunick System name - Philip Kunick Author name - Sizing, Pattern Construction and Grading for Women's and Children's Garments Book name - Handford System name - Jack Handford Author name - Professional Patternmaking for Designers: Women's Wear, Men's Casual Wear Book name - Davis System name - R. I. Davis Author name - Men's 17th & 18th Century Costume, Cut & Fashion Book name - MacLochlainn System name - Jason MacLochlainn Author name - The Victorian Tailor: An Introduction to Period Tailoring Book name - Joseph-Armstrong System name - Helen Joseph-Armstrong Author name - Patternmaking for Fashion Design Book name - Supreme System System name - Frederick T. Croonberg Author name - The Blue Book of Men's Tailoring, Grand Edition of Supreme System for Producing Mens Garments (1907) Book name - Sugino System name - Dressmaking Author name - Pattern Drafting Vols. I, II, III (Japan) Book name - Centre Point System System name - Louis Devere Author name - The Handbook of Practical Cutting on the Centre Point System Book name - Aldrich/Men System name - - Winifred Aldrich Author name - Metric Pattern Cutting for Menswear Book name - Aldrich/Women System name - Metric Pattern Cutting for Women's Wear Book name - Kershaw System name - Gareth Kershaw Author name - Patternmaking for Menswear Book name - Gilewska System name - Teresa Gilewska Author name - Pattern-Drafting for Fashion: The Basics Book name - Lo System name - Dennic Chunman Lo Author name - Pattern Cutting Book name - Bray System name - Natalie Bray Author name - + Natalie Bray - Dress Pattern Designing: The Basic Principles of Cut and Fit Book name - Knowles/Men System name - - Lori A. Knowles Author name - The Practical Guide to Patternmaking for Fashion Designers: Menswear Book name - Friendship/Men System name - Pattern Cutting for Men's Costume Book name - Brown System name - P. Clement Brown Author name - Art in Dress Book name - Mitchell System name - Jno. J. Mitchell Author name - "Standard" Work on Cutting (Men's Garments) 1886: The Art and Science of Garment Cutting Book name - GOST 17917-86 System name - Ministry of consumer industry of the USSR Author name - Standard figure boys Book name - Eddy System name - Josephine F. Eddy and Elizabeth C. B. Wiley Author name - Pattern and Dress Design Book name - Knowles/Women System name - Practical Guide to Patternmaking for Fashion Designers: Juniors, Misses, and Women Book name - American Garment Cutter System name - None System name - Valentina team Author name - Valentina's internal standard Book name - Line_ Left symbol _ in name - AngleLine_ Left symbol _ in name - Arc_ Left symbol _ in name - Spl_ Left symbol _ in name - SplPath Do not add symbol _ to the end of name - RadiusArc_ Left symbol _ in name - Angle1Arc_ Left symbol _ in name - Angle2Arc_ Left symbol _ in name - Angle1Spl_ Left symbol _ in name - Angle2Spl_ Left symbol _ in name - Angle1SplPath Do not add symbol _ to the end of name - Angle2SplPath Do not add symbol _ to the end of name - sin sine function - cos cosine function - tan tangens function - asin arcus sine function - acos arcus cosine function - atan arcus tangens function - sinh hyperbolic sine function - cosh hyperbolic cosine - tanh hyperbolic tangens function - asinh hyperbolic arcus sine function - acosh hyperbolic arcus tangens function - atanh hyperbolic arcur tangens function - log2 logarithm to the base 2 - log10 logarithm to the base 10 - log logarithm to the base 10 - ln logarithm to base e (2.71828...) - exp e raised to the power of x - sqrt square root of a value - sign sign function -1 if x<0; 1 if x>0 - rint round to nearest integer - abs absolute value - min min of all arguments - + min - max max of all arguments - sum sum of all arguments - avg mean value of all arguments - fmod Returns the floating-point remainder of numer/denom (rounded towards zero) - cm centimeter - mm millimeter - in inch @@ -9391,7 +7734,6 @@ Do you want to save your changes? VVITConverter - Error restoring backup file: %1. @@ -9399,7 +7741,6 @@ Do you want to save your changes? VVSTConverter - Error restoring backup file: %1. @@ -9407,7 +7748,6 @@ Do you want to save your changes? VisToolCurveIntersectAxis - <b>Intersection curve and axis</b>: angle = %1°; <b>Shift</b> - sticking angle, <b>Enter</b> - finish creation @@ -9415,7 +7755,6 @@ Do you want to save your changes? VisToolEndLine - <b>Point at distance and angle</b>: angle = %1°; <b>Shift</b> - sticking angle, <b>Enter</b> - finish creation @@ -9423,7 +7762,6 @@ Do you want to save your changes? VisToolLineIntersectAxis - <b>Intersection line and axis</b>: angle = %1°; <b>Shift</b> - sticking angle, <b>Enter</b> - finish creation @@ -9431,12 +7769,10 @@ Do you want to save your changes? VisToolSplinePath - <b>Curved path</b>: select three or more points - <b>Curved path</b>: select three or more points, <b>Enter</b> - finish creation @@ -9444,47 +7780,38 @@ Do you want to save your changes? mNoisyHandler - DEBUG: - WARNING: - CRITICAL: - FATAL: - INFO: - Warning. - Critical error. - + Erro crítico. - Fatal error. - + Erro fatal. - Information. @@ -9492,47 +7819,38 @@ Do you want to save your changes? vNoisyHandler - DEBUG: - WARNING: - CRITICAL: - FATAL: - INFO: - Warning. - Critical error. - + Erro crítico. - Fatal error. - + Erro fatal. - Information. diff --git a/share/translations/valentina_zh_CN.ts b/share/translations/valentina_zh_CN.ts index d78a1a3f8..e62db0ed4 100644 --- a/share/translations/valentina_zh_CN.ts +++ b/share/translations/valentina_zh_CN.ts @@ -4,7 +4,6 @@ AddDet - add detail @@ -12,7 +11,6 @@ AddPatternPiece - add pattern piece %1 @@ -20,7 +18,6 @@ AddToCalc - add object @@ -28,131 +25,101 @@ CommunityPage - - Server - + 服务器 - - - Server name/IP: - + Server name/IP + 服务器名/IP地址 - - Secure connection - - Proxy settings - - Use Proxy - - - Proxy address: - - - - - - Proxy port: - - - - - - Proxy user: - - - - - - Proxy pass: - - - - - User settings - - - User Name: - + User Name + 用户名 - - Save password + 保存密码 + + + Password + 密码 + + + Server name/IP: - - - Password: + Proxy address: + + Proxy port: + + + + Proxy user: + + + + Proxy pass: + + + + User Name: + 用户名: + + + Password: + 密码: + ConfigDialog - - Apply - - &Cancel - - &Ok - - Config Dialog - - Configuration - - Pattern - + 样板 - - Community - - Paths @@ -160,161 +127,113 @@ ConfigurationPage - - The Default unit has been updated and will be used as the default for the next pattern you create. - - - - - Save - + 保存 - - Auto-save modified pattern - - min - - Interval: - - Language - + 语言 - - - GUI language: - + GUI language + GUI 语言 - - - Decimal separator parts: - - - - - With OS options (%1) - - Centimeters - + 公分 - - Millimiters - + 毫米 - - Inches - + 英寸 - - - Default unit: - - - - - - Label language: - - - - - - Pattern making system - - - - - - Pattern making system: - - - - - - Author: - - - - - - Book: - - - - - Send crash reports - - Send crash reports (recommended) - - - After each crash Valentina collects information that may help us fix the problem. We do not collect any personal information. Find more about what <a href="https://bitbucket.org/dismine/valentina/wiki/manual/Crash_reports">kind of information</a> we collect. - - - - - Pattern Editing - - - Confirm item deletion - - Toolbar - - - The text appears under the icon. (recommended for beginners.) + + GUI language: + + + + Decimal separator parts: + + + + Default unit: + 默认单位 + + + Label language: + + + + Pattern making system + + + + Pattern making system: + + + + Author: + + + + Book: + + + + The Default unit has been updated and will be used as the default for the next pattern you create. + + + + After each crash Valentina collects information that may help us fix the problem. We do not collect any personal information. Find more about what <a href="https://bitbucket.org/dismine/valentina/wiki/manual/Crash_reports">kind of information</a> we collect. + + DelTool - delete tool @@ -322,7 +241,6 @@ DeleteDetail - delete tool @@ -330,7 +248,6 @@ DeletePatternPiece - delete pattern piece %1 @@ -338,1669 +255,1423 @@ DialogAboutApp - About Valentina - + 关于Valentina - Valentina version - - Build revision: - - - - Contributors - - Built on %1 at %2 - - - - Web site : %1 - Cannot open your default browser + + Build revision: + + + + Built on %1 at %2 + + DialogAboutTape - About Tape - Tape version - Build revision: - This program is part of Valentina project. - - Cannot open your default browser - - - - Build revision: %1 - - Built on %1 at %2 + Web site : %1 - - Web site : %1 + Cannot open your default browser + + + + Built on %1 at %2 DialogAlongLine - - Point at distance along line - + Length + 长度 - - Length: - - - - - Formula wizard - - - - - Value - - - - - Calculation - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - + First point + 第一点 + + + Second point + 第二点 + + + Type of line + 线类型 + + + Select second point of line + + + + Point at distance along line + + + + Line color + 线颜色 + + + Edit length + 修长度 + + + Length: + 长度: + + + Formula wizard + + + + Value + + + + Calculation + 打算 + + Point label: - First point: - + 第一点: - First point of the line - Second point: - + 第二点: - Second point of the line - Type of line: - + 线类型: - Line color: - + 线颜色: - Unique label - Choose unique label. - - - Edit length - - - - - Select second point of line - - DialogArc - Arc - - Radius: - - - - - - - Formula wizard - - - - - - - Value - - - - - Calulation - - - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - - First angle: - - - - - - Calculation - - - - - Second angle: - - - - - Center point: - - - - - Select center point of the arc - - - - - Color: - - - - - Edit radius - - - - - Edit first angle - - - - - Edit second angle - - - - - - Error - + 错误 - Radius can't be negative - - Angles equal + + Color + 颜色 + + + Edit radius + + + + Edit first angle + + + + Edit second angle + + + + Radius: + 半径 + + + Formula wizard + + + + Value + + + + Calulation + 打算 + + + First angle: + + + + Calculation + 打算 + + + Second angle: + + + + Center point: + 中点 + + + Select center point of the arc + + + + Color: + 颜色: + DialogArcWithLength - Dialog - - Radius: - - - - - - - Formula wizard - - - - - - - Value - - - - - - - Calculation - - - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - - First angle: - + Length + 长度 - - Length: - + Color + 颜色 - - Center point: - - - - - Color: - - - - Edit radius - Edit the first angle - Edit the arc length - - Error - + 错误 - Radius can't be negative - Length can't be equal 0 + 长度不能是0 + + + Radius: + 半径 + + + Formula wizard + + Value + + + + Calculation + 打算 + + + First angle: + + + + Length: + 长度: + + + Center point: + 中点 + + + Color: + 颜色: + DialogBisector - - Point along bisector - + Length + 长度 - - Length: - - - - - Formula wizard - - - - - Value - - - - - Calculation - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - - Point label: - + First point + 第一点 - - Unique label - + Second point + 第二点 - - Choose unique label. - + Type of line + 线类型 - - First point: - - - - - Second point: - - - - - Third point: - - - - - Type of line: - - - - - Line color: - - - - - Edit length - - - - Select second point of angle - Select third point of angle + + Point along bisector + + + + Line color + 线颜色 + + + Edit length + 修长度 + + + Length: + 长度: + + + Formula wizard + + + + Value + + + + Calculation + 打算 + + + Point label: + + + + Unique label + + + + Choose unique label. + + + + First point: + 第一点: + + + Second point: + 第二点: + + + Third point: + + + + Type of line: + 线类型: + + + Line color: + 线颜色: + DialogCurveIntersectAxis - - Point intersect curve and axis - - - - - Angle: - - - - - Formula wizard - - - - - Value - - - - - Calculation - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - - Axis point: - + Type of line + 线类型 - - Curve: - - - - - Point label: - - - - - Unique label - - - - - Choose unique label. - - - - - Type of line: - - - - - Line color: - - - - Select axis point - + Point intersect curve and axis + + + + Line color + 线颜色 + + Edit angle + + Angle: + + + + Formula wizard + + + + Value + + + + Calculation + 打算 + + + Axis point: + + + + Curve: + + + + Point label: + + + + Unique label + + + + Choose unique label. + + + + Type of line: + 线类型: + + + Line color: + 线颜色: + DialogCutArc - - Segment an arc - + Length + 长度 - - Length: - - - - - Formula wizard - - - - - Value - - - - - Calculation - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - + Segment an arc + + + + Color + 颜色 + + + Edit length + 修长度 + + + Length: + 长度: + + + Formula wizard + + + + Value + + + + Calculation + 打算 + + Arc: - Point label: - Unique label - Choose unique label. - Color: - - - - - Edit length - + 颜色: DialogCutSpline - - Segmenting a simple curve - + Length + 长度 - - Length: - - - - - Formula wizard - - - - - Value - - - - - Calculation - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - + Segmenting a simple curve + + + + Color + 颜色 + + + Edit length + 修长度 + + + Length: + 长度: + + + Formula wizard + + + + Value + + + + Calculation + 打算 + + Curve: - Point label: - Unique label - Choose unique label. - Color: - - - - - Edit length - + 颜色: DialogCutSplinePath - - Segment a curved path - + Length + 长度 - - Length: - - - - - Formula wizard - - - - - Value - - - - - Calculation - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - + Segment a curved path + + + + Color + 颜色 + + + Edit length + 修长度 + + + Length: + 长度: + + + Formula wizard + + + + Value + + + + Calculation + 打算 + + Curve: - Point label: - Unique label - Choose unique label. - Color: - - - - - Edit length - + 颜色: DialogDetail - - Seam allowance tool - - - - - All objects in path should follow in clockwise direction. - - - - - Bias X: - - - - - - - cm - - - - - Bias Y: - - - - - Reverse - - - - - Options - - - - - Name of detail: - - - - Detail - + cm + + + + Options + + + Seam allowance - - Width: - + Width + 宽度 - Closed - Delete - + 删除 - - Scroll down the list - - - - - Scroll up the list - - - - - - Ready! - - - - Got wrong scene object. Ignore. - + Reverse + + + + Seam allowance tool + + + + All objects in path should follow in clockwise direction. + + + + Scroll down the list + + + + Scroll up the list + + + + Ready! + + + You need more points! - + You have double points! + + + You have to choose points in a clockwise direction! - - First point cannot be equal to the last point! + Bias X: - - You have double points! + Bias Y: + + + + Name of detail: + + + + Width: + 宽度: + + + First point cannot be equal to the last point! DialogEditWrongFormula - Edit formula - - Formula: - - - - Insert variable into formula - - Value - - - - - Calculation - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - Input data - Measurements - + 尺寸 - Increments - Length of lines - Length of arcs - Length of curves - Angle of lines - - Radius of arcs - - - - - Angles of arcs - - - - - Angles of curves - - - - Hide empty measurements - Double click for add to formula - + Height + 高度 + + + Size + 尺码 + + Line length - Arc length - Curve length - Line Angle - + Radius of arcs + + + + Angles of arcs + + + + Angles of curves + + + Arc radius - Arc angle - Curve angle + + Formula: + + + + Value + + + + Calculation + 打算 + DialogEndLine - - Point at distance and angle - + Length + 长度 - - Length: - - - - - - Formula wizard - - - - - - Value - - - - - - Calculation - - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - - Angle: + Type of line + 线类型 + + + Point at distance and angle - - Base point: - + Line color + 线颜色 - - Point label: - - - - - Unique label - - - - - Choose unique label. - - - - - Type of line: - - - - - Line color: - - - - Edit angle - Edit length + 修长度 + + + Length: + 长度: + + + Formula wizard + + Value + + + + Calculation + 打算 + + + Angle: + + + + Base point: + + + + Point label: + + + + Unique label + + + + Choose unique label. + + + + Type of line: + 线类型: + + + Line color: + 线颜色: + DialogHeight - - Perpendicular point along line - + Type of line + 线类型 - - Point label: - - - - - Unique label - - - - - Choose unique label. - - - - - Base point: - - - - - First point of line: - - - - - Second point of line: - - - - - Type of line: - - - - - Line color: - - - - Select first point of line - Select second point of line + + Perpendicular point along line + + + + Line color + 线颜色 + + + Point label: + + + + Unique label + + + + Choose unique label. + + + + Base point: + + + + First point of line: + + + + Second point of line: + + + + Type of line: + 线类型: + + + Line color: + 线颜色: + DialogHistory - History - - Tool - + 工具 - - - - - Can't create record. - %1 - Base point - - %1_%2 - Line from point %1 to point %2 - %3 - Point along line %1_%2 - %1 - Point of shoulder - %3 - normal to line %1_%2 - %4 - bisector of angle %1_%2_%3 - %5 - intersection of lines %1_%2 and %3_%4 - Curve %1_%2 - Arc with center in point %1 - - Arc with center in point %1 and length %2 - - - - Curve point %1 - %4 - point of contact of arc with the center in point %1 and line %2_%3 - Point of perpendicular from point %1 to line %2_%3 - Triangle: axis %1_%2, points %3 and %4 - %1 - point of intersection %2 and %3 - %1 - cut arc with center %2 - %1 - cut curve %2_%3 - %1 - cut curve path %2 - %1 - point of intersection line %2_%3 and axis through point %4 - %1 - point of intersection curve and axis through point %2 - + Arc with center in point %1 and length %2 + + + %1 - point of arcs intersection - %1 - point of circles intersection - - %1 - point of curves intersection - - - - %1 - point from circle and tangent - %1 - point from arc and tangent - Correction the dart %1_%2_%3 + + %1 - point of curves intersection + + DialogIncrements - - Tables of Variables - - - - Increments - Name - The calculated value - - Formula - - - - - - Details - - - - - Move measurement up - - - - - Move measurement down - - - - - Name: - - - - - Unique increment name - - - - - Calculated value: - - - - - Formula: - - - - - Calculation - - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - - - - - Formula wizard - - - - - Description: - - - - Lines - + 线 - - Line - + 线 - - - Length - + 长度 - - Lines angles - - - - - - - Angle - - - - - Lengths curves - - - - - Curve - - Angles curves - - - - - Lengths arcs - - - - - - Arc - + Tables of Variables + + + + Lines angles + + + + Angle + + + + Lengths curves + + + + Angles curves + + + + Lengths arcs + + + Radiuses arcs - Radius - Angles arcs - - - - Error + Formula - - + Details + + + + Move measurement up + + + + Move measurement down + + + + Name: + + + + Calculated value: + + + + Formula: + + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + Description: + + + + Error + 错误 + + Empty field. - Empty field - Value - - Parser error: %1 - Increment_%1 - Edit increment + + Unique increment name + + + + Calculation + 打算 + + + Formula wizard + + DialogLayoutProgress - - Create a Layout - - - - - <html><head/><body><p>Finding best position for worpieces. Please, wait.</p></body></html> - - - - - - Arranged workpieces: %1 from %2 - - - - Couldn't prepare data for creation layout - Several workpieces left not arranged, but none of them match for paper + + Create a Layout + + + + <html><head/><body><p>Finding best position for worpieces. Please, wait.</p></body></html> + + + + Arranged workpieces: %1 from %2 + + DialogLayoutSettings - - Create a layout - + Paper size + 纸页尺寸 - - Paper format - - - - Templates: - Width: - + 宽度: - Height: - - Fields - - - - - Left: - - - - - Right: - - - - - Top: - - - - - Bottom: - - - - - Ignore fileds - - - - - Layout options - - - - - Gap width: - - - - - Shift/Offset length: - - - - - Save length of the sheet - - - - Rotate workpiece - Rotate by - degree - - Rule for choosing the next workpiece - - - - Three groups: big, middle, small - Two groups: big, small - Descending area - + Millimiters + 毫米 + + + Centimeters + 公分 + + + Inches + 英寸 + + + Pixels + + + + Create a layout + + + Auto crop unused length - Unite pages (if possible) - - Enabling for sheets that have big height will speed up creating. + Gap width: - - Divide into strips + Save length of the sheet - - Multiplier - - - - - Set multiplier for length of the biggest workpiece in layout. - - - - - x - - - - Letter - + - Legal - Roll 24in - Roll 30in - Roll 36in - Roll 42in - Roll 44in - + Paper format + + + + Fields + + + + Left: + + + + Right: + + + + Top: + + + + Bottom: + + + + Ignore fileds + + + Custom - + Wrong fields. + + + + Fields go beyond printing. + +Apply settings anyway? + + + Three groups: big, middle, small = 0; Two groups: big, small = 1; @@ -2008,390 +1679,339 @@ - - Wrong fields. + Layout options - - Fields go beyond printing. - -Apply settings anyway? + Shift/Offset length: - - - Millimiters + Rule for choosing the next workpiece - - - Centimeters + Enabling for sheets that have big height will speed up creating. - - - Inches + Divide into strips - - Pixels + Multiplier + + + + Set multiplier for length of the biggest workpiece in layout. + + + + x DialogLine - + First point + 第一点 + + + Second point + 第二点 + + + Type of line + 线类型 + + + Select second point + + + Line between points - + Line color + 线颜色 + + First point: - + 第一点: - Second point: - + 第二点: - Type of line: - + 线类型: - Line color: - - - - - Select second point - + 线颜色: DialogLineIntersect - - Point at line intersection - - - - - Point label: - - - - - Unique label - - - - - Choose unique label. - - - - First line - - - First point: - + First point + 第一点 - - - Second point: - + Second point + 第二点 - Second line - Select second point of first line - Select first point of second line - Select second point of second line + + Point at line intersection + + + + Point label: + + + + Unique label + + + + Choose unique label. + + + + First point: + 第一点: + + + Second point: + 第二点: + DialogLineIntersectAxis - - Point intersect line and axis - - - - - Angle: - - - - - Formula wizard - - - - - Value - - - - - Calculation - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - - Axis point: - - - - - Axis Point - - - - - First line point: - - - - First point of line - - Second line point: - + Type of line + 线类型 - - Second point of line - - - - - Point label: - - - - - Unique label - - - - - Choose unique label. - - - - - Type of line: - - - - Show line from first point to this point - - Line color: - - - - Select second point of line - Select axis point - + Point intersect line and axis + + + + Axis Point + + + + Second point of line + + + + Line color + 线颜色 + + Edit angle + + Angle: + + + + Formula wizard + + + + Value + + + + Calculation + 打算 + + + Axis point: + + + + First line point: + + + + Second line point: + + + + Point label: + + + + Unique label + + + + Choose unique label. + + + + Type of line: + 线类型: + + + Line color: + 线颜色: + DialogMDataBase - Measurement data base - Measurements - + 尺寸 - - Direct Height Measurement section - - Direct Width Measurement section - - Indentation Measurement section - - - Hand - Measurement section - - - - - - Foot - Measurement section - - - - - - Head - Measurement section - - - - - Circumference and Arc Measurement section - - Vertical Measurement section - - Horizontal Measurement section - - Bust Measurement section - - Balance Measurement section - - Arm Measurement section - - Leg Measurement section - - Crotch and Rise Measurement section - - + Hand + Measurement section + + + + Foot + Measurement section + + + + Head + Measurement section + + + Men & Tailoring Measurement section - - Historical & Specialty Measurement section - - Patternmaking measurements Measurement section - Collapse All - Expand All - Check all - Uncheck all @@ -2399,256 +2019,227 @@ Apply settings anyway? DialogNewMeasurements - New measurement file - Measurement type: - Unit: - Base size: - Base height: - Individual - Standard - Centimeters - + 公分 - Millimiters - + 毫米 - Inches - + 英寸 DialogNewPattern - - New pattern - - - - - Pattern piece name: - - - - - Unique pattern piece name - - - - - Choose unique pattern piece name. - - - - Units: - Centimeters - + 公分 - Millimiters + 毫米 + + + Inches + 英寸 + + + Pattern piece name: - - Inches + Unique pattern piece name + + + + Choose unique pattern piece name. + + + + New pattern DialogNormal - - Point along perpendicular - + Length + 长度 - - Length: - - - - - Formula wizard - - - - - Value - - - - - Calculation - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - + First point + 第一点 + + + Second point + 第二点 + + + Type of line + 线类型 + + + Select second point of line + + + + Point along perpendicular + + + + Line color + 线颜色 + + + Edit length + 修长度 + + + Length: + 长度: + + + Formula wizard + + + + Value + + + + Calculation + 打算 + + Point label: - Unique label - Choose unique label. - First point: - + 第一点: - Second point: - + 第二点: - Additional angle degrees: - Type of line: - + 线类型: - Line color: - - - - - Edit length - - - - - Select second point of line - + 线颜色: DialogPatternProperties - Pattern properties - Description - Author name - Pattern description - For technical notes. - Heights and Sizes - - Default height and size - - - - - From standard measurements - - - - - Custom - - - - - Height: - - - - - Size: - - - - All heights (cm) - All sizes (cm) - + Default height and size + + + + From standard measurements + + + + Custom + + + + Height: + + + + Size: + + + Security - Open only for read @@ -2656,606 +2247,479 @@ Apply settings anyway? DialogPatternXmlEdit - XML Editor - Value : - Name : - <No selection> - Type : - Add attribute - Add son - Remove attribute - Remove node - Set - Cancel - Apply changes - Undo last - - Immediately apply - - - - Base selection - All pattern pieces - - - - No changes - Cannot delete previously created node - No changes left - Cannot undo change - - <no value> - - Unchanged - Cannot delete previously created attribute - Node Name - - Name: - Node Value (may be empty) - - Value: - Attribute Name - Attribute Value - No selection - Root node - Node - Attribute + + Immediately apply + + DialogPointFromArcAndTangent - Point from arc and tangent - + Select an arc + + + Point label: - Unique label - Choose unique label. - Tangent point: - Arc: - Take: - - - Select an arc - - DialogPointFromCircleAndTangent - Point from circle and tangent - - Radius: - - - - - Formula wizard - - - - - Value - - - - - Calculation - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - - Point label: - - - - - Unique label - - - - - Choose unique label. - - - - - Center of the circle: - - - - - Tangent point: - - - - - Take: - - - - Select a circle center - Edit radius - Error + 错误 + + + Radius can't be negative - - Radius can't be negative + Radius: + 半径 + + + Formula wizard + + + + Value + + + + Calculation + 打算 + + + Point label: + + + + Unique label + + + + Choose unique label. + + + + Center of the circle: + + + + Tangent point: + + + + Take: DialogPointOfContact - - Point at intersection of arc and line - - - - - Radius: - - - - - Formula wizard - - - - - Value - - - - - Calculation - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - - Point label: + Select point of center of arc - - Unique label - - - - - Choose unique label. - - - - - Center of arc: - - - - - Top of the line: - - - - - End of the line: - - - - - Edit radius - - - - Select second point of line - - Select point of center of arc + Point at intersection of arc and line + + + + Edit radius + + + + Radius: + 半径 + + + Formula wizard + + + + Value + + + + Calculation + 打算 + + + Point label: + + + + Unique label + + + + Choose unique label. + + + + Center of arc: + + + + Top of the line: + + + + End of the line: DialogPointOfIntersection - Point from X and Y of two other points - + Select point for Y value (horizontal) + + + Point label: - Unique label - Choose unique label. - X: vertical point: - Y: horizontal point: - - - Select point for Y value (horizontal) - - DialogPointOfIntersectionArcs - Dialog - + Select second an arc + + + Point label: - Unique label - Choose unique label. - First arc: - Second arc: - Take: - - - Select second an arc - - DialogPointOfIntersectionCircles - Dialog - - Radius of the first circle: - - - - - - Formula wizard - - - - - - Value - - - - - - Calculation - - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - - Radius of the second circle: - - - - - Point label: - - - - - Unique label - - - - - Choose unique label. - - - - - Center of the first circle: - - - - - Center of the second circle: - - - - - Take: - - - - Select second circle center - Edit first circle radius - Edit second circle radius - - Error + 错误 + + + Radius can't be negative - - - Radius can't be negative + Radius of the first circle: + + + + Formula wizard + + + + Value + + + + Calculation + 打算 + + + Radius of the second circle: + + + + Point label: + + + + Unique label + + + + Choose unique label. + + + + Center of the first circle: + + + + Center of the second circle: + + + + Take: DialogPointOfIntersectionCurves - Tool point of intersection curves - First curve: - Second curve: - Point label: - Unique label - Choose unique label. - Vertical correction: - Horizontal correction: - Select second curve @@ -3263,52 +2727,42 @@ Apply settings anyway? DialogSaveLAyout - Save Layout - File name: - Path: - File format: - - Destination folder - - - - - Path to destination folder. - - - - - Select path to destination folder - - - - Browse... - + Destination folder + + + + Path to destination folder. + + + + Select path to destination folder + + + File base name - File base name. @@ -3316,461 +2770,378 @@ Apply settings anyway? DialogSaveLayout - - The base filename does not match a regular expression. - - - - - Tried to use out of range format number. - - - - - Selected not present format. - - - - - The destination directory doesn't exists or is not readable. - - - - Name conflict - Folder already contain file with name %1. Rewrite all conflict file names? - Example: - Select folder - Svg files (*.svg) - PDF files (*.pdf) - Images (*.png) - Wavefront OBJ (*.obj) - PS files (*.ps) - + PS文件(*.ps) - EPS files (*.eps) + EPS文件(*.eps) + + + DXF files (*.dxf) + DXF文件(*.dxf) + + + Tried to use out of range format number. - - DXF files (*.dxf) + Selected not present format. + + + + The destination directory doesn't exists or is not readable. + + + + The base filename does not match a regular expression. DialogShoulderPoint - - Special point on shoulder - + Length + 长度 - - Length: - - - - - Formula wizard - - - - - Value - - - - - Calculation - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - - Point label: - + First point + 第一点 - - Unique label - + Second point + 第二点 - - Choose unique label. - + Type of line + 线类型 - - First point: - - - - - Second point: - - - - - Third point: - - - - - Type of line: - - - - - Line color: - - - - - Edit length - - - - Select first point of line - Select second point of line + + Special point on shoulder + + + + Line color + 线颜色 + + + Edit length + 修长度 + + + Length: + 长度: + + + Formula wizard + + + + Value + + + + Calculation + 打算 + + + Point label: + + + + Unique label + + + + Choose unique label. + + + + First point: + 第一点: + + + Second point: + 第二点: + + + Third point: + + + + Type of line: + 线类型: + + + Line color: + 线颜色: + DialogSinglePoint - Single point - - Unique label - - - - - Choose unique label. - - - - - Point label - - - - Coordinates on the sheet - Coordinates - Y coordinate - X coordinate + + Point label + + + + Unique label + + + + Choose unique label. + + DialogSpline - - Simple curve - + First point + 第一点 - - First point: - + Second point + 第二点 - - - Control point - - - - - - Length: - - - - - - - - Formula wizard - - - - - - - - Value - - - - - - - - Calulation - - - - - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - - - - - - Angle: - - - - - Second point: - - - - - Color: - - - - - Name: - - - - Select last point of curve - + Simple curve + + + + Color + 颜色 + + + Color: + 颜色: + + + First point: + 第一点: + + + Control point + + + + Angle: + + + + Second point: + 第二点: + + + Name: + + + + Invalid spline + + + + Length: + 长度: + + + Formula wizard + + + + Value + + + + Calulation + 打算 + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + Edit first control point angle - Edit second control point angle - Edit first control point length - Edit second control point length - - Error - + 错误 - - Length can't be negative - - - Invalid spline - - DialogSplinePath - Curved path - - Point: - - - - - First control point - - - - - - Length: - - - - - - - - Formula wizard - - - - - - - - - - - - Value - - - - - - - - Calulation - - - - - - - - <html><head/><body><p>Show full calculation in message box</p></body></html> - - - - - - Angle: - - - - - Second control point - - - - List of points - - Color: - - - - - Name: - - - - Select point of curve path - - Edit first control point angle + Color + 颜色 + + + Color: + 颜色: + + + Point: - - Edit second control point angle + First control point - - Edit first control point length + Angle: - - Edit second control point length + Second control point - - - Error + Name: - - - Length can't be negative - - - - Invalid spline path - + Length: + 长度: + + + Formula wizard + + + + Value + + + + Calulation + 打算 + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + Edit first control point angle + + + + Edit second control point angle + + + + Edit first control point length + + + + Edit second control point length + + + + Error + 错误 + + + Length can't be negative + + + Not used @@ -3778,279 +3149,225 @@ Apply settings anyway? DialogTool - - First point - - - - - Second point - - - - - Highest point - - - - - Lowest point - - - - - Leftmost point - - - - - Rightmost point - - - - - - - - - - Error - + 错误 - - - Empty field - Value can't be 0 - Value - - Parser error: %1 + + First point + 第一点 + + + Second point + 第二点 + + + Highest point + + + + Lowest point + + + + Leftmost point + + + + Rightmost point + + DialogTriangle - - Triangle tool - + First point + 第一点 - - Point label: - + Second point + 第二点 - - Unique label - - - - - Choose unique label. - - - - - First point of axis: - - - - - Second point of axis: - - - - - First point: - - - - - Second point: - - - - Select second point of axis - Select first point - Select second point + + Triangle tool + + + + Point label: + + + + Unique label + + + + Choose unique label. + + + + First point of axis: + + + + Second point of axis: + + + + First point: + 第一点: + + + Second point: + 第二点: + DialogTrueDarts - True darts - - First base point: - - - - - Second base point: - - - - - First dart point: - - - - - Second dart point: - - - - - Third dart point: - - - - - First new dart point: - - - - - - Unique label - - - - - - Choose unique label. - - - - - Second new dart point: - - - - Select the second base point - Select the first dart point - Select the second dart point - Select the third dart point + + First base point: + + + + Second base point: + + + + First dart point: + + + + Second dart point: + + + + Third dart point: + + + + First new dart point: + + + + Unique label + + + + Choose unique label. + + + + Second new dart point: + + DialogUndo - Broken formula - - Error while calculation formula. You can try to undo last operation or fix broken formula. - - - - &Undo - &Fix formula - &Cancel + + Error while calculation formula. You can try to undo last operation or fix broken formula. + + DialogUnionDetails - Union tool - - <html><head/><body><p>Do you really want to unite details?</p></body></html> - - - - Select a first point - Workpiece should have at least two points and three objects - Select a second point - Select a unique point - Select a detail - Select a point on edge + + <html><head/><body><p>Do you really want to unite details?</p></body></html> + + InternalStrings - - The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. @@ -4058,1422 +3375,1101 @@ Apply settings anyway? MApplication - Error parsing file. Program will be terminated. - Error bad id. Program will be terminated. - Error can't convert value. Program will be terminated. - Error empty parameter. Program will be terminated. - Error wrong id. Program will be terminated. - Something's wrong!! - Parser error: %1. Program will be terminated. - Exception thrown: %1. Program will be terminated. - Valentina's measurements editor. - The measurement file. - - Open with the base height. Valid values: %1cm. - - - - The base height - - Open with the base size. Valid values: %1cm. - - - - The base size - Set pattern file unit: cm, mm, inch. - The pattern unit - - Use for unit testing. Run the program and open a file without showing the main window. - - - - - Invalid base height argument. Must be %1cm. - - - - - Invalid base size argument. Must be %1cm. - - - - Invalid base size argument. Must be cm, mm or inch. - Can't begin to listen for incoming connections on name '%1' - Test mode doesn't support openning several files. - Please, provide one input file. + + Open with the base size. Valid values: %1cm. + + + + Invalid base height argument. Must be %1cm. + + + + Invalid base size argument. Must be %1cm. + + + + Open with the base height. Valid values: %1cm. + + + + Use for unit testing. Run the program and open a file without showing the main window. + + MainWindow - Valentina - - Tools - - - - Tools for creating points. - - Point - - Point at distance and angle - - - - - Point at distance along line - - - - Point along perpendicular - - Point along bisector - - - - - Special point on shoulder - - - - - Point at intersection of arc and line - - - - - Triangle tool - - - - - Point from X and Y of two other points - - - - Perpendicular point along line - - Point intersect line and axis + Point along bisector - - True darts + Point at distance and angle + + + + Point at distance along line - Tools for creating lines. - - Line - + 线 - Line between points - Point at line intersection - Tools for creating curves. - - Curve - - Simple curve - - - - - Segmenting a simple curve - - - - - Curved path - - - - - Segment a curved path - - - - - Point intersect curve and axis - - - - - Point intersection curves - - - - Tools for creating arcs. - - - Arc - - Segment an arc - - - - - Point intersect arc and axis - - - - - Point of intersection arcs - - - - - Point of intersection circles - - - - - Point from circle and tangent - - - - - Point from arc and tangent - - - - - Arc with given length - - - - Tools for creating details. - - Detail - - Seam allowance tool - - - - - Union tool - - - - - - - - Layout - - - - - Create new Layout - - - - - Settings - - - - &File - &Help - &Pattern piece - - Measurements - + 尺寸 - Window - - - History - - - - - Mode - - - - Toolbar files - ToolBar modes - Toolbar pattern - Toolbar options - Toolbar tools - Tool options - - toolBar - - - - - Layout pages - - - - New - + - &New - Create a new pattern - Open - &Open - Open file with pattern - - Save - + 保存 - &Save - Save pattern - Save &As... - Save not yet saved pattern - Draw - - <html><head/><body><p>Mode for working with pattern pieces. These pattern pieces are base for going to the next stage &quot;Details mode&quot;. Before you will be able to enable the &quot;Details mode&quot; need create at least one detail.</p></body></html> - - - - Details - - <html><head/><body><p>Mode for working with details. Before you will be able to enable the &quot;Details mode&quot; need create at least one detail on the stage &quot;Draw mode&quot;. Details created on this stage will be used for creating a layout. </p></body></html> - - - - - Pointer - - - - Pointer tools - New pattern piece - Add new pattern piece - - Config pattern piece - - - - Change the label of pattern piece - Table of variables - Tables of variables - - <html><head/><body><p>Mode for creating a layout of details. This mode avaliable if was created at least one detail on the stage &quot;Details mode&quot;. The layout can be exported to your prefered file format and saved to your harddirve.</p></body></html> + History - About &Qt - &About Valentina - E&xit - Exit the application - - Preferences - Pattern properties - Zoom in - zoom in - - Zoom out - Edit pattern XML code - Original zoom - Original Zoom - Zoom fit best - Stop - Stop using tool - - Report Bug... - - - - Report bug - Close window - Online help - Show online help - - Last Tool - - - - - Activate last used tool again - - - - - Show Curve Details - - - - - Show/hide control points and curve direction - - - - - Save as PDF - - - - - Save original layout - - - - - Save as tiled PDF - - - - - Split and save a layout into smaller pages - - - - - Print - - - - - Print an original layout - - - - - Print tiled - - - - - Split and print a layout into smaller pages (for regular printers) - - - - - Print preview - - - - - Print preview original layout - - - - - Print preview tiled - - - - - Print preview tiled layout - - - - - Export As... - - - - - Export original layout - - - - - Load Individual ... - - - - - Load Standard ... - - - - - Create/Edit - - - - - Create/edit measurements - - - - - Show ... - - - - - Show measurements - - - - - Sync measurements - - - - - Unload measurements - - - - - Unload measurements if they was not used in a pattern file. - - - - - New pattern - - - - - Open pattern - - - - - Create/Edit measurements - - - - - Pattern piece %1 - - - Measurement file has unknown format. - - - - - - Measurement file contains invalid known measurement(s). - - - - - - Measurement file doesn't include all required measurements. - - - - - - Please, additionaly provide: %1 - - - - - Wrong units. - - - - - Application doesn't support standard table with inches. - - - - - - - - - File error. - - - - - Measurement files types have not match. - - - - - - Select point - Select first point - - - Select first point of line - Select first point of angle - Select first point of first line - Select first point curve - Select simple curve - Select point of center of arc - Select point of curve path - Select curve path - Select points, arcs, curves clockwise. - Select base point - Select first point of axis - - Select point for X value (vertical) - - - - Select detail - - Select arc - Select curve - - Select first an arc - - - - - Select first circle center - - - - - Select first curve - - - - - - Select point on tangent - - - - - Select point of the center of the arc - - - - - Select the first base line point - - - - About Qt - - - &Undo - - - - - - &Redo - - - - - - Pattern Piece: - - - - - - Individual measurements (*.vit);;Standard measurements (*.vst) - - - - - - - - - - Open file - - - - - - Measurements loaded - - - - - Standard measurements (*.vst);;Individual measurements (*.vit) - - - - - Measurements unloaded - - - - - Couldn't unload measurements. Some of them are used in the pattern. - - - - - Measurements was synced - - - - - Couldn't sync measurements. - - - - - Measurements was changed. Do you want to sync measurements now? - - - - Height: - Size: - - %1, %2 (%3) - Coords in status line: "X, Y (units)" + Pattern Piece: - - Detail mode - - - - - You can't use now the Detail mode. Please, create at least one workpiece. - - - - - Layout mode - - - - - You can't use now the Layout mode. Please, create at least one workpiece. - - - - - Pattern files (*.val) - - pattern - Save as - - Failed to lock. This file already opened in another window. - - - - - Could not save file - - Failed to lock. This file already opened in another window. Expect collissions when run 2 copies of the program. - + Open file + 打开文件 - - Error parsing file. - Error can't convert value. - - Error empty parameter. - Error wrong id. - + 错误:编码错误 - Error parsing file (std::bad_alloc). - Bad id. - - - Couldn't update measurements. - - - - File saved - - Unsaved changes + untitled.val - The pattern has been modified. Do you want to save your changes? - - Save... + &Undo - - Don't Save + &Redo - Pattern piece: - Enter a new label for the pattern piece. - - - The measurements file '%1' could not be found. + This file already opened in another window. + 这个文件已经在别的窗李打开的 + + + Wrong units. + + + + Application doesn't support standard table with inches. + + + + File error. - File loaded - Valentina didn't shut down correctly. Do you want reopen files (%1) you had open? - Reopen files. - - The measurements file <br/><br/> <b>%1</b> <br/><br/> could not be found. Do you want to update the file location - - - - - Loading measurements file - - - - Standard measurements (*.vst) - Individual measurements (*.vit) - + Special point on shoulder + + + + Triangle tool + + + + Point at intersection of arc and line + + + + Point from X and Y of two other points + + + + Point intersect line and axis + + + + Simple curve + + + + Curved path + + + + Segmenting a simple curve + + + + Segment a curved path + + + + Point intersect curve and axis + + + + Segment an arc + + + + Point intersect arc and axis + + + + Seam allowance tool + + + + Union tool + + + + toolBar + + + + Last Tool + + + + Activate last used tool again + + + + Select point for X value (vertical) + + + + Mode + + + + Pointer + + + + Config pattern piece + + + + Layout + + + + Show Curve Details + + + + Show/hide control points and curve direction + + + + Tools + + + + Point of intersection arcs + + + + Point of intersection circles + + + + Point from circle and tangent + + + + Point from arc and tangent + + + + Arc with given length + + + + Settings + + + + Layout pages + + + + Save as PDF + + + + Save original layout + + + + Save as tiled PDF + + + + Split and save a layout into smaller pages + + + + Print + + + + Print tiled + + + + Split and print a layout into smaller pages (for regular printers) + + + + Print preview + + + + Print preview original layout + + + + Export As... + + + + Export original layout + + + + Select first an arc + + + + Select first circle center + + + + Select point on tangent + + + + Select point of the center of the arc + + + + Select the first base line point + + + + Detail mode + + + + You can't use now the Detail mode. Please, create at least one workpiece. + + + + Layout mode + + + + You can't use now the Layout mode. Please, create at least one workpiece. + + + + Unsaved changes + + + + Load Individual ... + + + + Load Standard ... + + + + Show ... + + + + Show measurements + + + + Sync measurements + + + + Individual measurements (*.vit);;Standard measurements (*.vst) + + + + Measurements loaded + + + + Standard measurements (*.vst);;Individual measurements (*.vit) + + + You can't export empty scene. - - Export error. + Create new Layout + + + + Create/Edit + + + + Create/edit measurements + + + + %1, %2 (%3) + Coords in status line: "X, Y (units)" + + + + Failed to lock. This file already opened in another window. + + + + Failed to lock. This file already opened in another window. Expect collissions when run 2 copies of the program. + + + + Measurement file contains invalid known measurement(s). + + + + Measurement file has unknown format. + + + + Measurement file doesn't include all required measurements. + + + + Please, additionaly provide: %1 + + + + Measurement files types have not match. + + + + Measurements was synced + + + + Couldn't sync measurements. + + + + Couldn't update measurements. + + + + The measurements file '%1' could not be found. + + + + The measurements file <br/><br/> <b>%1</b> <br/><br/> could not be found. Do you want to update the file location + + + + Loading measurements file - Not supported size value '%1' for this pattern file. - Couldn't set size. Need a file with standard measurements. - Couldn't set size. File wasn't opened. - - The method %1 does nothing in GUI mode - Not supported height value '%1' for this pattern file. - Couldn't set height. Need a file with standard measurements. - Couldn't set height. File wasn't opened. - + Export error. + + + Please, provide one input file. - - untitled.val + Print an original layout - - (read only) + Print preview tiled - - - + Print preview tiled layout + + + + <html><head/><body><p>Mode for working with pattern pieces. These pattern pieces are base for going to the next stage &quot;Details mode&quot;. Before you will be able to enable the &quot;Details mode&quot; need create at least one detail.</p></body></html> + + + + <html><head/><body><p>Mode for working with details. Before you will be able to enable the &quot;Details mode&quot; need create at least one detail on the stage &quot;Draw mode&quot;. Details created on this stage will be used for creating a layout. </p></body></html> + + + + <html><head/><body><p>Mode for creating a layout of details. This mode avaliable if was created at least one detail on the stage &quot;Details mode&quot;. The layout can be exported to your prefered file format and saved to your harddirve.</p></body></html> + + + + Unload measurements + + + + Unload measurements if they was not used in a pattern file. + + + + Measurements unloaded + + + + Couldn't unload measurements. Some of them are used in the pattern. + + + + True darts + + + + New pattern + + + + Open pattern + + + + Create/Edit measurements + + + + Save... + 保存... + + + Don't Save + 不保存 + + Locking file - This file already opened in another window. Ignore if you want to continue (not recommended, can cause a data corruption). - The lock file could not be created, for lack of permissions. Ignore if you want to continue (not recommended, can cause a data corruption). - Unknown error happened, for instance a full partition prevented writing out the lock file. Ignore if you want to continue (not recommended, can cause a data corruption). - - This file already opened in another window. - - - - The lock file could not be created, for lack of permissions. - Unknown error happened, for instance a full partition prevented writing out the lock file. + + Report Bug... + + + + Point intersection curves + + + + Select first curve + + + + (read only) + + + + Measurements was changed. Do you want to sync measurements now? + + MainWindowsNoGUI - - Couldn't prepare data for creation layout - - - - - Several workpieces left not arranged, but none of them match for paper - - - - - Export error. - - - - - For saving multipage document all sheet should have the same size. Use export function instead. - - - - - For previewing multipage document all sheet should have the same size. - - - - - For printing multipages document all sheet should have the same size. - - - - - Can't open printer %1 - - - - Creating file '%1' failed! %2 - Critical error! - Print to pdf - PDF file (*.pdf) - Print error - Cannot proceed because there are no available printers in your system. - unnamed - The layout is stale. - The layout was not updated since last pattern modification. Do you want to continue? + + Couldn't prepare data for creation layout + + + + Several workpieces left not arranged, but none of them match for paper + + + + Can't open printer %1 + + + + Export error. + + + + For saving multipage document all sheet should have the same size. Use export function instead. + + + + For previewing multipage document all sheet should have the same size. + + + + For printing multipages document all sheet should have the same size. + + MoveDoubleLabel - move the first dart label - move the second dart label @@ -5481,7 +4477,6 @@ Do you want to save your changes? MoveLabel - move point label @@ -5489,7 +4484,6 @@ Do you want to save your changes? MoveSPoint - move single point @@ -5497,7 +4491,6 @@ Do you want to save your changes? MoveSpline - move spline @@ -5505,7 +4498,6 @@ Do you want to save your changes? MoveSplinePath - move spline path @@ -5513,106 +4505,73 @@ Do you want to save your changes? PathPage - Open Directory - - Path that use Valentina - - Default - - Edit - - Type - - Path - - Individual measurements - - - Standard measurements - - - - - Patterns - - + Standard measurements + 标准尺寸 + + Layout - - Templates - + 草稿 PatternPage - - User - - - User name: - - - - - Graphical output - - Use antialiasing - - Undo - - + User name: + + + Count steps (0 - no limit): @@ -5620,12 +4579,10 @@ Do you want to save your changes? QApplication - The path to the measurments is already relative. - The path to the measurments is already absolute. @@ -5633,52 +4590,42 @@ Do you want to save your changes? QCommandLineParser - Displays version information. - Displays this help. - Unknown option '%1'. - Unknown options: %1. - Missing value after '%1'. - Unexpected value after '%1'. - [options] - Usage: %1 - Options: - Arguments: @@ -5686,7 +4633,6 @@ Do you want to save your changes? QCoreApplication - Based on Qt %1 (%2, %3 bit) @@ -5694,73 +4640,59 @@ Do you want to save your changes? QObject - Create new pattern piece to start working. - - Changes applied. - - - - mm - - cm - inch - - px - - - - Property The text that appears in the first column header - Value The text that appears in the second column header - + px + + + add node - move detail + + Changes applied. + + QSaveFile - Existing file %1 is not writable - Writing canceled by application - Partial write. Partition full? @@ -5768,15 +4700,11 @@ Do you want to save your changes? QmuParser - - too few arguments for function sum. parser error message - - too few arguments for function min. parser error message @@ -5785,217 +4713,181 @@ Do you want to save your changes? QmuParserErrorMsg - Unexpected token "$TOK$" found at position $POS$. Math parser error messages. Left untouched "$TOK$" and $POS$ - Internal error Math parser error messages. - Invalid function-, variable- or constant name: "$TOK$". Math parser error messages. Left untouched "$TOK$" - Invalid binary operator identifier: "$TOK$". Math parser error messages. Left untouched "$TOK$" - Invalid infix operator identifier: "$TOK$". Math parser error messages. Left untouched "$TOK$" - Invalid postfix operator identifier: "$TOK$". Math parser error messages. Left untouched "$TOK$" - Invalid pointer to callback function. Math parser error messages. - Expression is empty. Math parser error messages. - Invalid pointer to variable. Math parser error messages. - Unexpected operator "$TOK$" found at position $POS$ Math parser error messages. Left untouched "$TOK$" and $POS$ - Unexpected end of expression at position $POS$ Math parser error messages. Left untouched $POS$ - Unexpected argument separator at position $POS$ Math parser error messages. Left untouched $POS$ - Unexpected parenthesis "$TOK$" at position $POS$ Math parser error messages. Left untouched "$TOK$" and $POS$ - Unexpected function "$TOK$" at position $POS$ Math parser error messages. Left untouched "$TOK$" and $POS$ - Unexpected value "$TOK$" found at position $POS$ Math parser error messages. Left untouched "$TOK$" and $POS$ - Unexpected variable "$TOK$" found at position $POS$ Math parser error messages. Left untouched "$TOK$" and $POS$ - Function arguments used without a function (position: $POS$) Math parser error messages. Left untouched $POS$ - Missing parenthesis Math parser error messages. - Too many parameters for function "$TOK$" at expression position $POS$ Math parser error messages. Left untouched "$TOK$" and $POS$ - Too few parameters for function "$TOK$" at expression position $POS$ Math parser error messages. Left untouched "$TOK$" and $POS$ - Divide by zero Math parser error messages. - Domain error Math parser error messages. - Name conflict Math parser error messages. - Invalid value for operator priority (must be greater or equal to zero). Math parser error messages. - user defined binary operator "$TOK$" conflicts with a built in operator. Math parser error messages. Left untouched "$TOK$" - Unexpected string token found at position $POS$. Math parser error messages. Left untouched $POS$ - Unterminated string starting at position $POS$. Math parser error messages. Left untouched $POS$ - String function called with a non string type of argument. Math parser error messages. - String value used where a numerical argument is expected. Math parser error messages. - No suitable overload for operator "$TOK$" at position $POS$. Math parser error messages. Left untouched "$TOK$" and $POS$ - Function result is a string. Math parser error messages. - Parser error. Math parser error messages. - Decimal separator is identic to function argument separator. Math parser error messages. - The "$TOK$" operator must be preceeded by a closing bracket. Math parser error messages. Left untouched "$TOK$" - If-then-else operator is missing an else clause Math parser error messages. Do not translate operator name. - Misplaced colon at position $POS$ Math parser error messages. Left untouched $POS$ @@ -6004,7 +4896,6 @@ Do you want to save your changes? RenamePP - rename pattern piece @@ -6012,7 +4903,6 @@ Do you want to save your changes? SaveDetailOptions - save detail option @@ -6020,7 +4910,6 @@ Do you want to save your changes? SaveToolOptions - save tool option @@ -6028,736 +4917,565 @@ Do you want to save your changes? TMainWindow - <html><head/><body><p><span style=" font-size:18pt;">Select New for creation measurement file.</span></p></body></html> - - - Measurements - - - - - Find: - - - - - Search - - - - - Find Previous - - - - - Ctrl+Shift+G - - - - - Find Next - - - - - Ctrl+G - - - - Name - - Full name - - - - - Calculated value - Formula - Base value - In sizes - In heights - - Details - Name: - - Measurement's name in a formula - - - - - Measurement's name in a formula. - - - - Formula: - <html><head/><body><p>Show full calculation in message box</p></body></html> - - Function Wizard - - - - Base value: - In sizes: - In heights: - Description: - - Move measurement top - - - - Move measurement up - Move measurement down - - Move measurement bottom - - - - - Delete measurement - - - - Calculated value: - Full name: - - Measurement's human-readable name. - - - - Information - + 信息 - Type: - + 类型: - Measurement type - Path: - Show in Explorer - Base size: - Base size value - Base height: - Base height value - Given name: - - Customer's name. - - - - Family name: - - Customer's family name. - - - - Birth date: - - Gender: - + yyyy-MM-dd + 年年年年-月月-日日 - Email: - + 邮箱: - - Customer's email address. - - - - Notes: - + 备注: - - PM system: - - - - File - Window - Help - + 帮助 + + + Measurements + 尺寸 - Menu - Gradation - + 退吗 - - Measurement diagram - - - - - <html><head/><body><p><span style=" font-size:340pt;">?</span></p><p align=\"center\">Unknown measurement</p></body></html> - - - - Open individual ... - - Save - + 保存 - Save As ... - Quit - About &Qt - About Tape - New - + - Add known - Add custom - Read only - Open standard ... - Open template - Database - + 资料库 - Show information about all known measurement - - Preferences - - - Import from a pattern - - - - - Create from existing ... - - - - - Create from existing file - - - - untitled %1 - - - File '%1' doesn't exist! - + This file already opened in another window. + 这个文件已经在别的窗李打开的 - - - File has unknown format. - - - - - - File contains invalid known measurement(s). - - - - - - File error. - - Individual measurements (*.vit);;Standard measurements (*.vst);;All files (*.*) - - - - - Standard measurements (*.vst);;Individual measurements (*.vit);;All files (*.*) - - - - - Measurements (*.vst *.vit);;All files (*.*) - - - - - - Individual measurements (*.vit) - - - - - Select file - - - - - - Standard measurements - - - - - - Height: - - - - - - Size: - - - - - - Individual measurements - - - - - - Pattern unit: - - - - - Could not save file - measurements - + Individual measurements (*.vit) + + + Standard measurements (*.vst) - Save as - - Failed to lock. This file already opened in another window. + &New Window - - Failed to lock. This file already opened in another window. Expect collissions when run 2 copies of the program. - - - - - About Qt - - - - - - - - - - - Can't find measurement '%1'. - - - - Edit measurement - M_%1 - - Pattern files (*.val) - - - - - - This file already opened in another window. - - - - - <html><head/><body><p><span style=" font-size:340pt;">?</span></p><p align="center">Unknown measurement</p></body></html> - - - - - The name of known measurement forbidden to change. - - - - - - Error - + 错误 - - Empty field. - - The full name of known measurement forbidden to change. + Parser error: %1 + + + + Standard measurements + 标准尺寸 + + + Height: + + + + Size: + + + + Individual measurements - untitled - <Empty> - - File was not saved yet. - - - - Unsaved changes - Measurements have been modified. Do you want to save your changes? - - Save... - - - - - Don't Save - - - - Empty field - Value - - - Parser error: %1 - - - - Open file + 打开文件 + + + Import from a pattern - - Export standard measurements not supported. + Pattern files (*.val) - - &New Window + Pattern unit: - - - - Locking file + Find: - - This file already opened in another window. Ignore if you want to continue (not recommended, can cause a data corruption). + Find Previous - - The lock file could not be created, for lack of permissions. Ignore if you want to continue (not recommended, can cause a data corruption). + Ctrl+Shift+G - - Unknown error happened, for instance a full partition prevented writing out the lock file. Ignore if you want to continue (not recommended, can cause a data corruption). + Find Next - - The lock file could not be created, for lack of permissions. + Ctrl+G - - Unknown error happened, for instance a full partition prevented writing out the lock file. + Individual measurements (*.vit);;Standard measurements (*.vst);;All files (*.*) + + + + Standard measurements (*.vst);;Individual measurements (*.vit);;All files (*.*) + + + + Measurements (*.vst *.vit);;All files (*.*) + + + + Failed to lock. This file already opened in another window. + + + + Failed to lock. This file already opened in another window. Expect collissions when run 2 copies of the program. + + + + File contains invalid known measurement(s). + + + + File has unknown format. + + + + Full name + + + + File '%1' doesn't exist! + + + + The name of known measurement forbidden to change. + + + + Can't find measurement '%1'. + + + + The full name of known measurement forbidden to change. + + + + Function Wizard + + + + Move measurement top + + + + Move measurement bottom + + + + Delete measurement - unknown gender - male gender - female gender + + Gender: + + + + PM system: + + + + Create from existing ... + + + + Create from existing file + + + + Select file + + + + Export standard measurements not supported. + + + + Measurement diagram + + + + <html><head/><body><p><span style=" font-size:340pt;">?</span></p><p align=\"center\">Unknown measurement</p></body></html> + + + + <html><head/><body><p><span style=" font-size:340pt;">?</span></p><p align="center">Unknown measurement</p></body></html> + + + + About Qt + + + + File was not saved yet. + + + + Search + + + + Measurement's name in a formula + + + + Measurement's name in a formula. + + + + Measurement's human-readable name. + + + + Customer's name. + + + + Customer's family name. + + + + Customer's email address. + + + + Save... + 保存... + + + Don't Save + 不保存 + + + Locking file + + + + This file already opened in another window. Ignore if you want to continue (not recommended, can cause a data corruption). + + + + The lock file could not be created, for lack of permissions. Ignore if you want to continue (not recommended, can cause a data corruption). + + + + Unknown error happened, for instance a full partition prevented writing out the lock file. Ignore if you want to continue (not recommended, can cause a data corruption). + + + + The lock file could not be created, for lack of permissions. + + + + Unknown error happened, for instance a full partition prevented writing out the lock file. + + TapeConfigDialog - - Apply - - &Cancel - - &Ok - - Config Dialog - - Configuration - - Paths @@ -6765,68 +5483,50 @@ Do you want to save your changes? TapeConfigurationPage - - Language - + 语言 - - - GUI language: - + GUI language + GUI 语言 - - - Decimal separator parts: - - - - - - With OS options (%1) - - - - - Pattern making system - - - Pattern making system: - - - - - Author: - - Book: - - + With OS options (%1) + + + + GUI language: + + + + Decimal separator parts: + + + + Pattern making system: + + + Default height and size - - Default height: - - Default size: @@ -6834,73 +5534,53 @@ Do you want to save your changes? TapePathPage - Open Directory - - Path that use Valentina - - Default - - Edit - - Type - - Path - - Individual measurements - - Standard measurements - + 标准尺寸 - - Templates - + 草稿 Utils::CheckableMessageBox - Do not ask again - Do not &ask again - Do not &show again @@ -6908,65 +5588,53 @@ Do you want to save your changes? VAbstractConverter - - Error creating a backup file: %1. - - - - Couldn't get version information. - Too many tags <%1> in file. - Version "%1" invalid. - Version "0.0.0" invalid. - - Error creating a reserv copy: %1. - - - - Invalid version. Minimum supported version is %1 - Invalid version. Maximum supported version is %1 - - Unexpected version "%1". - - - - Error no unique id. - Could not change version. + + Error creating a backup file: %1. + + + + Error creating a reserv copy: %1. + + + + Unexpected version "%1". + + VAbstractPattern - Can't find tool in table. @@ -6974,91 +5642,73 @@ Do you want to save your changes? VAbstractTool - + black + 黑色 + + + green + 绿色 + + + blue + 蓝色 + + + dark red + 深红 + + + dark green + 深绿 + + + dark blue + 深蓝 + + + yellow + 黄色 + + Confirm deletion - Do you really want to delete? - - - - black - - - - - green - - - - - blue - - - - - dark red - - - - - dark green - - - - - dark blue - - - - - yellow - - VApplication - Error parsing file. Program will be terminated. - Error bad id. Program will be terminated. - Error can't convert value. Program will be terminated. - Error empty parameter. Program will be terminated. - Error wrong id. Program will be terminated. - Something's wrong!! - Parser error: %1. Program will be terminated. - Exception thrown: %1. Program will be terminated. @@ -7066,304 +5716,241 @@ Do you want to save your changes? VCommandLine - - Pattern making program. - - - - - Pattern file. - - - - - The base filename of exported layout files. Use it to enable console export mode. - - - - - The base filename of layout files - - - - - The path to output destination folder. By default the directory at which the application was started. - - - - - The destination folder - - - - Path to custom measure file (export mode). - The measure file - Number corresponding to output format (default = 0, export mode): - Format number - - Set size value a pattern file, that was opened with standard measurements (export mode). Valid values: %1cm. - - - - - The size value - - - - - Set height value a pattern file, that was opened with standard measurements (export mode). Valid values: %1cm. - - - - - The height value - - - - Number corresponding to page template (default = 0, export mode): - Template number - - Page width in current units like 12.0 (cannot be used with "%1", export mode). - - - - The page width - - Page height in current units like 12.0 (cannot be used with "%1", export mode). - - - - - Page height/width measure units (cannot be used with "%1", export mode). Valid values: %2. - - - - The measure unit - - Ignore margins printing (export mode). Disable value keys: "%1", "%2", "%3", "%4". Set all margins to 0. - - - - - Page left margin in current units like 3.0 (export mode). If not set will be used value from default printer. Or 0 if none printers was found. Value will be ignored if key "%1" is used. - - - - - Page right margin in current units like 3.0 (export mode). If not set will be used value from default printer. Or 0 if none printers was found. Value will be ignored if key "%1" is used. - - - - - Page top margin in current units like 3.0 (export mode). If not set will be used value from default printer. Or 0 if none printers was found. Value will be ignored if key "%1" is used. - - - - - Page bottom margin in current units like 3.0 (export mode). If not set will be used value from default printer. Or 0 if none printers was found. Value will be ignored if key "%1" is used. - - - - - Rotation in degrees (one of predefined, export mode). Default value is 180. 0 is no-rotate. Valid values: %1. Each value show how many times details will be rotated. For example 180 mean two times (360/180=2) by 180 degree. - - - - Angle - Auto crop unused length (export mode). - - Unite pages if possible (export mode). Maximum value limited by QImage that supports only a maximum of 32768x32768 px images. - - - - - Save length of the sheet if set (export mode). The option tells the program to use as much as possible width of sheet. Quality of a layout can be worse when this option was used. - - - - Layout units (as paper's one except px, export mode). - The unit - - Shift/Offset layout length measured in layout units (export mode). The option show how many points along edge will be used in creating a layout. - - - - - Shift/Offset length - - - - - The layout gap width x2, measured in layout units (export mode). Set distance between details and a detail and a sheet. - - - - The gap width - - Sets layout groupping cases (export mode): %1. - - - - Grouping type - - Run the program in a test mode. The program in this mode loads a single pattern file and silently quit without showing the main window. The key have priority before key '%1'. - - - - Cannot use pageformat and page explicit size/units together. - Page height, width, units must be used all 3 at once. - - Shift/Offset length must be used together with shift units. - - - - - Gap width must be used together with shift units. - - - - - Left margin must be used together with page units. - - - - - Right margin must be used together with page units. - - - - - Top margin must be used together with page units. - - - - - Bottom margin must be used together with page units. - - - - Invalid rotation value. That must be one of predefined values. - Unknown page templated selected. - Unsupported paper units. - Unsupported layout units. - - Test option can be used with single input file only. - - - - Export options can be used with single input file only. - + Test option can be used with single input file only. + + + + The base filename of exported layout files. Use it to enable console export mode. + + + + The base filename of layout files + + + + The destination folder + + + + Set size value a pattern file, that was opened with standard measurements (export mode). Valid values: %1cm. + + + + The size value + + + + Set height value a pattern file, that was opened with standard measurements (export mode). Valid values: %1cm. + + + + The height value + + + + Page width in current units like 12.0 (cannot be used with "%1", export mode). + + + + Page height in current units like 12.0 (cannot be used with "%1", export mode). + + + Invalid gradation size value. - Invalid gradation height value. + + Pattern making program. + + + + Pattern file. + + + + Gap width must be used together with shift units. + + + + Left margin must be used together with page units. + + + + Right margin must be used together with page units. + + + + Top margin must be used together with page units. + + + + Bottom margin must be used together with page units. + + + + The path to output destination folder. By default the directory at which the application was started. + + + + Page height/width measure units (cannot be used with "%1", export mode). Valid values: %2. + + + + Ignore margins printing (export mode). Disable value keys: "%1", "%2", "%3", "%4". Set all margins to 0. + + + + Page left margin in current units like 3.0 (export mode). If not set will be used value from default printer. Or 0 if none printers was found. Value will be ignored if key "%1" is used. + + + + Page right margin in current units like 3.0 (export mode). If not set will be used value from default printer. Or 0 if none printers was found. Value will be ignored if key "%1" is used. + + + + Page top margin in current units like 3.0 (export mode). If not set will be used value from default printer. Or 0 if none printers was found. Value will be ignored if key "%1" is used. + + + + Page bottom margin in current units like 3.0 (export mode). If not set will be used value from default printer. Or 0 if none printers was found. Value will be ignored if key "%1" is used. + + + + Rotation in degrees (one of predefined, export mode). Default value is 180. 0 is no-rotate. Valid values: %1. Each value show how many times details will be rotated. For example 180 mean two times (360/180=2) by 180 degree. + + + + Unite pages if possible (export mode). Maximum value limited by QImage that supports only a maximum of 32768x32768 px images. + + + + Save length of the sheet if set (export mode). The option tells the program to use as much as possible width of sheet. Quality of a layout can be worse when this option was used. + + + + The layout gap width x2, measured in layout units (export mode). Set distance between details and a detail and a sheet. + + + + Sets layout groupping cases (export mode): %1. + + + + Run the program in a test mode. The program in this mode loads a single pattern file and silently quit without showing the main window. The key have priority before key '%1'. + + + + Shift/Offset layout length measured in layout units (export mode). The option show how many points along edge will be used in creating a layout. + + + + Shift/Offset length + + + + Shift/Offset length must be used together with shift units. + + VContainer - - - - Can't find object - - Can't cast object - Can't find object. Type mismatch. @@ -7371,107 +5958,85 @@ Do you want to save your changes? VDomDocument - Can't convert toUInt parameter - Can't convert toBool parameter - Got empty parameter - Can't convert toDouble parameter - - Got wrong parameter id. Need only id > 0. - - - - - This id is not unique. - - - - - Can't open file %1: %2. - Can't open schema file %1: %2. - - Could not load schema file '%1'. - - - - Validation error file %3 in line %1 column %2 - Parsing error file %3 in line %1 column %2 - Couldn't get node + + Got wrong parameter id. Need only id > 0. + + + + This id is not unique. + + + + Could not load schema file '%1'. + + VDrawTool - Edit wrong formula - Options - Delete - + 删除 VFormula - - - - Error - + 错误 VFormulaProperty - Value - Formula @@ -7479,18 +6044,10 @@ Do you want to save your changes? VMeasurements - - - - - - - Can't find measurement '%1' - The measurement name is empty! @@ -7498,12 +6055,10 @@ Do you want to save your changes? VPE::VBoolProperty - True - False @@ -7511,267 +6066,200 @@ Do you want to save your changes? VPE::VFileEditWidget - Directory - + 文件夹 - Open File - + 打开文件 VPattern - - Error not unique id. - - - - - Error parsing file. - Error can't convert value. - Error empty parameter. - Error wrong id. - + 错误:编码错误 - Error parsing file (std::bad_alloc). - - - - Wrong tag name '%1'. - - - - Error creating or updating detail - - Unknown point type '%1'. - - - - - Error creating or updating line - - - - Error creating or updating single point - - Error creating or updating point of end line - - Error creating or updating point along line - - Error creating or updating point of shoulder - - Error creating or updating point of normal - - Error creating or updating point of bisector - Error creating or updating point of lineintersection - - Error creating or updating point of contact - Error creating or updating modeling point - Error creating or updating height - Error creating or updating triangle - Error creating or updating point of intersection - - Error creating or updating cut spline point - - Error creating or updating cut spline path point - - Error creating or updating cut arc point - - Error creating or updating point of intersection line and axis - - Error creating or updating point of intersection curve and axis - - Error creating or updating point of intersection arcs + Error creating or updating line - - Error creating or updating point of intersection circles - - - - - Error creating or updating point of intersection curves - - - - - Error creating or updating point from circle and tangent - - - - - Error creating or updating point from arc and tangent - - - - - Error creating or updating true darts - - - - - Error creating or updating simple curve - - Error creating or updating simple interactive spline - - - - - Error creating or updating curve path - - Error creating or updating interactive spline path - - - - Error creating or updating modeling simple curve - Error creating or updating modeling curve path - - - - Error creating or updating simple arc - Error creating or updating modeling arc - - Unknown spline type '%1'. - - - - - Unknown arc type '%1'. - - - - Error creating or updating union details - + Error creating or updating point of intersection arcs + + + + Error creating or updating point of intersection circles + + + + Error creating or updating point from circle and tangent + + + + Error creating or updating point from arc and tangent + + + + Error creating or updating true darts + + + + Wrong tag name '%1'. + + + + Unknown point type '%1'. + + + + Unknown spline type '%1'. + + + + Unknown arc type '%1'. + + + Unknown tools type '%1'. + + Error not unique id. + + + + Error creating or updating point of intersection curves + + + + Error creating or updating simple interactive spline + + + + Error creating or updating interactive spline path + + VPatternConverter - Error restoring backup file: %1. @@ -7779,19 +6267,14 @@ Do you want to save your changes? VSplinePath - Not enough points to create the spline. - - - This spline does not exist. - Can't cut spline path with one point @@ -7799,1590 +6282,1263 @@ Do you want to save your changes? VToolDetail - Options - Delete - + 删除 VToolOptionsPropertyBrowser - - First point - - - - - Second point - - - - - Highest point - - - - - Lowest point - - - - - Leftmost point - - - - - Rightmost point - - - - Base point - - - - - - - - - - - - - - - - - - - - - Point label - Position - Point at distance and angle - - - - - - - - - Line type - - - - - - - - - - Line color - - - - - - - - - - - - Length - + 长度 - - - Angle - Point at distance along line - Arc - - - Radius - - First angle - Second angle - - - - - - - - Color - - - - - Arc with given length - - - - Point along bisector - - True darts - - - - - Point 1 label - - - - - Point 2 label - - - - Cut arc tool - Tool for segmenting a curve - Tool segment a pathed curve - Perpendicular point along line - Line between points - Point at line intersection - Point along perpendicular - Additional angle degrees - Point at intersection of arc and line - Tool to make point from x & y of two other points - - Tool to make point from intersection two arcs - - - - - - - - Take - - - - - Tool to make point from intersection two circles - - - - - First circle radius - - - - - Second circle radius - - - - - Tool to make point from intersection two curves - - - - - Vertical correction - - - - - Horizontal correction - - - - - Tool to make point from circle and tangent - - - - - Circle radius - - - - - Tool to make point from arc and tangent - - - - Special point on shoulder - Curve tool - - - Name - - - - - C1: angle - - - - - C1: length - - - - - C2: angle - - - - - C2: length - - - - Tool for path curve - Tool triangle - Point intersection line and axis - + Line color + 线颜色 + + + Color + 颜色 + + Point intersection curve and axis + + First point + 第一点 + + + Second point + 第二点 + + + Arc with given length + + + + True darts + + + + Point 1 label + + + + Point 2 label + + + + Tool to make point from intersection two arcs + + + + Take + + + + Tool to make point from intersection two circles + + + + First circle radius + + + + Second circle radius + + + + Tool to make point from circle and tangent + + + + Circle radius + + + + Tool to make point from arc and tangent + + + + Highest point + + + + Lowest point + + + + Leftmost point + + + + Rightmost point + + + + Tool to make point from intersection two curves + + + + Vertical correction + + + + Horizontal correction + + + + Name + + + + C1: angle + + + + C1: length + + + + C2: angle + + + + C2: length + + VTranslateVars - Bunka System name - Bunka Fashion College Author name - Fundamentals of Garment Design Book name - Barnfield and Richard System name - Jo Barnfield and Andrew Richards Author name - Pattern Making Primer Book name - Friendship/Women System name - - Elizabeth Friendship Author name - Creating Historical Clothes - Pattern Cutting from the 16th to the 19th Centuries Book name - Morris, K. System name - Karen Morris Author name - Sewing Lingerie that Fits Book name - Castro System name - Lucia Mors de Castro Author name - Patternmaking in Practic Book name - Kim & Uh System name - Injoo Kim and Mykyung Uh Author name - Apparel Making in Fashion Design Book name - Waugh System name - Norah Waugh Author name - Corsets and Crinolines Book name - Grimble System name - Frances Grimble Author name - Fashions of the Gilded Age Book name - Thornton's International System System name - - ed. R. L. Shep Author name - - The Great War: Styles and Patterns of the 1910s Book name - Hillhouse & Mansfield System name - Marion S. Hillhouse and Evelyn A. Mansfield Author name - Dress Design: Draping and Flat Pattern Making Book name - Pivnick System name - Esther Kaplan Pivnick Author name - How to Design Beautiful Clothes: Designing and Pattern Making Book name - Minister & Son System name - Edward Minister & Son, ed. R. L. Shep Author name - The Complete Guide to Practical Cutting (1853) Book name - Strickland System name - Gertrude Strickland Author name - A Tailoring Manual Book name - Loh & Lewis System name - May Loh and Diehl Lewis Author name - Patternless Fashion Design Book name - Morris, F. R. System name - F. R. Morris Author name - Ladies Garment Cutting and Making Book name - Mason System name - Gertrude Mason Author name - Gertrude Mason's Patternmaking Book Book name - Kimata System name - K. Kimata Author name - K.Kimata's Simplified Drafting Book for Dressmaking Book name - Master Designer System name - The Master Designer (Chicago, IL) Author name - Master Designer's System of Designing, Cutting and Grading Book name - Kopp System name - Ernestine Kopp, Vittorina Rolfo, Beatrice Zelin, Lee Gross Author name - How to Draft Basic Patterns Book name - Ekern System name - Doris Ekern Author name - Slacks Cut-to-Fit for Your Figure Book name - Doyle System name - Sarah J. Doyle Author name - Sarah's Key to Pattern Drafting Book name - Shelton System name - Karla J. Shelton Author name - Design and Sew Jeans Book name - Lady Boutique System name - Lady Boutique Author name - Lady Boutique magazine (Japan) Book name - Rohr System name - M. Rohr Author name - Pattern Drafting and Grading: Women's nd Misses' Garment Design Book name - Moore System name - Dorothy Moore Author name - Dorothy Moore's Pattern Drafting and Dressmaking Book name - Abling System name - Bina Abling Author name - Integrating Draping, Drafting and Drawing Book name - Fukomoto System name - Sue S. Fukomoto Author name - Scientific Pattern Drafting as taught at Style Center School of Costume Design, Dressmaking and Millinery Book name - Dressmaking International System name - Dressmaking International Author name - Dressmaking International magazine (Japan) Book name - Erwin System name - Mabel D. Erwin Author name - Practical Dress Design Book name - Gough System name - E. L. G. Gough Author name - Principles of Garment Cutting Book name - Allemong System name - Elizabeth M. Allemong Author name - European Cut Book name - McCunn System name - Donald H. McCunn Author name - How to Make Your Own Sewing Patterns Book name - Zarapkar System name - Shri K. R. Zarapkar and Shri Arvind K. Zarapkar Author name - Zarapkar System of Cutting Book name - Kunick System name - Philip Kunick Author name - Sizing, Pattern Construction and Grading for Women's and Children's Garments Book name - Handford System name - Jack Handford Author name - Professional Patternmaking for Designers: Women's Wear, Men's Casual Wear Book name - Davis System name - R. I. Davis Author name - Men's 17th & 18th Century Costume, Cut & Fashion Book name - MacLochlainn System name - Jason MacLochlainn Author name - The Victorian Tailor: An Introduction to Period Tailoring Book name - Joseph-Armstrong System name - Helen Joseph-Armstrong Author name - Patternmaking for Fashion Design Book name - Supreme System System name - Frederick T. Croonberg Author name - The Blue Book of Men's Tailoring, Grand Edition of Supreme System for Producing Mens Garments (1907) Book name - Sugino System name - Dressmaking Author name - Pattern Drafting Vols. I, II, III (Japan) Book name - Centre Point System System name - Louis Devere Author name - The Handbook of Practical Cutting on the Centre Point System Book name - Aldrich/Men System name - - Winifred Aldrich Author name - Metric Pattern Cutting for Menswear Book name - Aldrich/Women System name - Metric Pattern Cutting for Women's Wear Book name - Kershaw System name - Gareth Kershaw Author name - Patternmaking for Menswear Book name - Gilewska System name - Teresa Gilewska Author name - Pattern-Drafting for Fashion: The Basics Book name - Lo System name - Dennic Chunman Lo Author name - Pattern Cutting Book name - Bray System name - Natalie Bray Author name - Dress Pattern Designing: The Basic Principles of Cut and Fit Book name - Knowles/Men System name - - Lori A. Knowles Author name - The Practical Guide to Patternmaking for Fashion Designers: Menswear Book name - Friendship/Men System name - Pattern Cutting for Men's Costume Book name - Brown System name - P. Clement Brown Author name - Art in Dress Book name - Mitchell System name - Jno. J. Mitchell Author name - "Standard" Work on Cutting (Men's Garments) 1886: The Art and Science of Garment Cutting Book name - GOST 17917-86 System name - Ministry of consumer industry of the USSR Author name - Standard figure boys Book name - Eddy System name - Josephine F. Eddy and Elizabeth C. B. Wiley Author name - Pattern and Dress Design Book name - Knowles/Women System name - Practical Guide to Patternmaking for Fashion Designers: Juniors, Misses, and Women Book name - American Garment Cutter System name - None System name - Valentina team Author name - Valentina's internal standard Book name - Line_ Left symbol _ in name - AngleLine_ Left symbol _ in name - Arc_ Left symbol _ in name - Spl_ Left symbol _ in name - SplPath Do not add symbol _ to the end of name - RadiusArc_ Left symbol _ in name - Angle1Arc_ Left symbol _ in name - Angle2Arc_ Left symbol _ in name - Angle1Spl_ Left symbol _ in name - Angle2Spl_ Left symbol _ in name - Angle1SplPath Do not add symbol _ to the end of name - Angle2SplPath Do not add symbol _ to the end of name - sin sine function - cos cosine function - tan tangens function - asin arcus sine function - acos arcus cosine function - atan arcus tangens function - sinh hyperbolic sine function - cosh hyperbolic cosine - tanh hyperbolic tangens function - asinh hyperbolic arcus sine function - acosh hyperbolic arcus tangens function - atanh hyperbolic arcur tangens function - log2 logarithm to the base 2 - log10 logarithm to the base 10 - log logarithm to the base 10 - ln logarithm to base e (2.71828...) - exp e raised to the power of x - sqrt square root of a value - sign sign function -1 if x<0; 1 if x>0 - rint round to nearest integer - abs absolute value - min min of all arguments - max max of all arguments - sum sum of all arguments - avg mean value of all arguments - fmod Returns the floating-point remainder of numer/denom (rounded towards zero) - cm centimeter - mm millimeter - in inch @@ -9391,7 +7547,6 @@ Do you want to save your changes? VVITConverter - Error restoring backup file: %1. @@ -9399,7 +7554,6 @@ Do you want to save your changes? VVSTConverter - Error restoring backup file: %1. @@ -9407,7 +7561,6 @@ Do you want to save your changes? VisToolCurveIntersectAxis - <b>Intersection curve and axis</b>: angle = %1°; <b>Shift</b> - sticking angle, <b>Enter</b> - finish creation @@ -9415,7 +7568,6 @@ Do you want to save your changes? VisToolEndLine - <b>Point at distance and angle</b>: angle = %1°; <b>Shift</b> - sticking angle, <b>Enter</b> - finish creation @@ -9423,7 +7575,6 @@ Do you want to save your changes? VisToolLineIntersectAxis - <b>Intersection line and axis</b>: angle = %1°; <b>Shift</b> - sticking angle, <b>Enter</b> - finish creation @@ -9431,12 +7582,10 @@ Do you want to save your changes? VisToolSplinePath - <b>Curved path</b>: select three or more points - <b>Curved path</b>: select three or more points, <b>Enter</b> - finish creation @@ -9444,97 +7593,79 @@ Do you want to save your changes? mNoisyHandler - DEBUG: - WARNING: - CRITICAL: - FATAL: - INFO: - + 信息: - Warning. - Critical error. - Fatal error. - Information. - + 信息 vNoisyHandler - DEBUG: - WARNING: - CRITICAL: - FATAL: - INFO: - + 信息: - Warning. - Critical error. - Fatal error. - Information. - + 信息