From 1eb93fd4f74c2fa8a50ce5d65a569f7c01a311f9 Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Tue, 4 Oct 2016 13:52:04 +0300 Subject: [PATCH 01/10] Fixed wrong selecting rule for the tool Line. --HG-- branch : develop --- src/libs/vtools/tools/drawTools/vtoolline.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/vtools/tools/drawTools/vtoolline.cpp b/src/libs/vtools/tools/drawTools/vtoolline.cpp index 90463e809..ca0a1ec36 100644 --- a/src/libs/vtools/tools/drawTools/vtoolline.cpp +++ b/src/libs/vtools/tools/drawTools/vtoolline.cpp @@ -175,7 +175,7 @@ VToolLine * VToolLine::Create(const quint32 &_id, const quint32 &firstPoint, con VToolLine *line = new VToolLine(doc, data, id, firstPoint, secondPoint, typeLine, lineColor, typeCreation); scene->addItem(line); InitDrawToolConnections(scene, line); - connect(scene, &VMainGraphicsScene::EnablePointItemSelection, line, &VToolLine::AllowSelecting); + connect(scene, &VMainGraphicsScene::EnableLineItemSelection, line, &VToolLine::AllowSelecting); connect(scene, &VMainGraphicsScene::EnableLineItemHover, line, &VToolLine::AllowHover); doc->AddTool(id, line); From c53b4fb433217eca7f5c3ff57b30611ccf784a17 Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Tue, 4 Oct 2016 16:38:54 +0300 Subject: [PATCH 02/10] Fixed issue #572. Issue with thousand separator during a formula translations to user. (grafted from d1621c1cd816e8b7323639ce41c8592ef4131e31) --HG-- branch : develop --- ChangeLog.txt | 1 + src/libs/vpatterndb/vtranslatevars.cpp | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index 19b8a74e6..b47e21610 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -65,6 +65,7 @@ - [#553] Tape.exe crash. Issue with the Search field. - [#569] Tape app. Options that open new file open new instance even if a user doesn't want this. - [#539] Infinite alert loop "Gradation doesn't support inches" when loading standard table. +- [#572] Issue with thousand separator during a formula translations to user. # Version 0.4.4 April 12, 2016 - Updated measurement templates with all measurements. Added new template Aldrich/Women measurements. diff --git a/src/libs/vpatterndb/vtranslatevars.cpp b/src/libs/vpatterndb/vtranslatevars.cpp index 6f7ce3429..51dca3fe9 100644 --- a/src/libs/vpatterndb/vtranslatevars.cpp +++ b/src/libs/vpatterndb/vtranslatevars.cpp @@ -939,7 +939,11 @@ QString VTranslateVars::FormulaToUser(const QString &formula, bool osSeparator) loc = QLocale::system();// To user locale QString dStr = loc.toString(d);// Number string in user locale - dStr.replace(" ", ""); // Remove thousand separator + const QChar thSep = loc.groupSeparator(); + if (thSep.isSpace()) + { + dStr.remove(thSep);// Remove thousand separator + } newFormula.replace(nKeys.at(i), nValues.at(i).length(), dStr); const int bias = nValues.at(i).length() - dStr.length(); if (bias != 0) From 9103c8ef15d8979c6f85f1299a8c032620a2668a Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Tue, 4 Oct 2016 16:43:06 +0300 Subject: [PATCH 03/10] Remove thousand seaparator according to xml specification for type xs:decimal. --HG-- branch : develop --- src/libs/ifc/xml/vdomdocument.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/libs/ifc/xml/vdomdocument.h b/src/libs/ifc/xml/vdomdocument.h index 4f4405388..803a62366 100644 --- a/src/libs/ifc/xml/vdomdocument.h +++ b/src/libs/ifc/xml/vdomdocument.h @@ -150,7 +150,9 @@ template */ inline void VDomDocument::SetAttribute(QDomElement &domElement, const QString &name, const T &value) const { - domElement.setAttribute(name, QString().setNum(value).replace(QLatin1String(","), QLatin1String("."))); + // See specification for xs:decimal + const QLocale locale = QLocale::c(); + domElement.setAttribute(name, locale.toString(value).remove(locale.groupSeparator())); } //--------------------------------------------------------------------------------------------------------------------- From 0127f745c6acb1a39618f6052f61c50064426141 Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Tue, 4 Oct 2016 16:44:11 +0300 Subject: [PATCH 04/10] Improve efficiency using QStringLiteral macros. --HG-- branch : develop --- src/libs/ifc/xml/vdomdocument.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/ifc/xml/vdomdocument.h b/src/libs/ifc/xml/vdomdocument.h index 803a62366..3bb8875cd 100644 --- a/src/libs/ifc/xml/vdomdocument.h +++ b/src/libs/ifc/xml/vdomdocument.h @@ -167,7 +167,7 @@ inline void VDomDocument::SetAttribute(QDomElement &domElement, const Q template <> inline void VDomDocument::SetAttribute(QDomElement &domElement, const QString &name, const bool &value) const { - domElement.setAttribute(name, value ? QStringLiteral("true") : QStringLiteral("false")); + domElement.setAttribute(name, value ? trueStr : falseStr); } //--------------------------------------------------------------------------------------------------------------------- From abce5439a597336c8d00123f5d237d1719bade7d Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Tue, 4 Oct 2016 17:34:37 +0300 Subject: [PATCH 05/10] Resolved issue #573. New tool: 'Move Point'. --HG-- branch : develop --- ChangeLog.txt | 1 + .../core/vtooloptionspropertybrowser.cpp | 69 ++- .../core/vtooloptionspropertybrowser.h | 3 + src/app/valentina/dialogs/dialoghistory.cpp | 3 +- src/app/valentina/mainwindow.cpp | 28 +- src/app/valentina/mainwindow.h | 1 + src/app/valentina/mainwindow.ui | 163 +++-- src/app/valentina/share/resources/cursor.qrc | 2 + .../share/resources/cursor/move_cursor.png | Bin 0 -> 553 bytes .../share/resources/cursor/move_cursor@2x.png | Bin 0 -> 1104 bytes .../valentina/share/resources/toolicon.qrc | 2 + .../share/resources/toolicon/32x32/move.png | Bin 0 -> 619 bytes .../resources/toolicon/32x32/move@2x.png | Bin 0 -> 1152 bytes .../share/resources/toolicon/svg/move.svg | 141 +++++ src/app/valentina/xml/vpattern.cpp | 56 +- src/app/valentina/xml/vpattern.h | 1 + src/libs/ifc/schema.qrc | 1 + src/libs/ifc/schema/pattern/v0.3.6.xsd | 582 ++++++++++++++++++ src/libs/ifc/xml/vabstractpattern.cpp | 17 +- src/libs/ifc/xml/vpatternconverter.cpp | 17 +- src/libs/ifc/xml/vpatternconverter.h | 5 +- src/libs/vgeometry/varc.cpp | 13 + src/libs/vgeometry/varc.h | 1 + src/libs/vgeometry/vcubicbezier.cpp | 12 + src/libs/vgeometry/vcubicbezier.h | 1 + src/libs/vgeometry/vcubicbezierpath.cpp | 13 + src/libs/vgeometry/vcubicbezierpath.h | 1 + src/libs/vgeometry/vellipticalarc.cpp | 13 + src/libs/vgeometry/vellipticalarc.h | 1 + src/libs/vgeometry/vpointf.cpp | 15 + src/libs/vgeometry/vpointf.h | 2 + src/libs/vgeometry/vspline.cpp | 14 + src/libs/vgeometry/vspline.h | 1 + src/libs/vgeometry/vsplinepath.cpp | 22 + src/libs/vgeometry/vsplinepath.h | 1 + src/libs/vmisc/def.h | 4 +- src/libs/vtools/dialogs/dialogs.pri | 9 +- src/libs/vtools/dialogs/tooldialogs.h | 1 + src/libs/vtools/dialogs/tools/dialogmove.cpp | 421 +++++++++++++ src/libs/vtools/dialogs/tools/dialogmove.h | 133 ++++ src/libs/vtools/dialogs/tools/dialogmove.ui | 450 ++++++++++++++ src/libs/vtools/tools/drawTools/drawtools.h | 1 + .../tools/drawTools/operation/vtoolmove.cpp | 480 +++++++++++++++ .../tools/drawTools/operation/vtoolmove.h | 128 ++++ src/libs/vtools/tools/tools.pri | 6 +- .../line/operation/vistoolmove.cpp | 319 ++++++++++ .../line/operation/vistoolmove.h | 86 +++ .../vtools/visualization/visualization.pri | 6 +- 48 files changed, 3153 insertions(+), 93 deletions(-) create mode 100644 src/app/valentina/share/resources/cursor/move_cursor.png create mode 100644 src/app/valentina/share/resources/cursor/move_cursor@2x.png create mode 100644 src/app/valentina/share/resources/toolicon/32x32/move.png create mode 100644 src/app/valentina/share/resources/toolicon/32x32/move@2x.png create mode 100644 src/app/valentina/share/resources/toolicon/svg/move.svg create mode 100644 src/libs/ifc/schema/pattern/v0.3.6.xsd create mode 100644 src/libs/vtools/dialogs/tools/dialogmove.cpp create mode 100644 src/libs/vtools/dialogs/tools/dialogmove.h create mode 100644 src/libs/vtools/dialogs/tools/dialogmove.ui create mode 100644 src/libs/vtools/tools/drawTools/operation/vtoolmove.cpp create mode 100644 src/libs/vtools/tools/drawTools/operation/vtoolmove.h create mode 100644 src/libs/vtools/visualization/line/operation/vistoolmove.cpp create mode 100644 src/libs/vtools/visualization/line/operation/vistoolmove.h diff --git a/ChangeLog.txt b/ChangeLog.txt index b47e21610..845ad5487 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -40,6 +40,7 @@ - Added "All/None" menu in detail list area for easier handling of many parts. - [#560] Flipped pattern pieces in Layout. - [#138] New tool: 'Mirror Point' or 'Symmetric Point'. +- [#573] New tool: 'Move Point'. # Version 0.4.5 - [#435] Valentina doesn't change the cursor. diff --git a/src/app/valentina/core/vtooloptionspropertybrowser.cpp b/src/app/valentina/core/vtooloptionspropertybrowser.cpp index 5a618fc41..864e44aae 100644 --- a/src/app/valentina/core/vtooloptionspropertybrowser.cpp +++ b/src/app/valentina/core/vtooloptionspropertybrowser.cpp @@ -75,7 +75,7 @@ void VToolOptionsPropertyBrowser::ClearPropertyBrowser() void VToolOptionsPropertyBrowser::ShowItemOptions(QGraphicsItem *item) { // This check helps to find missed tools in the switch - Q_STATIC_ASSERT_X(static_cast(Tool::LAST_ONE_DO_NOT_USE) == 47, "Not all tools was used in switch."); + Q_STATIC_ASSERT_X(static_cast(Tool::LAST_ONE_DO_NOT_USE) == 48, "Not all tools was used in switch."); switch (item->type()) { @@ -191,6 +191,9 @@ void VToolOptionsPropertyBrowser::ShowItemOptions(QGraphicsItem *item) case VToolFlippingByAxis::Type: ShowOptionsToolFlippingByAxis(item); break; + case VToolMove::Type: + ShowOptionsToolMove(item); + break; default: break; } @@ -205,7 +208,7 @@ void VToolOptionsPropertyBrowser::UpdateOptions() } // This check helps to find missed tools in the switch - Q_STATIC_ASSERT_X(static_cast(Tool::LAST_ONE_DO_NOT_USE) == 47, "Not all tools was used in switch."); + Q_STATIC_ASSERT_X(static_cast(Tool::LAST_ONE_DO_NOT_USE) == 48, "Not all tools was used in switch."); switch (currentItem->type()) { @@ -311,6 +314,9 @@ void VToolOptionsPropertyBrowser::UpdateOptions() case VToolFlippingByAxis::Type: UpdateOptionsToolFlippingByAxis(); break; + case VToolMove::Type: + UpdateOptionsToolMove(); + break; default: break; } @@ -346,7 +352,7 @@ void VToolOptionsPropertyBrowser::userChangedData(VProperty *property) } // This check helps to find missed tools in the switch - Q_STATIC_ASSERT_X(static_cast(Tool::LAST_ONE_DO_NOT_USE) == 47, "Not all tools was used in switch."); + Q_STATIC_ASSERT_X(static_cast(Tool::LAST_ONE_DO_NOT_USE) == 48, "Not all tools was used in switch."); switch (currentItem->type()) { @@ -446,6 +452,9 @@ void VToolOptionsPropertyBrowser::userChangedData(VProperty *property) case VToolFlippingByAxis::Type: ChangeDataToolFlippingByAxis(prop); break; + case VToolMove::Type: + ChangeDataToolMove(prop); + break; default: break; } @@ -1643,6 +1652,33 @@ void VToolOptionsPropertyBrowser::ChangeDataToolRotation(VProperty *property) } } +//--------------------------------------------------------------------------------------------------------------------- +void VToolOptionsPropertyBrowser::ChangeDataToolMove(VProperty *property) +{ + SCASSERT(property != nullptr) + + QVariant value = property->data(VProperty::DPC_Data, Qt::DisplayRole); + const QString id = propertyToId[property]; + + VToolMove *i = qgraphicsitem_cast(currentItem); + SCASSERT(i != nullptr); + switch (PropertiesList().indexOf(id)) + { + case 38: // AttrSuffix + SetOperationSuffix(value.toString()); + break; + case 5: // AttrAngle + i->SetFormulaAngle(value.value()); + break; + case 4: // AttrLength + i->SetFormulaLength(value.value()); + break; + default: + qWarning()<<"Unknown property type. id = "<GetFormulaAngle(), AttrAngle); } +//--------------------------------------------------------------------------------------------------------------------- +void VToolOptionsPropertyBrowser::ShowOptionsToolMove(QGraphicsItem *item) +{ + VToolMove *i = qgraphicsitem_cast(item); + i->ShowVisualization(true); + formView->setTitle(tr("Tool move")); + + AddPropertyOperationSuffix(i, tr("Suffix")); + AddPropertyFormula(tr("Angle"), i->GetFormulaAngle(), AttrAngle); + AddPropertyFormula(tr("Length"), i->GetFormulaLength(), AttrLength); +} + //--------------------------------------------------------------------------------------------------------------------- void VToolOptionsPropertyBrowser::ShowOptionsToolFlippingByLine(QGraphicsItem *item) { @@ -2558,6 +2606,21 @@ void VToolOptionsPropertyBrowser::UpdateOptionsToolRotation() idToProperty[AttrAngle]->setValue(valueAngle); } +//--------------------------------------------------------------------------------------------------------------------- +void VToolOptionsPropertyBrowser::UpdateOptionsToolMove() +{ + VToolMove *i = qgraphicsitem_cast(currentItem); + idToProperty[AttrSuffix]->setValue(i->Suffix()); + + QVariant valueAngle; + valueAngle.setValue(i->GetFormulaAngle()); + idToProperty[AttrAngle]->setValue(valueAngle); + + QVariant valueLength; + valueLength.setValue(i->GetFormulaLength()); + idToProperty[AttrLength]->setValue(valueLength); +} + //--------------------------------------------------------------------------------------------------------------------- void VToolOptionsPropertyBrowser::UpdateOptionsToolFlippingByLine() { diff --git a/src/app/valentina/core/vtooloptionspropertybrowser.h b/src/app/valentina/core/vtooloptionspropertybrowser.h index f23185bd2..59f59a200 100644 --- a/src/app/valentina/core/vtooloptionspropertybrowser.h +++ b/src/app/valentina/core/vtooloptionspropertybrowser.h @@ -158,6 +158,7 @@ private: void ChangeDataToolLineIntersectAxis(VPE::VProperty *property); void ChangeDataToolCurveIntersectAxis(VPE::VProperty *property); void ChangeDataToolRotation(VPE::VProperty *property); + void ChangeDataToolMove(VPE::VProperty *property); void ChangeDataToolFlippingByLine(VPE::VProperty *property); void ChangeDataToolFlippingByAxis(VPE::VProperty *property); @@ -191,6 +192,7 @@ private: void ShowOptionsToolLineIntersectAxis(QGraphicsItem *item); void ShowOptionsToolCurveIntersectAxis(QGraphicsItem *item); void ShowOptionsToolRotation(QGraphicsItem *item); + void ShowOptionsToolMove(QGraphicsItem *item); void ShowOptionsToolFlippingByLine(QGraphicsItem *item); void ShowOptionsToolFlippingByAxis(QGraphicsItem *item); @@ -224,6 +226,7 @@ private: void UpdateOptionsToolLineIntersectAxis(); void UpdateOptionsToolCurveIntersectAxis(); void UpdateOptionsToolRotation(); + void UpdateOptionsToolMove(); void UpdateOptionsToolFlippingByLine(); void UpdateOptionsToolFlippingByAxis(); }; diff --git a/src/app/valentina/dialogs/dialoghistory.cpp b/src/app/valentina/dialogs/dialoghistory.cpp index c73d7fb19..3fd144b6b 100644 --- a/src/app/valentina/dialogs/dialoghistory.cpp +++ b/src/app/valentina/dialogs/dialoghistory.cpp @@ -207,7 +207,7 @@ QT_WARNING_DISABLE_GCC("-Wswitch-default") QString DialogHistory::Record(const VToolRecord &tool) { // This check helps to find missed tools in the switch - Q_STATIC_ASSERT_X(static_cast(Tool::LAST_ONE_DO_NOT_USE) == 47, "Not all tools was used in history."); + Q_STATIC_ASSERT_X(static_cast(Tool::LAST_ONE_DO_NOT_USE) == 48, "Not all tools was used in history."); const QDomElement domElem = doc->elementById(tool.getId()); if (domElem.isElement() == false) @@ -389,6 +389,7 @@ QString DialogHistory::Record(const VToolRecord &tool) case Tool::Rotation: case Tool::FlippingByLine: case Tool::FlippingByAxis: + case Tool::Move: return QString(); } } diff --git a/src/app/valentina/mainwindow.cpp b/src/app/valentina/mainwindow.cpp index a45d2ab8f..07a7c5add 100644 --- a/src/app/valentina/mainwindow.cpp +++ b/src/app/valentina/mainwindow.cpp @@ -1058,7 +1058,18 @@ void MainWindow::ToolFlippingByAxis(bool checked) ":/cursor/flipping_axis_cursor.png", tr("Select one or more objects, Enter - confirm selection"), &MainWindow::ClosedDialogWithApply, - &MainWindow::ApplyDialog); + &MainWindow::ApplyDialog); +} + +//--------------------------------------------------------------------------------------------------------------------- +void MainWindow::ToolMove(bool checked) +{ + ToolSelectOperationObjects(); + SetToolButtonWithApply(checked, Tool::Move, + ":/cursor/move_cursor.png", + tr("Select one or more objects, Enter - confirm selection"), + &MainWindow::ClosedDialogWithApply, + &MainWindow::ApplyDialog); } //--------------------------------------------------------------------------------------------------------------------- @@ -1732,6 +1743,7 @@ void MainWindow::InitToolButtons() connect(ui->toolButtonRotation, &QToolButton::clicked, this, &MainWindow::ToolRotation); connect(ui->toolButtonFlippingByLine, &QToolButton::clicked, this, &MainWindow::ToolFlippingByLine); connect(ui->toolButtonFlippingByAxis, &QToolButton::clicked, this, &MainWindow::ToolFlippingByAxis); + connect(ui->toolButtonMove, &QToolButton::clicked, this, &MainWindow::ToolMove); connect(ui->toolButtonMidpoint, &QToolButton::clicked, this, &MainWindow::ToolMidpoint); connect(ui->toolButtonLayoutExportAs, &QToolButton::clicked, this, &MainWindow::ExportLayoutAs); } @@ -1761,7 +1773,7 @@ QT_WARNING_DISABLE_GCC("-Wswitch-default") void MainWindow::CancelTool() { // This check helps to find missed tools in the switch - Q_STATIC_ASSERT_X(static_cast(Tool::LAST_ONE_DO_NOT_USE) == 47, "Not all tools was handled."); + Q_STATIC_ASSERT_X(static_cast(Tool::LAST_ONE_DO_NOT_USE) == 48, "Not all tools was handled."); qCDebug(vMainWindow, "Canceling tool."); delete dialogTool; @@ -1907,6 +1919,9 @@ void MainWindow::CancelTool() case Tool::FlippingByAxis: ui->toolButtonFlippingByAxis->setChecked(false); break; + case Tool::Move: + ui->toolButtonMove->setChecked(false); + break; } // Crash: using CRTL+Z while using line tool. @@ -2956,7 +2971,7 @@ void MainWindow::SetEnableTool(bool enable) } // This check helps to find missed tools - Q_STATIC_ASSERT_X(static_cast(Tool::LAST_ONE_DO_NOT_USE) == 47, "Not all tools were handled."); + Q_STATIC_ASSERT_X(static_cast(Tool::LAST_ONE_DO_NOT_USE) == 48, "Not all tools were handled."); //Drawing Tools ui->toolButtonEndLine->setEnabled(drawTools); @@ -2993,6 +3008,7 @@ void MainWindow::SetEnableTool(bool enable) ui->toolButtonRotation->setEnabled(drawTools); ui->toolButtonFlippingByLine->setEnabled(drawTools); ui->toolButtonFlippingByAxis->setEnabled(drawTools); + ui->toolButtonMove->setEnabled(drawTools); ui->toolButtonMidpoint->setEnabled(drawTools); ui->actionLast_tool->setEnabled(drawTools); @@ -3275,7 +3291,7 @@ QT_WARNING_DISABLE_GCC("-Wswitch-default") void MainWindow::LastUsedTool() { // This check helps to find missed tools in the switch - Q_STATIC_ASSERT_X(static_cast(Tool::LAST_ONE_DO_NOT_USE) == 47, "Not all tools was handled."); + Q_STATIC_ASSERT_X(static_cast(Tool::LAST_ONE_DO_NOT_USE) == 48, "Not all tools was handled."); if (currentTool == lastUsedTool) { @@ -3449,6 +3465,10 @@ void MainWindow::LastUsedTool() ui->toolButtonFlippingByAxis->setChecked(true); ToolFlippingByAxis(true); break; + case Tool::Move: + ui->toolButtonMove->setChecked(true); + ToolMove(true); + break; } } diff --git a/src/app/valentina/mainwindow.h b/src/app/valentina/mainwindow.h index 3361c8ecd..198687e40 100644 --- a/src/app/valentina/mainwindow.h +++ b/src/app/valentina/mainwindow.h @@ -141,6 +141,7 @@ private slots: void ToolRotation(bool checked); void ToolFlippingByLine(bool checked); void ToolFlippingByAxis(bool checked); + void ToolMove(bool checked); void ToolCutArc(bool checked); void ToolLineIntersectAxis(bool checked); void ToolCurveIntersectAxis(bool checked); diff --git a/src/app/valentina/mainwindow.ui b/src/app/valentina/mainwindow.ui index aa0b01eed..27f576e5e 100644 --- a/src/app/valentina/mainwindow.ui +++ b/src/app/valentina/mainwindow.ui @@ -14,7 +14,7 @@ Valentina - + :/icon/64x64/icon64x64.png:/icon/64x64/icon64x64.png @@ -69,7 +69,7 @@ Tools for creating points. - + :/icon/16x16/toolsectionpoint.png:/icon/16x16/toolsectionpoint.png @@ -94,7 +94,7 @@ ... - + :/toolicon/32x32/along_line.png:/toolicon/32x32/along_line.png @@ -120,7 +120,7 @@ ... - + :/toolicon/32x32/normal.png:/toolicon/32x32/normal.png @@ -146,7 +146,7 @@ ... - + :/toolicon/32x32/bisector.png:/toolicon/32x32/bisector.png @@ -172,7 +172,7 @@ ... - + :/toolicon/32x32/shoulder.png:/toolicon/32x32/shoulder.png @@ -198,7 +198,7 @@ ... - + :/toolicon/32x32/point_of_contact.png:/toolicon/32x32/point_of_contact.png @@ -224,7 +224,7 @@ ... - + :/toolicon/32x32/triangle.png:/toolicon/32x32/triangle.png @@ -250,7 +250,7 @@ ... - + :/toolicon/32x32/point_of_intersection.png:/toolicon/32x32/point_of_intersection.png @@ -276,7 +276,7 @@ ... - + :/toolicon/32x32/height.png:/toolicon/32x32/height.png @@ -302,7 +302,7 @@ ... - + :/toolicon/32x32/line_intersect_axis.png:/toolicon/32x32/line_intersect_axis.png @@ -328,7 +328,7 @@ ... - + :/toolicon/32x32/true_darts.png:/toolicon/32x32/true_darts.png @@ -354,7 +354,7 @@ ... - + :/icon/32x32/arrow_cursor.png:/icon/32x32/arrow_cursor.png @@ -380,7 +380,7 @@ ... - + :/toolicon/32x32/midpoint.png:/toolicon/32x32/midpoint.png @@ -406,7 +406,7 @@ ... - + :/toolicon/32x32/segment.png:/toolicon/32x32/segment.png @@ -427,7 +427,7 @@ 0 0 - 130 + 117 110 @@ -441,7 +441,7 @@ Tools for creating lines. - + :/icon/16x16/toolsectionline.png:/icon/16x16/toolsectionline.png @@ -463,7 +463,7 @@ ... - + :/icon/32x32/arrow_cursor.png:/icon/32x32/arrow_cursor.png @@ -489,7 +489,7 @@ ... - + :/toolicon/32x32/line.png:/toolicon/32x32/line.png @@ -515,7 +515,7 @@ ... - + :/toolicon/32x32/intersect.png:/toolicon/32x32/intersect.png @@ -536,7 +536,7 @@ 0 0 - 130 + 117 248 @@ -550,7 +550,7 @@ Tools for creating curves. - + :/icon/16x16/toolsectioncurve.png:/icon/16x16/toolsectioncurve.png @@ -572,7 +572,7 @@ ... - + :/toolicon/32x32/spline_cut_point.png:/toolicon/32x32/spline_cut_point.png @@ -598,7 +598,7 @@ ... - + :/toolicon/32x32/cubic_bezier.png:/toolicon/32x32/cubic_bezier.png @@ -624,7 +624,7 @@ ... - + :/toolicon/32x32/splinePath.png:/toolicon/32x32/splinePath.png @@ -650,7 +650,7 @@ ... - + :/toolicon/32x32/splinePath_cut_point.png:/toolicon/32x32/splinePath_cut_point.png @@ -673,7 +673,7 @@ ... - + :/toolicon/32x32/cubic_bezier_path.png:/toolicon/32x32/cubic_bezier_path.png @@ -699,7 +699,7 @@ ... - + :/toolicon/32x32/intersection_curves.png:/toolicon/32x32/intersection_curves.png @@ -725,7 +725,7 @@ ... - + :/toolicon/32x32/curve_intersect_axis.png:/toolicon/32x32/curve_intersect_axis.png @@ -751,7 +751,7 @@ ... - + :/icon/32x32/arrow_cursor.png:/icon/32x32/arrow_cursor.png @@ -777,7 +777,7 @@ ... - + :/toolicon/32x32/spline.png:/toolicon/32x32/spline.png @@ -798,7 +798,7 @@ 0 0 - 130 + 117 248 @@ -812,7 +812,7 @@ Tools for creating arcs. - + :/icon/16x16/toolsectionarc.png:/icon/16x16/toolsectionarc.png @@ -834,7 +834,7 @@ ... - + :/toolicon/32x32/arc.png:/toolicon/32x32/arc.png @@ -860,7 +860,7 @@ ... - + :/toolicon/32x32/arc_cut.png:/toolicon/32x32/arc_cut.png @@ -886,7 +886,7 @@ ... - + :/toolicon/32x32/arc_intersect_axis.png:/toolicon/32x32/arc_intersect_axis.png @@ -912,7 +912,7 @@ ... - + :/toolicon/32x32/point_of_intersection_arcs.png:/toolicon/32x32/point_of_intersection_arcs.png @@ -938,7 +938,7 @@ ... - + :/toolicon/32x32/point_of_intersection_circles.png:/toolicon/32x32/point_of_intersection_circles.png @@ -964,7 +964,7 @@ ... - + :/toolicon/32x32/point_from_circle_and_tangent.png:/toolicon/32x32/point_from_circle_and_tangent.png @@ -990,7 +990,7 @@ ... - + :/toolicon/32x32/point_from_arc_and_tangent.png:/toolicon/32x32/point_from_arc_and_tangent.png @@ -1016,7 +1016,7 @@ ... - + :/toolicon/32x32/arc_with_length.png:/toolicon/32x32/arc_with_length.png @@ -1042,7 +1042,7 @@ ... - + :/icon/32x32/arrow_cursor.png:/icon/32x32/arrow_cursor.png @@ -1068,7 +1068,7 @@ - + :/icon/16x16/operations.png:/icon/16x16/operations.png @@ -1090,7 +1090,7 @@ ... - + :/icon/32x32/arrow_cursor.png:/icon/32x32/arrow_cursor.png @@ -1116,7 +1116,7 @@ ... - + :/toolicon/32x32/group_plus.png:/toolicon/32x32/group_plus.png @@ -1142,7 +1142,7 @@ ... - + :/toolicon/32x32/rotation.png:/toolicon/32x32/rotation.png @@ -1168,7 +1168,7 @@ ... - + :/toolicon/32x32/flipping_line.png:/toolicon/32x32/flipping_line.png @@ -1194,7 +1194,7 @@ ... - + :/toolicon/32x32/flipping_axis.png:/toolicon/32x32/flipping_axis.png @@ -1208,6 +1208,32 @@ + + + + false + + + Move objects + + + ... + + + + :/toolicon/32x32/move.png:/toolicon/32x32/move.png + + + + 32 + 32 + + + + true + + + @@ -1215,7 +1241,7 @@ 0 0 - 130 + 117 104 @@ -1229,7 +1255,7 @@ Tools for creating details. - + :/icon/16x16/toolsectiondetail.png:/icon/16x16/toolsectiondetail.png @@ -1251,7 +1277,7 @@ ... - + :/icon/32x32/arrow_cursor.png:/icon/32x32/arrow_cursor.png @@ -1277,7 +1303,7 @@ ... - + :/toolicon/32x32/new_detail.png:/toolicon/32x32/new_detail.png @@ -1303,7 +1329,7 @@ ... - + :/toolicon/32x32/union.png:/toolicon/32x32/union.png @@ -1329,7 +1355,7 @@ - + :/icon/16x16/toolsectionlayout.png:/icon/16x16/toolsectionlayout.png @@ -1380,7 +1406,7 @@ ... - + :/icon/32x32/export_to_picture_document.png:/icon/32x32/export_to_picture_document.png @@ -1826,7 +1852,7 @@ false - + :/icon/32x32/draw.png:/icon/32x32/draw.png @@ -1850,7 +1876,7 @@ false - + :/icon/32x32/kontur.png:/icon/32x32/kontur.png @@ -1874,7 +1900,7 @@ true - + :/icon/32x32/arrow_cursor.png:/icon/32x32/arrow_cursor.png @@ -1892,7 +1918,7 @@ false - + :/icon/32x32/new_draw.png:/icon/32x32/new_draw.png @@ -1913,7 +1939,7 @@ false - + :/icon/32x32/option_draw.png:/icon/32x32/option_draw.png @@ -1937,7 +1963,7 @@ false - + :/icon/32x32/table.png:/icon/32x32/table.png @@ -1961,7 +1987,7 @@ false - + :/icon/32x32/history.png:/icon/32x32/history.png @@ -1982,7 +2008,7 @@ false - + :/icon/32x32/layout.png:/icon/32x32/layout.png @@ -2247,7 +2273,7 @@ false - + :/icon/32x32/pdf.png:/icon/32x32/pdf.png @@ -2337,7 +2363,7 @@ false - + :/icon/32x32/export_to_picture_document.png:/icon/32x32/export_to_picture_document.png @@ -2414,7 +2440,7 @@ false - + :/icon/32x32/syncM.png:/icon/32x32/syncM.png @@ -2453,6 +2479,9 @@
vmaingraphicsview.h
- + + + + diff --git a/src/app/valentina/share/resources/cursor.qrc b/src/app/valentina/share/resources/cursor.qrc index 0e75306b5..b2631218b 100644 --- a/src/app/valentina/share/resources/cursor.qrc +++ b/src/app/valentina/share/resources/cursor.qrc @@ -74,5 +74,7 @@ cursor/flipping_line_cursor.png cursor/flipping_axis_cursor.png cursor/flipping_axis_cursor@2x.png + cursor/move_cursor.png + cursor/move_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/move_cursor.png b/src/app/valentina/share/resources/cursor/move_cursor.png new file mode 100644 index 0000000000000000000000000000000000000000..a02bd274b8eb528260c3acf9e470c7c02fdce196 GIT binary patch literal 553 zcmV+^0@nSBP)3W7&1%)K21f;kPC6@%gUpd*tvx zSw3O4O+dhpHW5cd#CP0n6VMtW4`>DPw*Z(sViaJmh%&(35P!x1=7Km4&^V$Bpi#tO zML=VSI)FwHbpbO+{GI?X5hBo;C7>1};bFq(0o#3gvjS8?1iAyZ5<)^4u--lX`&2oP zjZ+XI@Fo4wVK09#e&Ot>B5_QgsR-G|RV-i$%eaQixblF_H}nGiMPB9$2ToqrLwv>c zip|s9zy~BF&UwGAs0c`~g-bP?r@4ryI4GR=R{o&w$vW_JxPl&bCj{(cMSM2W9LYTc z#iW<3kJsWooHQLglf7l_U{l;_=f(jNJXbO(YBYZ=o2+}diF@MeOBePLkEUpx=80^k z?BMqB`z~IYZgFF?ghjj^Hs8mc!Z8<`YQ8T1soBLEUdUG7corNV;~RB~%eG;i1aaG@ r`BtZRnyr=xycfsyJ8}CZRg3=t;BWrd@X=&$00000NkvXXu0mjftkCa= literal 0 HcmV?d00001 diff --git a/src/app/valentina/share/resources/cursor/move_cursor@2x.png b/src/app/valentina/share/resources/cursor/move_cursor@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..9feb3e5d8cc17584ac35cd187ccc14e6ac568274 GIT binary patch literal 1104 zcmV-W1h4yvP)QSX3$~RdJ32c;MN&V$GNKZaRmUkz^|v^^r)I5$ zk!uO(trakGEg>dgq$E_u1&oY@Wz7YQgoKR*484RU8w(g}35(hjFtifV2pCEU3(^S~ zItdl&1q_vhP6Z5&gn69{7zzpJbSGfoC1fFBpe6h(8vz3=VNP}e22w)S0tQaPKe87v zP!eY4BVb@8XL30fm?Fm;413T0*Y`6js8YdMBWe63*(afWk@Whk)EAB$N`y z>PM;7xqoy~i6TlUEpS(b=?Z5n%v3lw$H8V7{NCeA=PF^Ief3HwtBzWQj}ykqS!I+V z2QV!I2??bVM{xPNpGvrOfqgLnNw*niKvojUxU$)AWwsYp0NF@Lgf1PUmV_Db|8Yit z$AC=7ghg&xV0PUYkW@I8u(il7puqvW)#kY+T!_868iy}pXN{-uy)fZBixVXtE3q^l zNu+23szSk6GlA{cfnC^->xKS4RsYSA1q3);A@@p9KTzi9uipT`qv z63>8bxCPH+M)NH_jpLXNLf`eYD_|b?bz7S*7{g8YQu8v_@M5b(IvoUm!#(({{qkl` z8IR(|7Uv|w4Nb+*THpC^aaGzxGiDqQ+juWS6%VCNyp@1y?CiGmT{0%b_p!IunzehJ zmT*Vf41S6voZxkA?Yj8gu?^3NuV60=1KtrUTm9y>?jlisj3oY?_#?BIl<~Cq;%yDD zVz&^Bd{_T|MhKEpv0A{Q4*F0IlyRr{!fg$o3UNV$XN6X9Qiupsak`%HTs_l%vjvZf zFWFUvuDO0Q_io_{^&TeEX84*g(jV@)$l3CM_)K+8=<}CFt|{RWA#~o-n_}j}I6e@s z{O978Z!n4L@-AT3jN@9|j+=!6Z9k4%33;n{Q|rnPBzy3JFbK~HZ+q_x@AXqSDm>TU zFocya<7M%U+HVWN*Clw;kp6pRm*%U|%eX(UjQbtjG-%B5#3<=9eFO%>%#Nf_-9;R+%2{aTm+?PQ*^E&c<0 WMvF22)ScA;0000toolicon/32x32/flipping_line.png toolicon/32x32/flipping_axis.png toolicon/32x32/flipping_axis@2x.png + toolicon/32x32/move.png + toolicon/32x32/move@2x.png diff --git a/src/app/valentina/share/resources/toolicon/32x32/move.png b/src/app/valentina/share/resources/toolicon/32x32/move.png new file mode 100644 index 0000000000000000000000000000000000000000..d2526aaae69c0d1e65b2dc4d77a46e38b6f27ea9 GIT binary patch literal 619 zcmV-x0+juUP)I6+sxr;pd!~i?LBi3N`V97c4A95D^;-QA7+D zf~8hsVPhj&3HJU8X#`V=1dKuOg5aglND#qBK~NDDB$AM9B8IWp4IGc>Y}TBe^TM#~ zeBbbUXXl$4mNsabzJ%d~?+G&r_h#AK4z@sV!rO#U*X9=372Uubmm0uBLYU`vHMW5& z`gPn8uw)?qt#W^D(yWx(|f@+al&`J!K-3y(5j|9_Z;FL}YDMfeM+aUGw_G_Vq_ z##y{TDA2BzZJ<_{3m7;b3w{&}1q=+ufFHzc0eHZ^vf+C$RS+I9P$qmcKIXv2@T%s0 z5uIhhH{e|k{Fd}w8LH{~Ru+6C-siw?qN67NW!67g2D}e%a^QEQCuOZpWwG&A;cKO{ zXa*mbUM}^j;5CL@fp_A;GVq?9@yBto6$3rE-voYF=Gx`79X$X5002ovPDHLk FV1i@f4pjgE literal 0 HcmV?d00001 diff --git a/src/app/valentina/share/resources/toolicon/32x32/move@2x.png b/src/app/valentina/share/resources/toolicon/32x32/move@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..0b2eec37f492af502ec07aca7fa7041fc109dbe9 GIT binary patch literal 1152 zcmV-`1b_R9P)OV8FWQhbW?9;ba!ELWdL_~cP?peYja~^ zaAhuUa%Y?FJQ@H11N})vK~#90-P+BoRaF?r@y|WCn_~82@2Qn$5sFPB2O3#HC`NAs zL!A^vV52f};G|av{R7QdB#vKLC zvW%sJ@C3-%h<^&2ZJWX8W%yGIO&)79)?*gaLopO1OCVO*Pk`uC!?zB_OiWK3(ZW{3xIeMW{u_+p5y)7jfTN!xq7C7d$3LUPsME&X$oc$Ucpi21YmA;QsS6~hw-U& z;!k0uN)f48j`zd|;Bbr+bsmQH%5#BOeu*)zD*!XGU77$y?ErNIU<6yF`*I(OF|IlQ zBl2zW{)A)p%`4Ert9U5!xKU3)RW$IXa&mxm73v6L2(K$I3tV2ElrUZvF76=qPtxbc z>ZBCsIpN~JlUIb+Ow#X6d26b%QMmYBxZ?CU4eU8bza!O1Db6P0;&+-@DO!7uzPn1+ z5yUgniicr*-=Y7zCF%%bz5H|*BK}Lv>N55t9c*4JLqsU6@wYJXdrW?DX#_uwvwJDE zh)~uFullrq@FrvYQ?Ndnf(RbKU&6%i*1LG}Z$bNxa9d|uOb)a(Y7&e zjdMSa#lmZRyK!aUyuS9=!!jZaY zh<{)EW}E9o1Aj!0aWsV^bPj6$`p2CqjnTMwEvwdIQ&l%72ii;nU z7bXUR2DT~|fTwHmv_yvSEKce!{II~A+5N&CY?kNw$K;}a!v}Z@7uM%mdj17AOZA*9 Swl}Z<0000 + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/xml/vpattern.cpp b/src/app/valentina/xml/vpattern.cpp index 5a93aa209..ce88bb98b 100644 --- a/src/app/valentina/xml/vpattern.cpp +++ b/src/app/valentina/xml/vpattern.cpp @@ -2604,6 +2604,51 @@ void VPattern::ParseToolFlippingByAxis(VMainGraphicsScene *scene, QDomElement &d } } +//--------------------------------------------------------------------------------------------------------------------- +void VPattern::ParseToolMove(VMainGraphicsScene *scene, QDomElement &domElement, const Document &parse) +{ + SCASSERT(scene != nullptr); + Q_ASSERT_X(domElement.isNull() == false, Q_FUNC_INFO, "domElement is null"); + + try + { + quint32 id = NULL_ID; + + ToolsCommonAttributes(domElement, id); + const QString angle = GetParametrString(domElement, AttrAngle, "0"); + QString a = angle;//need for saving fixed formula; + const QString length = GetParametrString(domElement, AttrLength, "0"); + QString len = length;//need for saving fixed formula; + const QString suffix = GetParametrString(domElement, AttrSuffix, ""); + + QVector source; + QVector destination; + VAbstractOperation::ExtractData(this, domElement, source, destination); + + VToolMove::Create(id, a, len, suffix, source, destination, scene, this, data, parse, Source::FromFile); + //Rewrite attribute formula. Need for situation when we have wrong formula. + if (a != angle || len != length) + { + SetAttribute(domElement, AttrAngle, a); + SetAttribute(domElement, AttrLength, len); + modified = true; + haveLiteChange(); + } + } + catch (const VExceptionBadId &e) + { + VExceptionObjectError excep(tr("Error creating or updating operation of moving"), domElement); + excep.AddMoreInformation(e.ErrorMessage()); + throw excep; + } + catch (qmu::QmuParserError &e) + { + VExceptionObjectError excep(tr("Error creating or updating operation of moving"), domElement); + excep.AddMoreInformation(QString("Message: " + e.GetMsg() + "\n"+ "Expression: " + e.GetExpr())); + throw excep; + } +} + //--------------------------------------------------------------------------------------------------------------------- qreal VPattern::EvalFormula(VContainer *data, const QString &formula, bool *ok) const { @@ -2856,7 +2901,8 @@ void VPattern::ParseOperationElement(VMainGraphicsScene *scene, QDomElement &dom const QStringList opers = QStringList() << VToolRotation::ToolType /*0*/ << VToolFlippingByLine::ToolType /*1*/ - << VToolFlippingByAxis::ToolType; /*2*/ + << VToolFlippingByAxis::ToolType /*2*/ + << VToolMove::ToolType; /*3*/ switch (opers.indexOf(type)) { @@ -2869,6 +2915,9 @@ void VPattern::ParseOperationElement(VMainGraphicsScene *scene, QDomElement &dom case 2: //VToolFlippingByAxis::ToolType ParseToolFlippingByAxis(scene, domElement, parse); break; + case 3: //VToolMove::ToolType + ParseToolMove(scene, domElement, parse); + break; default: VException e(tr("Unknown operation type '%1'.").arg(type)); throw e; @@ -3375,7 +3424,7 @@ QT_WARNING_DISABLE_GCC("-Wswitch-default") QRectF VPattern::ActiveDrawBoundingRect() const { // This check helps to find missed tools in the switch - Q_STATIC_ASSERT_X(static_cast(Tool::LAST_ONE_DO_NOT_USE) == 47, "Not all tools was used."); + Q_STATIC_ASSERT_X(static_cast(Tool::LAST_ONE_DO_NOT_USE) == 48, "Not all tools was used."); QRectF rec; @@ -3493,6 +3542,9 @@ QRectF VPattern::ActiveDrawBoundingRect() const case Tool::FlippingByAxis: rec = ToolBoundingRect(rec, tool.getId()); break; + case Tool::Move: + rec = ToolBoundingRect(rec, tool.getId()); + break; //These tools are not accesseble in Draw mode, but still 'history' contains them. case Tool::Detail: case Tool::UnionDetails: diff --git a/src/app/valentina/xml/vpattern.h b/src/app/valentina/xml/vpattern.h index a67d9c76e..b21f86751 100644 --- a/src/app/valentina/xml/vpattern.h +++ b/src/app/valentina/xml/vpattern.h @@ -196,6 +196,7 @@ private: void ParseToolRotation(VMainGraphicsScene *scene, QDomElement &domElement, const Document &parse); void ParseToolFlippingByLine(VMainGraphicsScene *scene, QDomElement &domElement, const Document &parse); void ParseToolFlippingByAxis(VMainGraphicsScene *scene, QDomElement &domElement, const Document &parse); + void ParseToolMove(VMainGraphicsScene *scene, QDomElement &domElement, const Document &parse); qreal EvalFormula(VContainer *data, const QString &formula, bool *ok) const; diff --git a/src/libs/ifc/schema.qrc b/src/libs/ifc/schema.qrc index 3f4d890f7..6a0edbcae 100644 --- a/src/libs/ifc/schema.qrc +++ b/src/libs/ifc/schema.qrc @@ -19,6 +19,7 @@ schema/pattern/v0.3.3.xsd schema/pattern/v0.3.4.xsd schema/pattern/v0.3.5.xsd + schema/pattern/v0.3.6.xsd schema/standard_measurements/v0.3.0.xsd schema/standard_measurements/v0.4.0.xsd schema/standard_measurements/v0.4.1.xsd diff --git a/src/libs/ifc/schema/pattern/v0.3.6.xsd b/src/libs/ifc/schema/pattern/v0.3.6.xsd new file mode 100644 index 000000000..8c062ebb1 --- /dev/null +++ b/src/libs/ifc/schema/pattern/v0.3.6.xsd @@ -0,0 +1,582 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/libs/ifc/xml/vabstractpattern.cpp b/src/libs/ifc/xml/vabstractpattern.cpp index 83b85ff4a..77a6dae99 100644 --- a/src/libs/ifc/xml/vabstractpattern.cpp +++ b/src/libs/ifc/xml/vabstractpattern.cpp @@ -1372,7 +1372,7 @@ QStringList VAbstractPattern::ListPointExpressions() const { // Check if new tool doesn't bring new attribute with a formula. // If no just increment number - Q_STATIC_ASSERT(static_cast(Tool::LAST_ONE_DO_NOT_USE) == 47); + Q_STATIC_ASSERT(static_cast(Tool::LAST_ONE_DO_NOT_USE) == 48); QStringList expressions; const QDomNodeList list = elementsByTagName(TagPoint); @@ -1443,7 +1443,7 @@ QStringList VAbstractPattern::ListArcExpressions() const { // Check if new tool doesn't bring new attribute with a formula. // If no just increment number - Q_STATIC_ASSERT(static_cast(Tool::LAST_ONE_DO_NOT_USE) == 47); + Q_STATIC_ASSERT(static_cast(Tool::LAST_ONE_DO_NOT_USE) == 48); QStringList expressions; const QDomNodeList list = elementsByTagName(TagArc); @@ -1504,7 +1504,7 @@ QStringList VAbstractPattern::ListPathPointExpressions() const { // Check if new tool doesn't bring new attribute with a formula. // If no just increment number - Q_STATIC_ASSERT(static_cast(Tool::LAST_ONE_DO_NOT_USE) == 47); + Q_STATIC_ASSERT(static_cast(Tool::LAST_ONE_DO_NOT_USE) == 48); QStringList expressions; const QDomNodeList list = elementsByTagName(AttrPathPoint); @@ -1570,7 +1570,7 @@ QStringList VAbstractPattern::ListOperationExpressions() const { // Check if new tool doesn't bring new attribute with a formula. // If no just increment number - Q_STATIC_ASSERT(static_cast(Tool::LAST_ONE_DO_NOT_USE) == 47); + Q_STATIC_ASSERT(static_cast(Tool::LAST_ONE_DO_NOT_USE) == 48); QStringList expressions; const QDomNodeList list = elementsByTagName(TagOperation); @@ -1587,6 +1587,15 @@ QStringList VAbstractPattern::ListOperationExpressions() const { Q_UNUSED(e) } + + try + { + expressions.append(GetParametrString(dom, AttrLength)); + } + catch (VExceptionEmptyParameter &e) + { + Q_UNUSED(e) + } } return expressions; diff --git a/src/libs/ifc/xml/vpatternconverter.cpp b/src/libs/ifc/xml/vpatternconverter.cpp index dcd2a6eeb..6f9788537 100644 --- a/src/libs/ifc/xml/vpatternconverter.cpp +++ b/src/libs/ifc/xml/vpatternconverter.cpp @@ -58,8 +58,8 @@ class QDomElement; */ const QString VPatternConverter::PatternMinVerStr = QStringLiteral("0.1.0"); -const QString VPatternConverter::PatternMaxVerStr = QStringLiteral("0.3.5"); -const QString VPatternConverter::CurrentSchema = QStringLiteral("://schema/pattern/v0.3.5.xsd"); +const QString VPatternConverter::PatternMaxVerStr = QStringLiteral("0.3.6"); +const QString VPatternConverter::CurrentSchema = QStringLiteral("://schema/pattern/v0.3.6.xsd"); //VPatternConverter::PatternMinVer; // <== DON'T FORGET TO UPDATE TOO!!!! //VPatternConverter::PatternMaxVer; // <== DON'T FORGET TO UPDATE TOO!!!! @@ -169,6 +169,8 @@ QString VPatternConverter::XSDSchema(int ver) const case (0x000304): return QStringLiteral("://schema/pattern/v0.3.4.xsd"); case (0x000305): + return QStringLiteral("://schema/pattern/v0.3.5.xsd"); + case (0x000306): return CurrentSchema; default: InvalidVersion(ver); @@ -256,6 +258,10 @@ void VPatternConverter::ApplyPatches() ValidateXML(XSDSchema(0x000305), fileName); V_FALLTHROUGH case (0x000305): + ToV0_3_6(); + ValidateXML(XSDSchema(0x000306), fileName); + V_FALLTHROUGH + case (0x000306): break; default: break; @@ -423,6 +429,13 @@ void VPatternConverter::ToV0_3_5() Save(); } +//--------------------------------------------------------------------------------------------------------------------- +void VPatternConverter::ToV0_3_6() +{ + SetVersion(QStringLiteral("0.3.6")); + Save(); +} + //--------------------------------------------------------------------------------------------------------------------- void VPatternConverter::TagUnitToV0_2_0() { diff --git a/src/libs/ifc/xml/vpatternconverter.h b/src/libs/ifc/xml/vpatternconverter.h index cca5e3c2f..87cd058d2 100644 --- a/src/libs/ifc/xml/vpatternconverter.h +++ b/src/libs/ifc/xml/vpatternconverter.h @@ -55,10 +55,10 @@ public: // GCC 4.6 doesn't allow constexpr and const together #if !defined(__INTEL_COMPILER) && !defined(__clang__) && defined(__GNUC__) && (__GNUC__ * 100 + __GNUC_MINOR__) <= 406 static Q_DECL_CONSTEXPR int PatternMinVer = CONVERTER_VERSION_CHECK(0, 1, 0); - static Q_DECL_CONSTEXPR int PatternMaxVer = CONVERTER_VERSION_CHECK(0, 3, 5); + static Q_DECL_CONSTEXPR int PatternMaxVer = CONVERTER_VERSION_CHECK(0, 3, 6); #else static Q_DECL_CONSTEXPR const int PatternMinVer = CONVERTER_VERSION_CHECK(0, 1, 0); - static Q_DECL_CONSTEXPR const int PatternMaxVer = CONVERTER_VERSION_CHECK(0, 3, 5); + static Q_DECL_CONSTEXPR const int PatternMaxVer = CONVERTER_VERSION_CHECK(0, 3, 6); #endif protected: @@ -94,6 +94,7 @@ private: void ToV0_3_3(); void ToV0_3_4(); void ToV0_3_5(); + void ToV0_3_6(); void TagUnitToV0_2_0(); void TagIncrementToV0_2_0(); diff --git a/src/libs/vgeometry/varc.cpp b/src/libs/vgeometry/varc.cpp index 8616f7079..6420a1c2b 100644 --- a/src/libs/vgeometry/varc.cpp +++ b/src/libs/vgeometry/varc.cpp @@ -145,6 +145,19 @@ VArc VArc::Flip(const QLineF &axis, const QString &prefix) const return arc; } +//--------------------------------------------------------------------------------------------------------------------- +VArc VArc::Move(qreal length, qreal angle, const QString &prefix) const +{ + const VPointF center = GetCenter().Move(length, angle); + + const QPointF p1 = VPointF::MovePF(GetP1(), length, angle); + const QPointF p2 = VPointF::MovePF(GetP2(), length, angle); + + VArc arc(center, GetRadius(), QLineF(center, p1).angle(), QLineF(center, p2).angle()); + arc.setName(name() + prefix); + return arc; +} + //--------------------------------------------------------------------------------------------------------------------- VArc::~VArc() {} diff --git a/src/libs/vgeometry/varc.h b/src/libs/vgeometry/varc.h index 3a3c4d0c7..bd7c276e2 100644 --- a/src/libs/vgeometry/varc.h +++ b/src/libs/vgeometry/varc.h @@ -64,6 +64,7 @@ public: VArc& operator= (const VArc &arc); VArc Rotate(const QPointF &originPoint, qreal degrees, const QString &prefix = QString()) const; VArc Flip(const QLineF &axis, const QString &prefix = QString()) const; + VArc Move(qreal length, qreal angle, const QString &prefix = QString()) const; virtual ~VArc() Q_DECL_OVERRIDE; QString GetFormulaRadius () const; diff --git a/src/libs/vgeometry/vcubicbezier.cpp b/src/libs/vgeometry/vcubicbezier.cpp index 3f710e339..551db1f03 100644 --- a/src/libs/vgeometry/vcubicbezier.cpp +++ b/src/libs/vgeometry/vcubicbezier.cpp @@ -90,6 +90,18 @@ VCubicBezier VCubicBezier::Flip(const QLineF &axis, const QString &prefix) const return curve; } +//--------------------------------------------------------------------------------------------------------------------- +VCubicBezier VCubicBezier::Move(qreal length, qreal angle, const QString &prefix) const +{ + const VPointF p1 = GetP1().Move(length, angle); + const VPointF p2 = GetP2().Move(length, angle); + const VPointF p3 = GetP3().Move(length, angle); + const VPointF p4 = GetP4().Move(length, angle); + VCubicBezier curve(p1, p2, p3, p4); + curve.setName(name() + prefix); + return curve; +} + //--------------------------------------------------------------------------------------------------------------------- VCubicBezier::~VCubicBezier() { diff --git a/src/libs/vgeometry/vcubicbezier.h b/src/libs/vgeometry/vcubicbezier.h index 3e5b138ab..71e952f8a 100644 --- a/src/libs/vgeometry/vcubicbezier.h +++ b/src/libs/vgeometry/vcubicbezier.h @@ -54,6 +54,7 @@ public: VCubicBezier &operator=(const VCubicBezier &curve); VCubicBezier Rotate(const QPointF &originPoint, qreal degrees, const QString &prefix = QString()) const; VCubicBezier Flip(const QLineF &axis, const QString &prefix = QString()) const; + VCubicBezier Move(qreal length, qreal angle, const QString &prefix = QString()) const; virtual ~VCubicBezier(); virtual VPointF GetP1() const Q_DECL_OVERRIDE; diff --git a/src/libs/vgeometry/vcubicbezierpath.cpp b/src/libs/vgeometry/vcubicbezierpath.cpp index 208c38206..a187a866f 100644 --- a/src/libs/vgeometry/vcubicbezierpath.cpp +++ b/src/libs/vgeometry/vcubicbezierpath.cpp @@ -104,6 +104,19 @@ VCubicBezierPath VCubicBezierPath::Flip(const QLineF &axis, const QString &prefi return curve; } +//--------------------------------------------------------------------------------------------------------------------- +VCubicBezierPath VCubicBezierPath::Move(qreal length, qreal angle, const QString &prefix) const +{ + const QVector points = GetCubicPath(); + VCubicBezierPath curve; + for(int i=0; i < points.size(); ++i) + { + curve.append(points.at(i).Move(length, angle)); + } + curve.setName(name() + prefix); + return curve; +} + //--------------------------------------------------------------------------------------------------------------------- VCubicBezierPath::~VCubicBezierPath() { diff --git a/src/libs/vgeometry/vcubicbezierpath.h b/src/libs/vgeometry/vcubicbezierpath.h index d483264f1..93fda4cb7 100644 --- a/src/libs/vgeometry/vcubicbezierpath.h +++ b/src/libs/vgeometry/vcubicbezierpath.h @@ -57,6 +57,7 @@ public: VCubicBezierPath &operator=(const VCubicBezierPath &curve); VCubicBezierPath Rotate(const QPointF &originPoint, qreal degrees, const QString &prefix = QString()) const; VCubicBezierPath Flip(const QLineF &axis, const QString &prefix = QString()) const; + VCubicBezierPath Move(qreal length, qreal angle, const QString &prefix = QString()) const; virtual ~VCubicBezierPath(); VPointF &operator[](int indx); diff --git a/src/libs/vgeometry/vellipticalarc.cpp b/src/libs/vgeometry/vellipticalarc.cpp index 81798cc81..09b5d790f 100644 --- a/src/libs/vgeometry/vellipticalarc.cpp +++ b/src/libs/vgeometry/vellipticalarc.cpp @@ -148,6 +148,19 @@ VEllipticalArc VEllipticalArc::Flip(const QLineF &axis, const QString &prefix) c return elArc; } +//--------------------------------------------------------------------------------------------------------------------- +VEllipticalArc VEllipticalArc::Move(qreal length, qreal angle, const QString &prefix) const +{ + const VPointF center = GetCenter().Move(length, angle); + const QPointF p1 = VPointF::MovePF(GetP1(), length, angle); + const QPointF p2 = VPointF::MovePF(GetP2(), length, angle); + const qreal f1 = QLineF(center, p1).angle() - GetRotationAngle(); + const qreal f2 = QLineF(center, p2).angle() - GetRotationAngle(); + VEllipticalArc elArc(center, GetRadius1(), GetRadius2(), f1, f2, GetRotationAngle()); + elArc.setName(name() + prefix); + return elArc; +} + //--------------------------------------------------------------------------------------------------------------------- VEllipticalArc::~VEllipticalArc() {} diff --git a/src/libs/vgeometry/vellipticalarc.h b/src/libs/vgeometry/vellipticalarc.h index b77372efd..1f15025e4 100644 --- a/src/libs/vgeometry/vellipticalarc.h +++ b/src/libs/vgeometry/vellipticalarc.h @@ -64,6 +64,7 @@ public: VEllipticalArc& operator= (const VEllipticalArc &arc); VEllipticalArc Rotate(const QPointF &originPoint, qreal degrees, const QString &prefix = QString()) const; VEllipticalArc Flip(const QLineF &axis, const QString &prefix = QString()) const; + VEllipticalArc Move(qreal length, qreal angle, const QString &prefix = QString()) const; virtual ~VEllipticalArc() Q_DECL_OVERRIDE; diff --git a/src/libs/vgeometry/vpointf.cpp b/src/libs/vgeometry/vpointf.cpp index fcb3f529d..12de7bc1c 100644 --- a/src/libs/vgeometry/vpointf.cpp +++ b/src/libs/vgeometry/vpointf.cpp @@ -121,6 +121,13 @@ VPointF VPointF::Flip(const QLineF &axis, const QString &prefix) const return VPointF(p, name() + prefix, mx(), my()); } +//--------------------------------------------------------------------------------------------------------------------- +VPointF VPointF::Move(qreal length, qreal angle, const QString &prefix) const +{ + const QPointF p = MovePF(toQPointF(), length, angle); + return VPointF(p, name() + prefix, mx(), my()); +} + //--------------------------------------------------------------------------------------------------------------------- /** * @brief mx return offset name respect to x @@ -221,3 +228,11 @@ QPointF VPointF::FlipPF(const QLineF &axis, const QPointF &point) const QTransform matrix = FlippingMatrix(axis); return matrix.map(point); } + +//--------------------------------------------------------------------------------------------------------------------- +QPointF VPointF::MovePF(const QPointF &originPoint, qreal length, qreal angle) +{ + QLineF line(originPoint.x(), originPoint.y(), originPoint.x() + length, originPoint.y()); + line.setAngle(angle); + return line.p2(); +} diff --git a/src/libs/vgeometry/vpointf.h b/src/libs/vgeometry/vpointf.h index 3eb4a25ee..79a67d927 100644 --- a/src/libs/vgeometry/vpointf.h +++ b/src/libs/vgeometry/vpointf.h @@ -66,6 +66,7 @@ public: operator QPointF() const; VPointF Rotate(const QPointF &originPoint, qreal degrees, const QString &prefix = QString()) const; VPointF Flip(const QLineF &axis, const QString &prefix = QString()) const; + VPointF Move(qreal length, qreal angle, const QString &prefix = QString()) const; qreal mx() const; qreal my() const; void setMx(qreal mx); @@ -78,6 +79,7 @@ public: static QPointF RotatePF(const QPointF &originPoint, const QPointF &point, qreal degrees); static QPointF FlipPF(const QLineF &axis, const QPointF &point); + static QPointF MovePF(const QPointF &originPoint, qreal length, qreal angle); private: QSharedDataPointer d; }; diff --git a/src/libs/vgeometry/vspline.cpp b/src/libs/vgeometry/vspline.cpp index b9fceff03..b1be7ec0e 100644 --- a/src/libs/vgeometry/vspline.cpp +++ b/src/libs/vgeometry/vspline.cpp @@ -140,6 +140,20 @@ VSpline VSpline::Flip(const QLineF &axis, const QString &prefix) const return spl; } +//--------------------------------------------------------------------------------------------------------------------- +VSpline VSpline::Move(qreal length, qreal angle, const QString &prefix) const +{ + const VPointF p1 = GetP1().Move(length, angle); + const VPointF p4 = GetP4().Move(length, angle); + + const QPointF p2 = VPointF::MovePF(GetP2(), length, angle); + const QPointF p3 = VPointF::MovePF(GetP3(), length, angle); + + VSpline spl(p1, p2, p3, p4); + spl.setName(name() + prefix); + return spl; +} + //--------------------------------------------------------------------------------------------------------------------- VSpline::~VSpline() {} diff --git a/src/libs/vgeometry/vspline.h b/src/libs/vgeometry/vspline.h index 325aea0ff..d5d711d49 100644 --- a/src/libs/vgeometry/vspline.h +++ b/src/libs/vgeometry/vspline.h @@ -64,6 +64,7 @@ public: const QString &c2LengthFormula, quint32 idObject = 0, Draw mode = Draw::Calculation); VSpline Rotate(const QPointF &originPoint, qreal degrees, const QString &prefix = QString()) const; VSpline Flip(const QLineF &axis, const QString &prefix = QString()) const; + VSpline Move(qreal length, qreal angle, const QString &prefix = QString()) const; virtual ~VSpline(); VSpline &operator=(const VSpline &spl); diff --git a/src/libs/vgeometry/vsplinepath.cpp b/src/libs/vgeometry/vsplinepath.cpp index e21938d11..7dcaf404c 100644 --- a/src/libs/vgeometry/vsplinepath.cpp +++ b/src/libs/vgeometry/vsplinepath.cpp @@ -144,6 +144,28 @@ VSplinePath VSplinePath::Flip(const QLineF &axis, const QString &prefix) const return splPath; } +//--------------------------------------------------------------------------------------------------------------------- +VSplinePath VSplinePath::Move(qreal length, qreal angle, const QString &prefix) const +{ + QVector newPoints(CountPoints()); + for (qint32 i = 1; i <= CountSubSpl(); ++i) + { + const VSpline spl = GetSpline(i).Move(length, angle); + + newPoints[i-1].SetP(spl.GetP1()); + newPoints[i-1].SetAngle2(spl.GetStartAngle(), spl.GetStartAngleFormula()); + newPoints[i-1].SetLength2(spl.GetC1Length(), spl.GetC1LengthFormula()); + + newPoints[i].SetP(spl.GetP4()); + newPoints[i].SetAngle1(spl.GetEndAngle(), spl.GetEndAngleFormula()); + newPoints[i].SetLength1(spl.GetC2Length(), spl.GetC2LengthFormula()); + } + + VSplinePath splPath(newPoints); + splPath.setName(name() + prefix); + return splPath; +} + //--------------------------------------------------------------------------------------------------------------------- VSplinePath::~VSplinePath() {} diff --git a/src/libs/vgeometry/vsplinepath.h b/src/libs/vgeometry/vsplinepath.h index da3b73c49..2c9545891 100644 --- a/src/libs/vgeometry/vsplinepath.h +++ b/src/libs/vgeometry/vsplinepath.h @@ -62,6 +62,7 @@ public: VSplinePath(const VSplinePath& splPath); VSplinePath Rotate(const QPointF &originPoint, qreal degrees, const QString &prefix = QString()) const; VSplinePath Flip(const QLineF &axis, const QString &prefix = QString()) const; + VSplinePath Move(qreal length, qreal angle, const QString &prefix = QString()) const; virtual ~VSplinePath() Q_DECL_OVERRIDE; VSplinePath &operator=(const VSplinePath &path); diff --git a/src/libs/vmisc/def.h b/src/libs/vmisc/def.h index 80a92c9d1..1cab5c9c9 100644 --- a/src/libs/vmisc/def.h +++ b/src/libs/vmisc/def.h @@ -111,6 +111,7 @@ enum class Tool : ToolVisHolderType Rotation, FlippingByLine, FlippingByAxis, + Move, Midpoint, LAST_ONE_DO_NOT_USE //add new stuffs above this, this constant must be last and never used }; @@ -154,7 +155,8 @@ enum class Vis : ToolVisHolderType ToolTrueDarts, ToolRotation, ToolFlippingByLine, - ToolFlippingByAxis + ToolFlippingByAxis, + ToolMove }; enum class VarType : char { Measurement, Increment, LineLength, CurveLength, CurveCLength, LineAngle, CurveAngle, diff --git a/src/libs/vtools/dialogs/dialogs.pri b/src/libs/vtools/dialogs/dialogs.pri index 167b8580d..343b5a64c 100644 --- a/src/libs/vtools/dialogs/dialogs.pri +++ b/src/libs/vtools/dialogs/dialogs.pri @@ -40,7 +40,8 @@ HEADERS += \ $$PWD/tools/dialoggroup.h \ $$PWD/tools/dialogrotation.h \ $$PWD/tools/dialogflippingbyline.h \ - $$PWD/tools/dialogflippingbyaxis.h + $$PWD/tools/dialogflippingbyaxis.h \ + $$PWD/tools/dialogmove.h SOURCES += \ @@ -81,7 +82,8 @@ SOURCES += \ $$PWD/tools/dialoggroup.cpp \ $$PWD/tools/dialogrotation.cpp \ $$PWD/tools/dialogflippingbyline.cpp \ - $$PWD/tools/dialogflippingbyaxis.cpp + $$PWD/tools/dialogflippingbyaxis.cpp \ + $$PWD/tools/dialogmove.cpp FORMS += \ $$PWD/tools/dialogalongline.ui \ @@ -120,4 +122,5 @@ FORMS += \ $$PWD/tools/dialoggroup.ui \ $$PWD/tools/dialogrotation.ui \ $$PWD/tools/dialogflippingbyline.ui \ - $$PWD/tools/dialogflippingbyaxis.ui + $$PWD/tools/dialogflippingbyaxis.ui \ + $$PWD/tools/dialogmove.ui diff --git a/src/libs/vtools/dialogs/tooldialogs.h b/src/libs/vtools/dialogs/tooldialogs.h index 7a884ce90..23f99447c 100644 --- a/src/libs/vtools/dialogs/tooldialogs.h +++ b/src/libs/vtools/dialogs/tooldialogs.h @@ -64,6 +64,7 @@ #include "tools/dialogrotation.h" #include "tools/dialogflippingbyline.h" #include "tools/dialogflippingbyaxis.h" +#include "tools/dialogmove.h" #include "support/dialogeditwrongformula.h" #include "support/dialogundo.h" diff --git a/src/libs/vtools/dialogs/tools/dialogmove.cpp b/src/libs/vtools/dialogs/tools/dialogmove.cpp new file mode 100644 index 000000000..0a1960da8 --- /dev/null +++ b/src/libs/vtools/dialogs/tools/dialogmove.cpp @@ -0,0 +1,421 @@ +/************************************************************************ + ** + ** @file dialogmove.cpp + ** @author Roman Telezhynskyi + ** @date 30 9, 2016 + ** + ** @brief + ** @copyright + ** This source code is part of the Valentine project, a pattern making + ** program, whose allow create and modeling patterns of clothing. + ** Copyright (C) 2016 Valentina project + ** All Rights Reserved. + ** + ** Valentina is free software: you can redistribute it and/or modify + ** it under the terms of the GNU General Public License as published by + ** the Free Software Foundation, either version 3 of the License, or + ** (at your option) any later version. + ** + ** Valentina is distributed in the hope that it will be useful, + ** but WITHOUT ANY WARRANTY; without even the implied warranty of + ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + ** GNU General Public License for more details. + ** + ** You should have received a copy of the GNU General Public License + ** along with Valentina. If not, see . + ** + *************************************************************************/ + +#include "dialogmove.h" + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "../../visualization/visualization.h" +#include "../../visualization/line/operation/vistoolmove.h" +#include "../ifc/xml/vabstractpattern.h" +#include "../ifc/xml/vdomdocument.h" +#include "../qmuparser/qmudef.h" +#include "../support/dialogeditwrongformula.h" +#include "../vgeometry/vpointf.h" +#include "../vmisc/vabstractapplication.h" +#include "../vmisc/vcommonsettings.h" +#include "../vpatterndb/vcontainer.h" +#include "../vpatterndb/vtranslatevars.h" +#include "../vwidgets/vabstractmainwindow.h" +#include "../vwidgets/vmaingraphicsscene.h" +#include "ui_dialogmove.h" + +class QCloseEvent; +class QWidget; + +//--------------------------------------------------------------------------------------------------------------------- +DialogMove::DialogMove(const VContainer *data, quint32 toolId, QWidget *parent) + : DialogTool(data, toolId, parent), + ui(new Ui::DialogMove), + flagAngle(false), + flagLength(false), + timerAngle(nullptr), + timerLength(nullptr), + formulaAngle(), + formulaLength(), + formulaBaseHeightAngle(0), + formulaBaseHeightLength(0), + objects(), + stage1(true), + m_suffix() +{ + ui->setupUi(this); + + this->formulaBaseHeightAngle = ui->plainTextEditAngle->height(); + ui->plainTextEditAngle->installEventFilter(this); + + this->formulaBaseHeightLength = ui->plainTextEditLength->height(); + ui->plainTextEditLength->installEventFilter(this); + + ui->lineEditSuffix->setText(qApp->getCurrentDocument()->GenerateSuffix()); + + timerAngle = new QTimer(this); + connect(timerAngle, &QTimer::timeout, this, &DialogMove::EvalAngle); + + timerLength = new QTimer(this); + connect(timerLength, &QTimer::timeout, this, &DialogMove::EvalLength); + + InitOkCancelApply(ui); + + flagName = true; + CheckState(); + + connect(ui->lineEditSuffix, &QLineEdit::textChanged, this, &DialogMove::SuffixChanged); + connect(ui->toolButtonExprAngle, &QPushButton::clicked, this, &DialogMove::FXAngle); + connect(ui->toolButtonExprLength, &QPushButton::clicked, this, &DialogMove::FXLength); + connect(ui->plainTextEditAngle, &QPlainTextEdit::textChanged, this, &DialogMove::AngleChanged); + connect(ui->plainTextEditLength, &QPlainTextEdit::textChanged, this, &DialogMove::LengthChanged); + connect(ui->pushButtonGrowAngle, &QPushButton::clicked, this, &DialogMove::DeployAngleTextEdit); + connect(ui->pushButtonGrowLength, &QPushButton::clicked, this, &DialogMove::DeployLengthTextEdit); + + vis = new VisToolMove(data); +} + +//--------------------------------------------------------------------------------------------------------------------- +DialogMove::~DialogMove() +{ + delete ui; +} + +//--------------------------------------------------------------------------------------------------------------------- +QString DialogMove::GetAngle() const +{ + return qApp->TrVars()->TryFormulaFromUser(formulaAngle, qApp->Settings()->GetOsSeparator()); +} + +//--------------------------------------------------------------------------------------------------------------------- +void DialogMove::SetAngle(const QString &value) +{ + formulaAngle = qApp->TrVars()->FormulaToUser(value, qApp->Settings()->GetOsSeparator()); + // increase height if needed. + if (formulaAngle.length() > 80) + { + this->DeployAngleTextEdit(); + } + ui->plainTextEditAngle->setPlainText(formulaAngle); + + VisToolMove *operation = qobject_cast(vis); + SCASSERT(operation != nullptr); + operation->SetAngle(formulaAngle); + + MoveCursorToEnd(ui->plainTextEditAngle); +} + +//--------------------------------------------------------------------------------------------------------------------- +QString DialogMove::GetLength() const +{ + return qApp->TrVars()->TryFormulaFromUser(formulaLength, qApp->Settings()->GetOsSeparator()); +} + +//--------------------------------------------------------------------------------------------------------------------- +void DialogMove::SetLength(const QString &value) +{ + formulaLength = qApp->TrVars()->FormulaToUser(value, qApp->Settings()->GetOsSeparator()); + // increase height if needed. + if (formulaLength.length() > 80) + { + this->DeployLengthTextEdit(); + } + ui->plainTextEditLength->setPlainText(formulaLength); + + VisToolMove *operation = qobject_cast(vis); + SCASSERT(operation != nullptr); + operation->SetLength(formulaLength); + + MoveCursorToEnd(ui->plainTextEditLength); +} + +//--------------------------------------------------------------------------------------------------------------------- +QString DialogMove::GetSuffix() const +{ + return m_suffix; +} + +//--------------------------------------------------------------------------------------------------------------------- +void DialogMove::SetSuffix(const QString &value) +{ + m_suffix = value; + ui->lineEditSuffix->setText(value); +} + +//--------------------------------------------------------------------------------------------------------------------- +QVector DialogMove::GetObjects() const +{ + return objects.toVector(); +} + +//--------------------------------------------------------------------------------------------------------------------- +void DialogMove::ShowDialog(bool click) +{ + if (stage1 && not click) + { + if (objects.isEmpty()) + { + return; + } + + stage1 = false; + prepare = true; + + VMainGraphicsScene *scene = qobject_cast(qApp->getCurrentScene()); + SCASSERT(scene != nullptr); + scene->clearSelection(); + + VisToolMove *operation = qobject_cast(vis); + SCASSERT(operation != nullptr); + operation->SetObjects(objects.toVector()); + operation->VisualMode(); + + VAbstractMainWindow *window = qobject_cast(qApp->getMainWindow()); + SCASSERT(window != nullptr); + connect(operation, &VisToolMove::ToolTip, window, &VAbstractMainWindow::ShowToolTip); + + scene->ToggleArcSelection(false); + scene->ToggleSplineSelection(false); + scene->ToggleSplinePathSelection(false); + + scene->ToggleArcHover(false); + scene->ToggleSplineHover(false); + scene->ToggleSplinePathHover(false); + } + else if (not stage1 && prepare && click) + { + VisToolMove *operation = qobject_cast(vis); + SCASSERT(operation != nullptr); + + if (operation->LengthValue() > 0) + { + SetAngle(operation->Angle());//Show in dialog angle that a user choose + SetLength(operation->Length()); + setModal(true); + emit ToolTip(""); + timerAngle->start(); + timerLength->start(); + show(); + } + } +} + +//--------------------------------------------------------------------------------------------------------------------- +void DialogMove::ChosenObject(quint32 id, const SceneObject &type) +{ + Q_UNUSED(id); + Q_UNUSED(type); + // do nothing +} + +//--------------------------------------------------------------------------------------------------------------------- +void DialogMove::SelectedObject(bool selected, quint32 object, quint32 tool) +{ + Q_UNUSED(tool) + if (stage1) + { + if (selected) + { + if (not objects.contains(object)) + { + objects.append(object); + } + } + else + { + objects.removeOne(object); + } + } +} + +//--------------------------------------------------------------------------------------------------------------------- +void DialogMove::DeployAngleTextEdit() +{ + DeployFormula(ui->plainTextEditAngle, ui->pushButtonGrowAngle, formulaBaseHeightAngle); +} + +//--------------------------------------------------------------------------------------------------------------------- +void DialogMove::DeployLengthTextEdit() +{ + DeployFormula(ui->plainTextEditLength, ui->pushButtonGrowLength, formulaBaseHeightLength); +} + +//--------------------------------------------------------------------------------------------------------------------- +void DialogMove::AngleChanged() +{ + labelEditFormula = ui->labelEditAngle; + labelResultCalculation = ui->labelResultAngle; + ValFormulaChanged(flagAngle, ui->plainTextEditAngle, timerAngle, degreeSymbol); +} + +//--------------------------------------------------------------------------------------------------------------------- +void DialogMove::LengthChanged() +{ + labelEditFormula = ui->labelEditLength; + labelResultCalculation = ui->labelResultLength; + ValFormulaChanged(flagLength, ui->plainTextEditLength, timerLength, degreeSymbol); +} + +//--------------------------------------------------------------------------------------------------------------------- +void DialogMove::FXAngle() +{ + DialogEditWrongFormula *dialog = new DialogEditWrongFormula(data, toolId, this); + dialog->setWindowTitle(tr("Edit angle")); + dialog->SetFormula(GetAngle()); + dialog->setPostfix(degreeSymbol); + if (dialog->exec() == QDialog::Accepted) + { + SetAngle(dialog->GetFormula()); + } + delete dialog; +} + +//--------------------------------------------------------------------------------------------------------------------- +void DialogMove::FXLength() +{ + DialogEditWrongFormula *dialog = new DialogEditWrongFormula(data, toolId, this); + dialog->setWindowTitle(tr("Edit length")); + dialog->SetFormula(GetLength()); + dialog->setPostfix(VDomDocument::UnitsToStr(qApp->patternUnit(), true)); + if (dialog->exec() == QDialog::Accepted) + { + SetLength(dialog->GetFormula()); + } + delete dialog; +} + +//--------------------------------------------------------------------------------------------------------------------- +void DialogMove::SuffixChanged() +{ + QLineEdit* edit = qobject_cast(sender()); + if (edit) + { + const QString suffix = edit->text(); + if (suffix.isEmpty()) + { + flagName = false; + ChangeColor(ui->labelSuffix, Qt::red); + CheckState(); + return; + } + else + { + if (m_suffix != suffix) + { + QRegularExpression rx(NameRegExp()); + const QStringList uniqueNames = data->AllUniqueNames(); + for (int i=0; i < uniqueNames.size(); ++i) + { + const QString name = uniqueNames.at(i) + suffix; + if (not rx.match(name).hasMatch() || not data->IsUnique(name)) + { + flagName = false; + ChangeColor(ui->labelSuffix, Qt::red); + CheckState(); + return; + } + } + } + } + + flagName = true; + ChangeColor(ui->labelSuffix, okColor); + } + CheckState(); +} + +//--------------------------------------------------------------------------------------------------------------------- +void DialogMove::CheckState() +{ + SCASSERT(bOk != nullptr); + bOk->setEnabled(flagAngle && flagLength && flagName); + SCASSERT(bApply != nullptr); + bApply->setEnabled(bOk->isEnabled()); +} + +//--------------------------------------------------------------------------------------------------------------------- +void DialogMove::ShowVisualization() +{ + AddVisualization(); +} + +//--------------------------------------------------------------------------------------------------------------------- +void DialogMove::SaveData() +{ + m_suffix = ui->lineEditSuffix->text(); + + formulaAngle = ui->plainTextEditAngle->toPlainText(); + formulaAngle.replace("\n", " "); + + formulaLength = ui->plainTextEditLength->toPlainText(); + formulaLength.replace("\n", " "); + + VisToolMove *operation = qobject_cast(vis); + SCASSERT(operation != nullptr); + + operation->SetObjects(objects.toVector()); + operation->SetAngle(formulaAngle); + operation->SetLength(formulaLength); + operation->RefreshGeometry(); +} + +//--------------------------------------------------------------------------------------------------------------------- +void DialogMove::closeEvent(QCloseEvent *event) +{ + ui->plainTextEditAngle->blockSignals(true); + ui->plainTextEditLength->blockSignals(true); + DialogTool::closeEvent(event); +} + +//--------------------------------------------------------------------------------------------------------------------- +void DialogMove::EvalAngle() +{ + labelEditFormula = ui->labelEditAngle; + Eval(ui->plainTextEditAngle->toPlainText(), flagAngle, ui->labelResultAngle, degreeSymbol, false); +} + +//--------------------------------------------------------------------------------------------------------------------- +void DialogMove::EvalLength() +{ + labelEditFormula = ui->labelEditLength; + const QString postfix = VDomDocument::UnitsToStr(qApp->patternUnit(), true); + Eval(ui->plainTextEditLength->toPlainText(), flagLength, ui->labelResultLength, postfix); +} diff --git a/src/libs/vtools/dialogs/tools/dialogmove.h b/src/libs/vtools/dialogs/tools/dialogmove.h new file mode 100644 index 000000000..9608780c6 --- /dev/null +++ b/src/libs/vtools/dialogs/tools/dialogmove.h @@ -0,0 +1,133 @@ +/************************************************************************ + ** + ** @file dialogmove.h + ** @author Roman Telezhynskyi + ** @date 30 9, 2016 + ** + ** @brief + ** @copyright + ** This source code is part of the Valentine project, a pattern making + ** program, whose allow create and modeling patterns of clothing. + ** Copyright (C) 2016 Valentina project + ** All Rights Reserved. + ** + ** Valentina is free software: you can redistribute it and/or modify + ** it under the terms of the GNU General Public License as published by + ** the Free Software Foundation, either version 3 of the License, or + ** (at your option) any later version. + ** + ** Valentina is distributed in the hope that it will be useful, + ** but WITHOUT ANY WARRANTY; without even the implied warranty of + ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + ** GNU General Public License for more details. + ** + ** You should have received a copy of the GNU General Public License + ** along with Valentina. If not, see . + ** + *************************************************************************/ + +#ifndef DIALOGMOVING_H +#define DIALOGMOVING_H + +#include +#include +#include +#include +#include +#include +#include + +#include "../vmisc/def.h" +#include "dialogtool.h" + +class QCloseEvent; +class QTimer; +class QWidget; +class VContainer; + +namespace Ui +{ + class DialogMove; +} + +class DialogMove : public DialogTool +{ + Q_OBJECT + +public: + explicit DialogMove(const VContainer *data, quint32 toolId, QWidget *parent = nullptr); + virtual ~DialogMove(); + + QString GetAngle() const; + void SetAngle(const QString &value); + + QString GetLength() const; + void SetLength(const QString &value); + + QString GetSuffix() const; + void SetSuffix(const QString &value); + + QVector GetObjects() const; + + virtual void ShowDialog(bool click) Q_DECL_OVERRIDE; + +public slots: + virtual void ChosenObject(quint32 id, const SceneObject &type) Q_DECL_OVERRIDE; + virtual void SelectedObject(bool selected, quint32 object, quint32 tool) Q_DECL_OVERRIDE; + +private slots: + /** @brief DeployAngleTextEdit grow or shrink formula input */ + void DeployAngleTextEdit(); + void DeployLengthTextEdit(); + + void AngleChanged(); + void LengthChanged(); + + void FXAngle(); + void FXLength(); + + void SuffixChanged(); + +protected: + virtual void CheckState() Q_DECL_OVERRIDE; + virtual void ShowVisualization() Q_DECL_OVERRIDE; + + /** @brief SaveData Put dialog data in local variables */ + virtual void SaveData() Q_DECL_OVERRIDE; + virtual void closeEvent(QCloseEvent *event) Q_DECL_OVERRIDE; + +private: + Q_DISABLE_COPY(DialogMove) + Ui::DialogMove *ui; + + /** @brief flagAngle true if value of angle is correct */ + bool flagAngle; + + bool flagLength; + + /** @brief timerAngle timer of check formula of angle */ + QTimer *timerAngle; + + QTimer *timerLength; + + /** @brief angle formula of angle */ + QString formulaAngle; + + QString formulaLength; + + /** @brief formulaBaseHeightAngle base height defined by dialogui */ + int formulaBaseHeightAngle; + + int formulaBaseHeightLength; + + QList objects; + + bool stage1; + + QString m_suffix; + + void EvalAngle(); + void EvalLength(); +}; + +#endif // DIALOGMOVING_H diff --git a/src/libs/vtools/dialogs/tools/dialogmove.ui b/src/libs/vtools/dialogs/tools/dialogmove.ui new file mode 100644 index 000000000..2bdf948d3 --- /dev/null +++ b/src/libs/vtools/dialogs/tools/dialogmove.ui @@ -0,0 +1,450 @@ + + + DialogMove + + + + 0 + 0 + 285 + 232 + + + + Dialog + + + + :/icon/64x64/icon64x64.png:/icon/64x64/icon64x64.png + + + + + + + + + 0 + 0 + + + + + + + + + 255 + 0 + 0 + + + + + + + + + 255 + 0 + 0 + + + + + + + + + 159 + 158 + 158 + + + + + + + + Angle: + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + Formula wizard + + + ... + + + + :/icon/24x24/fx.png:/icon/24x24/fx.png + + + + 24 + 24 + + + + + + + + + + + :/icon/24x24/equal.png + + + + + + + + 0 + 0 + + + + + 87 + 0 + + + + Value + + + _ + + + + + + + + + + + + 0 + 0 + + + + + 16777215 + 28 + + + + Calulation + + + true + + + + + + + + 18 + 18 + + + + + 0 + 0 + + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + + + + .. + + + + 16 + 16 + + + + true + + + + + + + + + + + + 0 + 0 + + + + + + + + + 255 + 0 + 0 + + + + + + + + + 255 + 0 + 0 + + + + + + + + + 159 + 158 + 158 + + + + + + + + Length: + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + Formula wizard + + + ... + + + + :/icon/24x24/fx.png:/icon/24x24/fx.png + + + + 24 + 24 + + + + + + + + + + + :/icon/24x24/equal.png + + + + + + + + 0 + 0 + + + + + 87 + 0 + + + + Value + + + _ + + + + + + + + + + + + 0 + 0 + + + + + 16777215 + 28 + + + + Calulation + + + true + + + + + + + + 18 + 18 + + + + + 0 + 0 + + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + + + + .. + + + + 16 + 16 + + + + true + + + + + + + + + + + + 0 + 0 + + + + Suffix: + + + + + + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Apply|QDialogButtonBox::Cancel|QDialogButtonBox::Ok + + + + + + + + + + + buttonBox + accepted() + DialogMove + accept() + + + 248 + 254 + + + 157 + 274 + + + + + buttonBox + rejected() + DialogMove + reject() + + + 316 + 260 + + + 286 + 274 + + + + + diff --git a/src/libs/vtools/tools/drawTools/drawtools.h b/src/libs/vtools/tools/drawTools/drawtools.h index 6adaecdd3..01c9cce94 100644 --- a/src/libs/vtools/tools/drawTools/drawtools.h +++ b/src/libs/vtools/tools/drawTools/drawtools.h @@ -61,5 +61,6 @@ #include "operation/vtoolrotation.h" #include "operation/flipping/vtoolflippingbyline.h" #include "operation/flipping/vtoolflippingbyaxis.h" +#include "operation/vtoolmove.h" #endif // DRAWTOOLS_H diff --git a/src/libs/vtools/tools/drawTools/operation/vtoolmove.cpp b/src/libs/vtools/tools/drawTools/operation/vtoolmove.cpp new file mode 100644 index 000000000..a95f9472c --- /dev/null +++ b/src/libs/vtools/tools/drawTools/operation/vtoolmove.cpp @@ -0,0 +1,480 @@ +/************************************************************************ + ** + ** @file + ** @author Roman Telezhynskyi + ** @date 1 10, 2016 + ** + ** @brief + ** @copyright + ** This source code is part of the Valentine project, a pattern making + ** program, whose allow create and modeling patterns of clothing. + ** Copyright (C) 2016 Valentina project + ** All Rights Reserved. + ** + ** Valentina is free software: you can redistribute it and/or modify + ** it under the terms of the GNU General Public License as published by + ** the Free Software Foundation, either version 3 of the License, or + ** (at your option) any later version. + ** + ** Valentina is distributed in the hope that it will be useful, + ** but WITHOUT ANY WARRANTY; without even the implied warranty of + ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + ** GNU General Public License for more details. + ** + ** You should have received a copy of the GNU General Public License + ** along with Valentina. If not, see . + ** + *************************************************************************/ + +#include "vtoolmove.h" + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "../../../dialogs/tools/dialogtool.h" +#include "../../../dialogs/tools/dialogmove.h" +#include "../../../visualization/line/operation/vistoolmove.h" +#include "../../../visualization/visualization.h" +#include "../vgeometry/vabstractcurve.h" +#include "../vgeometry/varc.h" +#include "../vgeometry/vcubicbezier.h" +#include "../vgeometry/vcubicbezierpath.h" +#include "../vgeometry/vgobject.h" +#include "../vgeometry/vpointf.h" +#include "../vgeometry/vspline.h" +#include "../vgeometry/vsplinepath.h" +#include "../vpatterndb/vtranslatevars.h" +#include "../vmisc/vabstractapplication.h" +#include "../vmisc/vcommonsettings.h" +#include "../vmisc/diagnostic.h" +#include "../vmisc/logging.h" +#include "../vpatterndb/vcontainer.h" +#include "../vpatterndb/vformula.h" +#include "../ifc/ifcdef.h" +#include "../ifc/exception/vexception.h" +#include "../vwidgets/vabstractsimple.h" +#include "../vwidgets/vmaingraphicsscene.h" +#include "../../vabstracttool.h" +#include "../../vdatatool.h" +#include "../vdrawtool.h" + +class QDomElement; +class QGraphicsSceneContextMenuEvent; +class QPainter; +class QStyleOptionGraphicsItem; +class QWidget; +template class QSharedPointer; + +const QString VToolMove::ToolType = QStringLiteral("moving"); + +//--------------------------------------------------------------------------------------------------------------------- +VToolMove::~VToolMove() +{ +} + +//--------------------------------------------------------------------------------------------------------------------- +void VToolMove::setDialog() +{ + SCASSERT(dialog != nullptr); + DialogMove *dialogTool = qobject_cast(dialog); + SCASSERT(dialogTool != nullptr); + dialogTool->SetAngle(formulaAngle); + dialogTool->SetLength(formulaLength); + dialogTool->SetSuffix(suffix); +} + +//--------------------------------------------------------------------------------------------------------------------- +VToolMove *VToolMove::Create(DialogTool *dialog, VMainGraphicsScene *scene, VAbstractPattern *doc, + VContainer *data) +{ + SCASSERT(dialog != nullptr); + DialogMove *dialogTool = qobject_cast(dialog); + SCASSERT(dialogTool != nullptr); + QString angle = dialogTool->GetAngle(); + QString length = dialogTool->GetLength(); + const QString suffix = dialogTool->GetSuffix(); + const QVector source = dialogTool->GetObjects(); + VToolMove* operation = Create(0, angle, length, suffix, source, QVector(), scene, doc, data, + Document::FullParse, Source::FromGui); + if (operation != nullptr) + { + operation->dialog = dialogTool; + } + return operation; +} + +//--------------------------------------------------------------------------------------------------------------------- +VToolMove *VToolMove::Create(quint32 _id, QString &formulaAngle, QString &formulaLength, + const QString &suffix, const QVector &source, + const QVector &destination, VMainGraphicsScene *scene, + VAbstractPattern *doc, VContainer *data, const Document &parse, + const Source &typeCreation) +{ + qreal calcAngle = 0; + qreal calcLength = 0; + + calcAngle = CheckFormula(_id, formulaAngle, data); + calcLength = qApp->toPixel(CheckFormula(_id, formulaLength, data)); + + QVector dest = destination; + + quint32 id = _id; + if (typeCreation == Source::FromGui) + { + dest.clear();// Try to avoid mistake, value must be empty + + id = data->getNextId();//Just reserve id for tool + + for (int i = 0; i < source.size(); ++i) + { + const quint32 idObject = source.at(i); + const QSharedPointer obj = data->GetGObject(idObject); + + // This check helps to find missed objects in the switch + Q_STATIC_ASSERT_X(static_cast(GOType::Unknown) == 7, "Not all objects were handled."); + +QT_WARNING_PUSH +QT_WARNING_DISABLE_GCC("-Wswitch-default") + switch(static_cast(obj->getType())) + { + case GOType::Point: + dest.append(CreatePoint(id, idObject, calcAngle, calcLength, suffix, data)); + break; + case GOType::Arc: + dest.append(CreateArc(id, idObject, calcAngle, calcLength, suffix, data)); + break; + case GOType::EllipticalArc: + //dest.append(CreateItem(id, idObject, angle, suffix)); + break; + case GOType::Spline: + dest.append(CreateCurve(id, idObject, calcAngle, calcLength, suffix, data)); + break; + case GOType::SplinePath: + dest.append(CreateCurveWithSegments(id, idObject, calcAngle, calcLength, suffix, + data)); + break; + case GOType::CubicBezier: + dest.append(CreateCurve(id, idObject, calcAngle, calcLength, suffix, data)); + break; + case GOType::CubicBezierPath: + dest.append(CreateCurveWithSegments(id, idObject, calcAngle, calcLength, suffix, + data)); + break; + case GOType::Unknown: + break; + } +QT_WARNING_POP + } + } + else + { + for (int i = 0; i < source.size(); ++i) + { + const quint32 idObject = source.at(i); + const QSharedPointer obj = data->GetGObject(idObject); + + // This check helps to find missed objects in the switch + Q_STATIC_ASSERT_X(static_cast(GOType::Unknown) == 7, "Not all objects were handled."); + +QT_WARNING_PUSH +QT_WARNING_DISABLE_GCC("-Wswitch-default") + switch(static_cast(obj->getType())) + { + case GOType::Point: + UpdatePoint(id, idObject, calcAngle, calcLength, suffix, data, dest.at(i).id, dest.at(i).mx, + dest.at(i).my); + break; + case GOType::Arc: + UpdateArc(id, idObject, calcAngle, calcLength, suffix, data, dest.at(i).id); + break; + case GOType::EllipticalArc: + //dest.append(UpdateItem(id, idObject, oPoint, angle, suffix, data)); + break; + case GOType::Spline: + UpdateCurve(id, idObject, calcAngle, calcLength, suffix, data, dest.at(i).id); + break; + case GOType::SplinePath: + UpdateCurveWithSegments(id, idObject, calcAngle, calcLength, suffix, data, + dest.at(i).id); + break; + case GOType::CubicBezier: + UpdateCurve(id, idObject, calcAngle, calcLength, suffix, data, dest.at(i).id); + break; + case GOType::CubicBezierPath: + UpdateCurveWithSegments(id, idObject, calcAngle, calcLength, suffix, data, + dest.at(i).id); + break; + case GOType::Unknown: + break; + } +QT_WARNING_POP + } + if (parse != Document::FullParse) + { + doc->UpdateToolData(id, data); + } + } + + VDrawTool::AddRecord(id, Tool::Move, doc); + if (parse == Document::FullParse) + { + VToolMove *tool = new VToolMove(doc, data, id, formulaAngle, formulaLength, suffix, source, dest, + typeCreation); + scene->addItem(tool); + InitOperationToolConnections(scene, tool); + doc->AddTool(id, tool); + for (int i = 0; i < source.size(); ++i) + { + doc->IncrementReferens(data->GetGObject(source.at(i))->getIdTool()); + } + return tool; + } + return nullptr; +} + +//--------------------------------------------------------------------------------------------------------------------- +VFormula VToolMove::GetFormulaAngle() const +{ + VFormula fAngle(formulaAngle, getData()); + fAngle.setCheckZero(false); + fAngle.setToolId(id); + fAngle.setPostfix(degreeSymbol); + return fAngle; +} + +//--------------------------------------------------------------------------------------------------------------------- +void VToolMove::SetFormulaAngle(const VFormula &value) +{ + if (value.error() == false) + { + formulaAngle = value.GetFormula(FormulaType::FromUser); + + QSharedPointer obj = VAbstractTool::data.GetFakeGObject(id); + SaveOption(obj); + } +} + +//--------------------------------------------------------------------------------------------------------------------- +VFormula VToolMove::GetFormulaLength() const +{ + VFormula fLength(formulaLength, getData()); + fLength.setCheckZero(true); + fLength.setToolId(id); + fLength.setPostfix(VDomDocument::UnitsToStr(qApp->patternUnit())); + return fLength; +} + +//--------------------------------------------------------------------------------------------------------------------- +void VToolMove::SetFormulaLength(const VFormula &value) +{ + if (value.error() == false) + { + formulaLength = value.GetFormula(FormulaType::FromUser); + + QSharedPointer obj = VAbstractTool::data.GetFakeGObject(id); + SaveOption(obj); + } +} + +//--------------------------------------------------------------------------------------------------------------------- +void VToolMove::ShowVisualization(bool show) +{ + ShowToolVisualization(show); +} + +//--------------------------------------------------------------------------------------------------------------------- +void VToolMove::SetVisualization() +{ + if (not vis.isNull()) + { + VisToolMove *visual = qobject_cast(vis); + SCASSERT(visual != nullptr); + + visual->SetObjects(source); + visual->SetAngle(qApp->TrVars()->FormulaToUser(formulaAngle, qApp->Settings()->GetOsSeparator())); + visual->SetLength(qApp->TrVars()->FormulaToUser(formulaLength, qApp->Settings()->GetOsSeparator())); + visual->RefreshGeometry(); + } +} + +//--------------------------------------------------------------------------------------------------------------------- +void VToolMove::SaveDialog(QDomElement &domElement) +{ + SCASSERT(dialog != nullptr); + DialogMove *dialogTool = qobject_cast(dialog); + SCASSERT(dialogTool != nullptr); + + doc->SetAttribute(domElement, AttrAngle, dialogTool->GetAngle()); + QString length = dialogTool->GetLength(); + doc->SetAttribute(domElement, AttrLength, length); + doc->SetAttribute(domElement, AttrSuffix, dialogTool->GetSuffix()); +} + +//--------------------------------------------------------------------------------------------------------------------- +void VToolMove::ReadToolAttributes(const QDomElement &domElement) +{ + formulaAngle = doc->GetParametrString(domElement, AttrAngle, "0"); + formulaLength = doc->GetParametrString(domElement, AttrLength, "0"); + suffix = doc->GetParametrString(domElement, AttrSuffix); +} + +//--------------------------------------------------------------------------------------------------------------------- +void VToolMove::SaveOptions(QDomElement &tag, QSharedPointer &obj) +{ + VDrawTool::SaveOptions(tag, obj); + + doc->SetAttribute(tag, AttrType, ToolType); + doc->SetAttribute(tag, AttrAngle, formulaAngle); + doc->SetAttribute(tag, AttrLength, formulaLength); + doc->SetAttribute(tag, AttrSuffix, suffix); + + SaveSourceDestination(tag); +} + +//--------------------------------------------------------------------------------------------------------------------- +void VToolMove::contextMenuEvent(QGraphicsSceneContextMenuEvent *event) +{ + try + { + ContextMenu(this, event); + } + catch(const VExceptionToolWasDeleted &e) + { + Q_UNUSED(e); + return;//Leave this method immediately!!! + } +} + +//--------------------------------------------------------------------------------------------------------------------- +VToolMove::VToolMove(VAbstractPattern *doc, VContainer *data, quint32 id, + const QString &formulaAngle, const QString &formulaLength, const QString &suffix, + const QVector &source, const QVector &destination, + const Source &typeCreation, QGraphicsItem *parent) + : VAbstractOperation(doc, data, id, suffix, source, destination, parent), + formulaAngle(formulaAngle), + formulaLength(formulaLength) +{ + InitOperatedObjects(); + ToolCreation(typeCreation); +} + +//--------------------------------------------------------------------------------------------------------------------- +DestinationItem VToolMove::CreatePoint(quint32 idTool, quint32 idItem, qreal angle, + qreal length, const QString &suffix, VContainer *data) +{ + const QSharedPointer point = data->GeometricObject(idItem); + VPointF moved = point->Move(length, angle, suffix); + moved.setIdObject(idTool); + + DestinationItem item; + item.mx = moved.mx(); + item.my = moved.my(); + item.id = data->AddGObject(new VPointF(moved)); + return item; +} + +//--------------------------------------------------------------------------------------------------------------------- +DestinationItem VToolMove::CreateArc(quint32 idTool, quint32 idItem, qreal angle, qreal length, const QString &suffix, + VContainer *data) +{ + const DestinationItem item = CreateItem(idTool, idItem, angle, length, suffix, data); + data->AddArc(data->GeometricObject(item.id), item.id); + return item; +} + +//--------------------------------------------------------------------------------------------------------------------- +void VToolMove::UpdatePoint(quint32 idTool, quint32 idItem, qreal angle, qreal length, const QString &suffix, + VContainer *data, quint32 id, qreal mx, qreal my) +{ + const QSharedPointer point = data->GeometricObject(idItem); + VPointF moved = point->Move(length, angle, suffix); + moved.setIdObject(idTool); + moved.setMx(mx); + moved.setMy(my); + data->UpdateGObject(id, new VPointF(moved)); +} + +//--------------------------------------------------------------------------------------------------------------------- +void VToolMove::UpdateArc(quint32 idTool, quint32 idItem, qreal angle, qreal length, const QString &suffix, + VContainer *data, quint32 id) +{ + UpdateItem(idTool, idItem, angle, length, suffix, data, id); + data->AddArc(data->GeometricObject(id), id); +} + +//--------------------------------------------------------------------------------------------------------------------- +template +DestinationItem VToolMove::CreateItem(quint32 idTool, quint32 idItem, qreal angle, + qreal length, const QString &suffix, VContainer *data) +{ + const QSharedPointer i = data->GeometricObject(idItem); + Item moved = i->Move(length, angle, suffix); + moved.setIdObject(idTool); + + DestinationItem item; + item.mx = INT_MAX; + item.my = INT_MAX; + item.id = data->AddGObject(new Item(moved)); + return item; +} + +//--------------------------------------------------------------------------------------------------------------------- +template +DestinationItem VToolMove::CreateCurve(quint32 idTool, quint32 idItem, qreal angle, qreal length, + const QString &suffix, VContainer *data) +{ + const DestinationItem item = CreateItem(idTool, idItem, angle, length, suffix, data); + data->AddSpline(data->GeometricObject(item.id), item.id); + return item; +} + +//--------------------------------------------------------------------------------------------------------------------- +template +DestinationItem VToolMove::CreateCurveWithSegments(quint32 idTool, quint32 idItem, qreal angle, + qreal length, const QString &suffix, + VContainer *data) +{ + const DestinationItem item = CreateItem(idTool, idItem, angle, length, suffix, data); + data->AddCurveWithSegments(data->GeometricObject(item.id), item.id); + return item; +} + +//--------------------------------------------------------------------------------------------------------------------- +template +void VToolMove::UpdateItem(quint32 idTool, quint32 idItem, qreal angle, qreal length, const QString &suffix, + VContainer *data, quint32 id) +{ + const QSharedPointer i = data->GeometricObject(idItem); + Item moved = i->Move(length, angle, suffix); + moved.setIdObject(idTool); + data->UpdateGObject(id, new Item(moved)); +} + +//--------------------------------------------------------------------------------------------------------------------- +template +void VToolMove::UpdateCurve(quint32 idTool, quint32 idItem, qreal angle, qreal length, const QString &suffix, + VContainer *data, quint32 id) +{ + UpdateItem(idTool, idItem, angle, length, suffix, data, id); + data->AddSpline(data->GeometricObject(id), id); +} + +//--------------------------------------------------------------------------------------------------------------------- +template +void VToolMove::UpdateCurveWithSegments(quint32 idTool, quint32 idItem, qreal angle, qreal length, + const QString &suffix, VContainer *data, quint32 id) +{ + UpdateItem(idTool, idItem, angle, length, suffix, data, id); + data->AddCurveWithSegments(data->GeometricObject(id), id); +} diff --git a/src/libs/vtools/tools/drawTools/operation/vtoolmove.h b/src/libs/vtools/tools/drawTools/operation/vtoolmove.h new file mode 100644 index 000000000..54397e970 --- /dev/null +++ b/src/libs/vtools/tools/drawTools/operation/vtoolmove.h @@ -0,0 +1,128 @@ +/************************************************************************ + ** + ** @file + ** @author Roman Telezhynskyi + ** @date 1 10, 2016 + ** + ** @brief + ** @copyright + ** This source code is part of the Valentine project, a pattern making + ** program, whose allow create and modeling patterns of clothing. + ** Copyright (C) 2016 Valentina project + ** All Rights Reserved. + ** + ** Valentina is free software: you can redistribute it and/or modify + ** it under the terms of the GNU General Public License as published by + ** the Free Software Foundation, either version 3 of the License, or + ** (at your option) any later version. + ** + ** Valentina is distributed in the hope that it will be useful, + ** but WITHOUT ANY WARRANTY; without even the implied warranty of + ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + ** GNU General Public License for more details. + ** + ** You should have received a copy of the GNU General Public License + ** along with Valentina. If not, see . + ** + *************************************************************************/ + +#ifndef VTOOLMOVING_H +#define VTOOLMOVING_H + +#include +#include +#include +#include +#include +#include +#include + +#include "vabstractoperation.h" +#include "../vgeometry/vgeometrydef.h" +#include "../vmisc/def.h" +#include "../ifc/xml/vabstractpattern.h" + +class DialogTool; +class QDomElement; +class QGraphicsSceneContextMenuEvent; +class QPointF; +class VContainer; +class VGObject; +class VMainGraphicsScene; +template class QSharedPointer; +class VFormula; + +class VToolMove : public VAbstractOperation +{ + Q_OBJECT +public: + virtual ~VToolMove(); + virtual void setDialog() Q_DECL_OVERRIDE; + static VToolMove* Create(DialogTool *dialog, VMainGraphicsScene *scene, VAbstractPattern *doc, + VContainer *data); + static VToolMove* Create(quint32 _id, QString &formulaAngle, QString &formulaLength, const QString &suffix, + const QVector &source, const QVector &destination, + VMainGraphicsScene *scene, VAbstractPattern *doc, VContainer *data, + const Document &parse, const Source &typeCreation); + + static const QString ToolType; + + virtual int type() const Q_DECL_OVERRIDE {return Type;} + enum { Type = UserType + static_cast(Tool::Move)}; + + VFormula GetFormulaAngle() const; + void SetFormulaAngle(const VFormula &value); + + VFormula GetFormulaLength() const; + void SetFormulaLength(const VFormula &value); + + virtual void ShowVisualization(bool show) Q_DECL_OVERRIDE; + +protected: + virtual void SetVisualization() Q_DECL_OVERRIDE; + virtual void SaveDialog(QDomElement &domElement) Q_DECL_OVERRIDE; + virtual void ReadToolAttributes(const QDomElement &domElement) Q_DECL_OVERRIDE; + virtual void SaveOptions(QDomElement &tag, QSharedPointer &obj) Q_DECL_OVERRIDE; + virtual void contextMenuEvent ( QGraphicsSceneContextMenuEvent * event ) Q_DECL_OVERRIDE; + +private: + Q_DISABLE_COPY(VToolMove) + QString formulaAngle; + QString formulaLength; + + VToolMove(VAbstractPattern *doc, VContainer *data, quint32 id, const QString &formulaAngle, + const QString &formulaLength, const QString &suffix, const QVector &source, + const QVector &destination, const Source &typeCreation, + QGraphicsItem *parent = nullptr); + + static DestinationItem CreatePoint(quint32 idTool, quint32 idItem, qreal angle, qreal length, const QString &suffix, + VContainer *data); + + template + static DestinationItem CreateItem(quint32 idTool, quint32 idItem, qreal angle, qreal length, const QString &suffix, + VContainer *data); + static DestinationItem CreateArc(quint32 idTool, quint32 idItem, qreal angle, qreal length, const QString &suffix, + VContainer *data); + template + static DestinationItem CreateCurve(quint32 idTool, quint32 idItem, qreal angle, qreal length, const QString &suffix, + VContainer *data); + template + static DestinationItem CreateCurveWithSegments(quint32 idTool, quint32 idItem, qreal angle, qreal length, + const QString &suffix, VContainer *data); + + static void UpdatePoint(quint32 idTool, quint32 idItem, qreal angle, qreal length, const QString &suffix, + VContainer *data, quint32 id, qreal mx, qreal my); + template + static void UpdateItem(quint32 idTool, quint32 idItem, qreal angle, qreal length, const QString &suffix, + VContainer *data, quint32 id); + static void UpdateArc(quint32 idTool, quint32 idItem, qreal angle, qreal length, const QString &suffix, + VContainer *data, quint32 id); + template + static void UpdateCurve(quint32 idTool, quint32 idItem, qreal angle, qreal length, const QString &suffix, + VContainer *data, quint32 id); + template + static void UpdateCurveWithSegments(quint32 idTool, quint32 idItem, qreal angle, qreal length, + const QString &suffix, VContainer *data, quint32 id); +}; + +#endif // VTOOLMOVING_H diff --git a/src/libs/vtools/tools/tools.pri b/src/libs/vtools/tools/tools.pri index d84f0ff2a..7f0366f5d 100644 --- a/src/libs/vtools/tools/tools.pri +++ b/src/libs/vtools/tools/tools.pri @@ -55,7 +55,8 @@ HEADERS += \ $$PWD/drawTools/operation/flipping/vtoolflippingbyline.h \ $$PWD/drawTools/operation/vabstractoperation.h \ $$PWD/drawTools/operation/flipping/vtoolflippingbyaxis.h \ - $$PWD/drawTools/operation/flipping/vabstractflipping.h + $$PWD/drawTools/operation/flipping/vabstractflipping.h \ + $$PWD/drawTools/operation/vtoolmove.h SOURCES += \ $$PWD/vtooldetail.cpp \ @@ -108,4 +109,5 @@ SOURCES += \ $$PWD/drawTools/operation/flipping/vtoolflippingbyline.cpp \ $$PWD/drawTools/operation/vabstractoperation.cpp \ $$PWD/drawTools/operation/flipping/vtoolflippingbyaxis.cpp \ - $$PWD/drawTools/operation/flipping/vabstractflipping.cpp + $$PWD/drawTools/operation/flipping/vabstractflipping.cpp \ + $$PWD/drawTools/operation/vtoolmove.cpp diff --git a/src/libs/vtools/visualization/line/operation/vistoolmove.cpp b/src/libs/vtools/visualization/line/operation/vistoolmove.cpp new file mode 100644 index 000000000..15803060b --- /dev/null +++ b/src/libs/vtools/visualization/line/operation/vistoolmove.cpp @@ -0,0 +1,319 @@ +/************************************************************************ + ** + ** @file + ** @author Roman Telezhynskyi + ** @date 1 10, 2016 + ** + ** @brief + ** @copyright + ** This source code is part of the Valentine project, a pattern making + ** program, whose allow create and modeling patterns of clothing. + ** Copyright (C) 2016 Valentina project + ** All Rights Reserved. + ** + ** Valentina is free software: you can redistribute it and/or modify + ** it under the terms of the GNU General Public License as published by + ** the Free Software Foundation, either version 3 of the License, or + ** (at your option) any later version. + ** + ** Valentina is distributed in the hope that it will be useful, + ** but WITHOUT ANY WARRANTY; without even the implied warranty of + ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + ** GNU General Public License for more details. + ** + ** You should have received a copy of the GNU General Public License + ** along with Valentina. If not, see . + ** + *************************************************************************/ + +#include "vistoolmove.h" + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "../ifc/xml/vdomdocument.h" +#include "../vmisc/diagnostic.h" +#include "../vgeometry/vabstractcurve.h" +#include "../vgeometry/varc.h" +#include "../vgeometry/vcubicbezier.h" +#include "../vgeometry/vcubicbezierpath.h" +#include "../vgeometry/vellipticalarc.h" +#include "../vgeometry/vgeometrydef.h" +#include "../vgeometry/vgobject.h" +#include "../vgeometry/vpointf.h" +#include "../vgeometry/vspline.h" +#include "../vgeometry/vsplinepath.h" +#include "../vmisc/vabstractapplication.h" +#include "../vpatterndb/vcontainer.h" +#include "../vwidgets/vmaingraphicsscene.h" +#include "visoperation.h" + +//--------------------------------------------------------------------------------------------------------------------- +VisToolMove::VisToolMove(const VContainer *data, QGraphicsItem *parent) + : VisOperation(data, parent), + angle(0), + length(0), + pointOrigin(nullptr), + pointFinish(nullptr) +{ + pointOrigin = InitPoint(supportColor2, this); + pointFinish = InitPoint(supportColor, this); +} + +//--------------------------------------------------------------------------------------------------------------------- +VisToolMove::~VisToolMove() +{ +} + +//--------------------------------------------------------------------------------------------------------------------- +void VisToolMove::RefreshGeometry() +{ + if (objects.isEmpty()) + { + return; + } + + int iPoint = -1; + int iCurve = -1; + + const QVector originObjects = CreateOriginObjects(iPoint, iCurve); + + const QPointF origin = GetOriginPoint(originObjects); + DrawPoint(pointOrigin, origin, supportColor2); + + qreal tempAngle = 0; + qreal tempLength = 0; + + QLineF line; + if (qFuzzyIsNull(length)) + { + if (QGuiApplication::keyboardModifiers() == Qt::ShiftModifier) + { + line = QLineF(origin, Visualization::scenePos); + line.setAngle(CorrectAngle(line.angle())); + } + else + { + line = QLineF(origin, Visualization::scenePos); + } + + tempAngle = line.angle(); + tempLength = line.length(); + } + else + { + line = VGObject::BuildLine(origin, length, angle); + tempAngle = angle; + tempLength = length; + } + DrawLine(this, line, supportColor2, Qt::DashLine); + DrawPoint(pointFinish, line.p2(), supportColor); + + static const QString prefix = VDomDocument::UnitsToStr(qApp->patternUnit(), true); + Visualization::toolTip = tr("Length = %1%2, angle = %3°, Shift - sticking angle, " + "Mouse click - finish creation") + .arg(qApp->TrVars()->FormulaToUser(QString::number(qApp->fromPixel(tempLength)), + qApp->Settings()->GetOsSeparator())) + .arg(prefix) + .arg(tempAngle); + + CreateMovedObjects(iPoint, iCurve, tempLength, tempAngle); +} + +//--------------------------------------------------------------------------------------------------------------------- +QString VisToolMove::Angle() const +{ + return QString::number(line().angle()); +} + +//--------------------------------------------------------------------------------------------------------------------- +void VisToolMove::SetAngle(const QString &expression) +{ + angle = FindVal(expression, Visualization::data->PlainVariables()); +} + +//--------------------------------------------------------------------------------------------------------------------- +QString VisToolMove::Length() const +{ + return QString::number(LengthValue()); +} + +//--------------------------------------------------------------------------------------------------------------------- +qreal VisToolMove::LengthValue() const +{ + return qApp->fromPixel(line().length()); +} + +//--------------------------------------------------------------------------------------------------------------------- +void VisToolMove::SetLength(const QString &expression) +{ + length = FindVal(expression, Visualization::data->PlainVariables()); +} + +//--------------------------------------------------------------------------------------------------------------------- +template +QGraphicsPathItem *VisToolMove::AddOriginCurve(quint32 id, int &i) +{ + const QSharedPointer curve = Visualization::data->template GeometricObject(id); + + ++i; + QGraphicsPathItem *path = GetCurve(i, supportColor2); + DrawPath(path, curve->GetPath(PathDirection::Show), supportColor2, Qt::SolidLine, Qt::RoundCap); + + return path; +} + +//--------------------------------------------------------------------------------------------------------------------- +template +int VisToolMove::AddMovedCurve(qreal angle, qreal length, quint32 id, int i) +{ + const QSharedPointer curve = Visualization::data->template GeometricObject(id); + + ++i; + QGraphicsPathItem *path = GetCurve(i, supportColor); + const Item moved = curve->Move(length, angle); + DrawPath(path, moved.GetPath(PathDirection::Show), supportColor, Qt::SolidLine, Qt::RoundCap); + + return i; +} + +//--------------------------------------------------------------------------------------------------------------------- +QPointF VisToolMove::GetOriginPoint(const QVector &objects) +{ + QRectF boundingRect; + for (int i=0; i < objects.size(); ++i) + { + QGraphicsItem *object = objects.at(i); + if (object) + { + QRectF childrenRect = object->childrenBoundingRect(); + //map to scene coordinate. + childrenRect.translate(object->scenePos()); + + QRectF itemRect = object->boundingRect(); + //map to scene coordinate. + itemRect.translate(object->scenePos()); + + boundingRect = boundingRect.united(itemRect); + boundingRect = boundingRect.united(childrenRect); + } + } + + return boundingRect.center(); +} + +//--------------------------------------------------------------------------------------------------------------------- +QT_WARNING_PUSH +QT_WARNING_DISABLE_GCC("-Wswitch-default") + +QVector VisToolMove::CreateOriginObjects(int &iPoint, int &iCurve) +{ + QVector originObjects; + + for (int i = 0; i < objects.size(); ++i) + { + const quint32 id = objects.at(i); + const QSharedPointer obj = Visualization::data->GetGObject(id); + + // This check helps to find missed objects in the switch + Q_STATIC_ASSERT_X(static_cast(GOType::Unknown) == 7, "Not all objects were handled."); + + switch(static_cast(obj->getType())) + { + case GOType::Point: + { + const QSharedPointer p = Visualization::data->GeometricObject(id); + + ++iPoint; + QGraphicsEllipseItem *point = GetPoint(iPoint, supportColor2); + DrawPoint(point, *p, supportColor2); + originObjects.append(point); + + break; + } + case GOType::Arc: + originObjects.append(AddOriginCurve(id, iCurve)); + break; + case GOType::EllipticalArc: + originObjects.append(AddOriginCurve(id, iCurve)); + break; + case GOType::Spline: + originObjects.append(AddOriginCurve(id, iCurve)); + break; + case GOType::SplinePath: + originObjects.append(AddOriginCurve(id, iCurve)); + break; + case GOType::CubicBezier: + originObjects.append(AddOriginCurve(id, iCurve)); + break; + case GOType::CubicBezierPath: + originObjects.append(AddOriginCurve(id, iCurve)); + break; + case GOType::Unknown: + break; + } + } + + return originObjects; +} + +QT_WARNING_POP + +//--------------------------------------------------------------------------------------------------------------------- +QT_WARNING_PUSH +QT_WARNING_DISABLE_GCC("-Wswitch-default") + +void VisToolMove::CreateMovedObjects(int &iPoint, int &iCurve, qreal length, qreal angle) +{ + for (int i = 0; i < objects.size(); ++i) + { + const quint32 id = objects.at(i); + const QSharedPointer obj = Visualization::data->GetGObject(id); + + // This check helps to find missed objects in the switch + Q_STATIC_ASSERT_X(static_cast(GOType::Unknown) == 7, "Not all objects was handled."); + + switch(static_cast(obj->getType())) + { + case GOType::Point: + { + const QSharedPointer p = Visualization::data->GeometricObject(id); + + ++iPoint; + QGraphicsEllipseItem *point = GetPoint(iPoint, supportColor); + DrawPoint(point, p->Move(length, angle), supportColor); + break; + } + case GOType::Arc: + iCurve = AddMovedCurve(angle, length, id, iCurve); + break; + case GOType::EllipticalArc: + iCurve = AddMovedCurve(angle, length, id, iCurve); + break; + case GOType::Spline: + iCurve = AddMovedCurve(angle, length, id, iCurve); + break; + case GOType::SplinePath: + iCurve = AddMovedCurve(angle, length, id, iCurve); + break; + case GOType::CubicBezier: + iCurve = AddMovedCurve(angle, length, id, iCurve); + break; + case GOType::CubicBezierPath: + iCurve = AddMovedCurve(angle, length, id, iCurve); + break; + case GOType::Unknown: + break; + } + } +} + +QT_WARNING_POP diff --git a/src/libs/vtools/visualization/line/operation/vistoolmove.h b/src/libs/vtools/visualization/line/operation/vistoolmove.h new file mode 100644 index 000000000..9121395a4 --- /dev/null +++ b/src/libs/vtools/visualization/line/operation/vistoolmove.h @@ -0,0 +1,86 @@ +/************************************************************************ + ** + ** @file + ** @author Roman Telezhynskyi + ** @date 1 10, 2016 + ** + ** @brief + ** @copyright + ** This source code is part of the Valentine project, a pattern making + ** program, whose allow create and modeling patterns of clothing. + ** Copyright (C) 2016 Valentina project + ** All Rights Reserved. + ** + ** Valentina is free software: you can redistribute it and/or modify + ** it under the terms of the GNU General Public License as published by + ** the Free Software Foundation, either version 3 of the License, or + ** (at your option) any later version. + ** + ** Valentina is distributed in the hope that it will be useful, + ** but WITHOUT ANY WARRANTY; without even the implied warranty of + ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + ** GNU General Public License for more details. + ** + ** You should have received a copy of the GNU General Public License + ** along with Valentina. If not, see . + ** + *************************************************************************/ + +#ifndef VISTOOLMOVE_H +#define VISTOOLMOVE_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "../ifc/ifcdef.h" +#include "../vmisc/def.h" +#include "visoperation.h" + +class QPointF; +class VContainer; + +class VisToolMove : public VisOperation +{ + Q_OBJECT +public: + explicit VisToolMove(const VContainer *data, QGraphicsItem *parent = nullptr); + virtual ~VisToolMove(); + + virtual void RefreshGeometry() Q_DECL_OVERRIDE; + + QString Angle() const; + void SetAngle(const QString &expression); + + QString Length() const; + qreal LengthValue() const; + void SetLength(const QString &expression); + + virtual int type() const Q_DECL_OVERRIDE {return Type;} + enum { Type = UserType + static_cast(Vis::ToolMove)}; +private: + Q_DISABLE_COPY(VisToolMove) + qreal angle; + qreal length; + QGraphicsEllipseItem *pointOrigin; + QGraphicsEllipseItem *pointFinish; + + template + QGraphicsPathItem *AddOriginCurve(quint32 id, int &i); + + template + int AddMovedCurve(qreal angle, qreal length, quint32 id, int i); + + static QPointF GetOriginPoint(const QVector &objects); + + QVector CreateOriginObjects(int &iPoint, int &iCurve); + void CreateMovedObjects(int &iPoint, int &iCurve, qreal length, qreal angle); +}; + +#endif // VISTOOLMOVE_H diff --git a/src/libs/vtools/visualization/visualization.pri b/src/libs/vtools/visualization/visualization.pri index 4e2775d3f..7eee605f6 100644 --- a/src/libs/vtools/visualization/visualization.pri +++ b/src/libs/vtools/visualization/visualization.pri @@ -36,7 +36,8 @@ HEADERS += \ $$PWD/path/vistoolcubicbezier.h \ $$PWD/path/vistoolcubicbezierpath.h \ $$PWD/line/operation/visoperation.h \ - $$PWD/line/operation/vistoolflippingbyaxis.h + $$PWD/line/operation/vistoolflippingbyaxis.h \ + $$PWD/line/operation/vistoolmove.h SOURCES += \ $$PWD/visualization.cpp \ @@ -73,4 +74,5 @@ SOURCES += \ $$PWD/path/vistoolcubicbezier.cpp \ $$PWD/path/vistoolcubicbezierpath.cpp \ $$PWD/line/operation/visoperation.cpp \ - $$PWD/line/operation/vistoolflippingbyaxis.cpp + $$PWD/line/operation/vistoolflippingbyaxis.cpp \ + $$PWD/line/operation/vistoolmove.cpp From 4f516c60a66e06605e8292ca00acdcb5a4b2fa91 Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Tue, 4 Oct 2016 17:50:48 +0300 Subject: [PATCH 06/10] For the tool Rotate was missed checking changing a point. --HG-- branch : develop --- src/libs/vtools/dialogs/tools/dialogrotation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/vtools/dialogs/tools/dialogrotation.cpp b/src/libs/vtools/dialogs/tools/dialogrotation.cpp index c4de302fd..9ba34bdc9 100644 --- a/src/libs/vtools/dialogs/tools/dialogrotation.cpp +++ b/src/libs/vtools/dialogs/tools/dialogrotation.cpp @@ -347,7 +347,7 @@ void DialogRotation::SuffixChanged() void DialogRotation::CheckState() { SCASSERT(bOk != nullptr); - bOk->setEnabled(flagAngle && flagName); + bOk->setEnabled(flagAngle && flagName && flagError); SCASSERT(bApply != nullptr); bApply->setEnabled(bOk->isEnabled()); } From 121ef1323da92caab5dc5649d34407da877e620f Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Tue, 4 Oct 2016 17:51:37 +0300 Subject: [PATCH 07/10] Fix building problem on Windows. --HG-- branch : develop --- src/libs/vtools/dialogs/tools/dialogtool.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/vtools/dialogs/tools/dialogtool.h b/src/libs/vtools/dialogs/tools/dialogtool.h index 48df6e3d6..53e4bbb1a 100644 --- a/src/libs/vtools/dialogs/tools/dialogtool.h +++ b/src/libs/vtools/dialogs/tools/dialogtool.h @@ -49,7 +49,7 @@ #include #include -#include "../../visualization/visualization.h" +#include "../vtools/visualization/visualization.h" // Issue on Windows #include "../ifc/xml/vabstractpattern.h" #include "../ifc/ifcdef.h" #include "../vgeometry/vgeometrydef.h" From 4a50f2e3c95682ab36526a317fbd88a71638f449 Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Tue, 4 Oct 2016 17:52:03 +0300 Subject: [PATCH 08/10] Fixed wrong include. --HG-- branch : develop --- src/libs/vtools/tools/drawTools/vdrawtool.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/libs/vtools/tools/drawTools/vdrawtool.h b/src/libs/vtools/tools/drawTools/vdrawtool.h index 192e8e9af..4399e3807 100644 --- a/src/libs/vtools/tools/drawTools/vdrawtool.h +++ b/src/libs/vtools/tools/drawTools/vdrawtool.h @@ -42,7 +42,6 @@ #include #include -#include "../../dialogs/tools/dialogtool.h" #include "../../dialogs/tools/dialogtool.h" #include "../ifc/exception/vexceptionbadid.h" #include "../vabstracttool.h" From ac5331979d12be5309393a9c9b283f2f6fa3a4d6 Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Tue, 4 Oct 2016 17:52:35 +0300 Subject: [PATCH 09/10] Refactoring file libs.pri. --HG-- branch : develop --- src/libs/libs.pri | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/libs/libs.pri b/src/libs/libs.pri index aa39fbe99..f16e4c31b 100644 --- a/src/libs/libs.pri +++ b/src/libs/libs.pri @@ -1,29 +1,29 @@ #VTools static library -INCLUDEPATH += $$PWD/vtools +INCLUDEPATH += $${PWD}/vtools #VWidgets static library -INCLUDEPATH += $$PWD/vwidgets +INCLUDEPATH += $${PWD}/vwidgets #VFormat static library -INCLUDEPATH += $$PWD/vformat +INCLUDEPATH += $${PWD}/vformat #VPatternDB static library -INCLUDEPATH += $$PWD/vpatterndb +INCLUDEPATH += $${PWD}/vpatterndb # Fervor static library -INCLUDEPATH += $$PWD/fervor +INCLUDEPATH += $${PWD}/fervor #VMisc static library -INCLUDEPATH += $$PWD/vmisc +INCLUDEPATH += $${PWD}/vmisc #VGeometry static library -INCLUDEPATH += $$PWD/vgeometry +INCLUDEPATH += $${PWD}/vgeometry # IFC static library -INCLUDEPATH += $$PWD/ifc +INCLUDEPATH += $${PWD}/ifc #VLayout static library -INCLUDEPATH += $$PWD/vlayout +INCLUDEPATH += $${PWD}/vlayout #QMuParser library INCLUDEPATH += $${PWD}/qmuparser From f86bf9edd53e5354588b463655e4ac7267883997 Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Wed, 5 Oct 2016 16:21:33 +0300 Subject: [PATCH 10/10] Lupdate. --HG-- branch : develop --- share/translations/measurements_p0_fr_FR.ts | 28 +- share/translations/measurements_p0_it_IT.ts | 42 +- share/translations/measurements_p10_fr_FR.ts | 26 +- share/translations/measurements_p10_it_IT.ts | 42 +- share/translations/measurements_p11_fr_FR.ts | 26 +- share/translations/measurements_p11_it_IT.ts | 42 +- share/translations/measurements_p12_fr_FR.ts | 26 +- share/translations/measurements_p12_it_IT.ts | 42 +- share/translations/measurements_p13_fr_FR.ts | 26 +- share/translations/measurements_p13_it_IT.ts | 42 +- share/translations/measurements_p14_fr_FR.ts | 26 +- share/translations/measurements_p14_it_IT.ts | 42 +- share/translations/measurements_p15_fr_FR.ts | 26 +- share/translations/measurements_p15_it_IT.ts | 42 +- share/translations/measurements_p16_fr_FR.ts | 26 +- share/translations/measurements_p16_it_IT.ts | 42 +- share/translations/measurements_p17_fr_FR.ts | 26 +- share/translations/measurements_p17_it_IT.ts | 42 +- share/translations/measurements_p18_fr_FR.ts | 26 +- share/translations/measurements_p18_it_IT.ts | 42 +- share/translations/measurements_p19_fr_FR.ts | 26 +- share/translations/measurements_p19_it_IT.ts | 42 +- share/translations/measurements_p1_fr_FR.ts | 26 +- share/translations/measurements_p1_it_IT.ts | 42 +- share/translations/measurements_p20_fr_FR.ts | 26 +- share/translations/measurements_p20_it_IT.ts | 42 +- share/translations/measurements_p20_ru_RU.ts | 2 +- share/translations/measurements_p21_fr_FR.ts | 26 +- share/translations/measurements_p21_it_IT.ts | 42 +- share/translations/measurements_p22_fr_FR.ts | 26 +- share/translations/measurements_p22_it_IT.ts | 42 +- share/translations/measurements_p23_fr_FR.ts | 26 +- share/translations/measurements_p23_it_IT.ts | 42 +- share/translations/measurements_p24_fr_FR.ts | 26 +- share/translations/measurements_p24_it_IT.ts | 42 +- share/translations/measurements_p25_fr_FR.ts | 26 +- share/translations/measurements_p25_it_IT.ts | 42 +- share/translations/measurements_p26_fr_FR.ts | 26 +- share/translations/measurements_p26_it_IT.ts | 42 +- share/translations/measurements_p27_fr_FR.ts | 26 +- share/translations/measurements_p27_it_IT.ts | 42 +- share/translations/measurements_p28_fr_FR.ts | 26 +- share/translations/measurements_p28_it_IT.ts | 42 +- share/translations/measurements_p29_fr_FR.ts | 26 +- share/translations/measurements_p29_it_IT.ts | 42 +- share/translations/measurements_p2_fr_FR.ts | 26 +- share/translations/measurements_p2_it_IT.ts | 42 +- share/translations/measurements_p30_fr_FR.ts | 26 +- share/translations/measurements_p30_it_IT.ts | 42 +- share/translations/measurements_p31_fr_FR.ts | 26 +- share/translations/measurements_p31_it_IT.ts | 42 +- share/translations/measurements_p32_fr_FR.ts | 26 +- share/translations/measurements_p32_it_IT.ts | 42 +- share/translations/measurements_p33_fr_FR.ts | 26 +- share/translations/measurements_p33_it_IT.ts | 42 +- share/translations/measurements_p34_fr_FR.ts | 26 +- share/translations/measurements_p34_it_IT.ts | 42 +- share/translations/measurements_p35_fr_FR.ts | 26 +- share/translations/measurements_p35_it_IT.ts | 42 +- share/translations/measurements_p36_fr_FR.ts | 26 +- share/translations/measurements_p36_it_IT.ts | 42 +- share/translations/measurements_p37_fr_FR.ts | 26 +- share/translations/measurements_p37_it_IT.ts | 42 +- share/translations/measurements_p38_fr_FR.ts | 26 +- share/translations/measurements_p38_it_IT.ts | 42 +- share/translations/measurements_p39_fr_FR.ts | 26 +- share/translations/measurements_p39_it_IT.ts | 42 +- share/translations/measurements_p3_fr_FR.ts | 26 +- share/translations/measurements_p3_it_IT.ts | 42 +- share/translations/measurements_p40_fr_FR.ts | 26 +- share/translations/measurements_p40_it_IT.ts | 42 +- share/translations/measurements_p41_fr_FR.ts | 26 +- share/translations/measurements_p41_it_IT.ts | 42 +- share/translations/measurements_p42_fr_FR.ts | 26 +- share/translations/measurements_p42_it_IT.ts | 42 +- share/translations/measurements_p43_fr_FR.ts | 26 +- share/translations/measurements_p43_it_IT.ts | 42 +- share/translations/measurements_p44_fr_FR.ts | 26 +- share/translations/measurements_p44_it_IT.ts | 42 +- share/translations/measurements_p45_fr_FR.ts | 26 +- share/translations/measurements_p45_it_IT.ts | 42 +- share/translations/measurements_p46_fr_FR.ts | 26 +- share/translations/measurements_p46_it_IT.ts | 42 +- share/translations/measurements_p47_fr_FR.ts | 26 +- share/translations/measurements_p47_it_IT.ts | 42 +- share/translations/measurements_p48_fr_FR.ts | 26 +- share/translations/measurements_p48_it_IT.ts | 42 +- share/translations/measurements_p49_fr_FR.ts | 26 +- share/translations/measurements_p49_it_IT.ts | 42 +- share/translations/measurements_p4_fr_FR.ts | 26 +- share/translations/measurements_p4_it_IT.ts | 42 +- share/translations/measurements_p50_fr_FR.ts | 26 +- share/translations/measurements_p50_it_IT.ts | 42 +- share/translations/measurements_p51_fr_FR.ts | 26 +- share/translations/measurements_p51_it_IT.ts | 42 +- share/translations/measurements_p52_fr_FR.ts | 26 +- share/translations/measurements_p52_it_IT.ts | 42 +- share/translations/measurements_p53_fr_FR.ts | 26 +- share/translations/measurements_p53_it_IT.ts | 42 +- share/translations/measurements_p54_fr_FR.ts | 26 +- share/translations/measurements_p54_it_IT.ts | 42 +- share/translations/measurements_p5_fr_FR.ts | 26 +- share/translations/measurements_p5_it_IT.ts | 42 +- share/translations/measurements_p6_fr_FR.ts | 26 +- share/translations/measurements_p6_it_IT.ts | 42 +- share/translations/measurements_p7_fr_FR.ts | 26 +- share/translations/measurements_p7_it_IT.ts | 42 +- share/translations/measurements_p8_fr_FR.ts | 26 +- share/translations/measurements_p8_it_IT.ts | 42 +- share/translations/measurements_p998_fr_FR.ts | 26 +- share/translations/measurements_p998_it_IT.ts | 42 +- share/translations/measurements_p9_fr_FR.ts | 26 +- share/translations/measurements_p9_it_IT.ts | 42 +- share/translations/valentina.ts | 364 +++++++- share/translations/valentina_cs_CZ.ts | 357 ++++++-- share/translations/valentina_de_DE.ts | 341 +++++++- share/translations/valentina_en_CA.ts | 364 +++++++- share/translations/valentina_en_IN.ts | 364 +++++++- share/translations/valentina_en_US.ts | 360 +++++++- share/translations/valentina_es_ES.ts | 337 +++++++- share/translations/valentina_fi_FI.ts | 357 ++++++-- share/translations/valentina_fr_FR.ts | 430 ++++++++-- share/translations/valentina_he_IL.ts | 357 ++++++-- share/translations/valentina_id_ID.ts | 357 ++++++-- share/translations/valentina_it_IT.ts | 804 +++++++++++++----- share/translations/valentina_nl_NL.ts | 336 +++++++- share/translations/valentina_pt_BR.ts | 353 +++++++- share/translations/valentina_ro_RO.ts | 353 +++++++- share/translations/valentina_ru_RU.ts | 347 +++++++- share/translations/valentina_uk_UA.ts | 332 +++++++- share/translations/valentina_zh_CN.ts | 395 +++++++-- src/libs/vtools/dialogs/tools/dialogarc.ui | 11 +- src/libs/vtools/dialogs/tools/dialogmove.ui | 4 +- .../vtools/dialogs/tools/dialogrotation.ui | 5 +- src/libs/vtools/dialogs/tools/dialogspline.ui | 20 +- .../vtools/dialogs/tools/dialogsplinepath.ui | 20 +- 136 files changed, 7971 insertions(+), 2809 deletions(-) diff --git a/share/translations/measurements_p0_fr_FR.ts b/share/translations/measurements_p0_fr_FR.ts index 653464f52..0875318a8 100644 --- a/share/translations/measurements_p0_fr_FR.ts +++ b/share/translations/measurements_p0_fr_FR.ts @@ -2677,7 +2677,7 @@ Bustpoint to Bustpoint Full measurement name. - D'une pointe à l'autre + D'une pointe de sein à l'autre @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps). @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p0_it_IT.ts b/share/translations/measurements_p0_it_IT.ts index b8d7ff32c..16c97c088 100644 --- a/share/translations/measurements_p0_it_IT.ts +++ b/share/translations/measurements_p0_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p10_fr_FR.ts b/share/translations/measurements_p10_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p10_fr_FR.ts +++ b/share/translations/measurements_p10_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p10_it_IT.ts b/share/translations/measurements_p10_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p10_it_IT.ts +++ b/share/translations/measurements_p10_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p11_fr_FR.ts b/share/translations/measurements_p11_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p11_fr_FR.ts +++ b/share/translations/measurements_p11_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p11_it_IT.ts b/share/translations/measurements_p11_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p11_it_IT.ts +++ b/share/translations/measurements_p11_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p12_fr_FR.ts b/share/translations/measurements_p12_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p12_fr_FR.ts +++ b/share/translations/measurements_p12_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p12_it_IT.ts b/share/translations/measurements_p12_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p12_it_IT.ts +++ b/share/translations/measurements_p12_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p13_fr_FR.ts b/share/translations/measurements_p13_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p13_fr_FR.ts +++ b/share/translations/measurements_p13_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p13_it_IT.ts b/share/translations/measurements_p13_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p13_it_IT.ts +++ b/share/translations/measurements_p13_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p14_fr_FR.ts b/share/translations/measurements_p14_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p14_fr_FR.ts +++ b/share/translations/measurements_p14_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p14_it_IT.ts b/share/translations/measurements_p14_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p14_it_IT.ts +++ b/share/translations/measurements_p14_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p15_fr_FR.ts b/share/translations/measurements_p15_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p15_fr_FR.ts +++ b/share/translations/measurements_p15_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p15_it_IT.ts b/share/translations/measurements_p15_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p15_it_IT.ts +++ b/share/translations/measurements_p15_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p16_fr_FR.ts b/share/translations/measurements_p16_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p16_fr_FR.ts +++ b/share/translations/measurements_p16_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p16_it_IT.ts b/share/translations/measurements_p16_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p16_it_IT.ts +++ b/share/translations/measurements_p16_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p17_fr_FR.ts b/share/translations/measurements_p17_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p17_fr_FR.ts +++ b/share/translations/measurements_p17_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p17_it_IT.ts b/share/translations/measurements_p17_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p17_it_IT.ts +++ b/share/translations/measurements_p17_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p18_fr_FR.ts b/share/translations/measurements_p18_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p18_fr_FR.ts +++ b/share/translations/measurements_p18_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p18_it_IT.ts b/share/translations/measurements_p18_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p18_it_IT.ts +++ b/share/translations/measurements_p18_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p19_fr_FR.ts b/share/translations/measurements_p19_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p19_fr_FR.ts +++ b/share/translations/measurements_p19_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p19_it_IT.ts b/share/translations/measurements_p19_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p19_it_IT.ts +++ b/share/translations/measurements_p19_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p1_fr_FR.ts b/share/translations/measurements_p1_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p1_fr_FR.ts +++ b/share/translations/measurements_p1_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p1_it_IT.ts b/share/translations/measurements_p1_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p1_it_IT.ts +++ b/share/translations/measurements_p1_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p20_fr_FR.ts b/share/translations/measurements_p20_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p20_fr_FR.ts +++ b/share/translations/measurements_p20_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p20_it_IT.ts b/share/translations/measurements_p20_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p20_it_IT.ts +++ b/share/translations/measurements_p20_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p20_ru_RU.ts b/share/translations/measurements_p20_ru_RU.ts index e3a2ff6e2..a1c1bc975 100644 --- a/share/translations/measurements_p20_ru_RU.ts +++ b/share/translations/measurements_p20_ru_RU.ts @@ -7,7 +7,7 @@ height Name in a formula. Don't use math symbols and space in name!!!! - рост + Рост diff --git a/share/translations/measurements_p21_fr_FR.ts b/share/translations/measurements_p21_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p21_fr_FR.ts +++ b/share/translations/measurements_p21_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p21_it_IT.ts b/share/translations/measurements_p21_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p21_it_IT.ts +++ b/share/translations/measurements_p21_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p22_fr_FR.ts b/share/translations/measurements_p22_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p22_fr_FR.ts +++ b/share/translations/measurements_p22_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p22_it_IT.ts b/share/translations/measurements_p22_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p22_it_IT.ts +++ b/share/translations/measurements_p22_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p23_fr_FR.ts b/share/translations/measurements_p23_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p23_fr_FR.ts +++ b/share/translations/measurements_p23_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p23_it_IT.ts b/share/translations/measurements_p23_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p23_it_IT.ts +++ b/share/translations/measurements_p23_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p24_fr_FR.ts b/share/translations/measurements_p24_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p24_fr_FR.ts +++ b/share/translations/measurements_p24_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p24_it_IT.ts b/share/translations/measurements_p24_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p24_it_IT.ts +++ b/share/translations/measurements_p24_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p25_fr_FR.ts b/share/translations/measurements_p25_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p25_fr_FR.ts +++ b/share/translations/measurements_p25_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p25_it_IT.ts b/share/translations/measurements_p25_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p25_it_IT.ts +++ b/share/translations/measurements_p25_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p26_fr_FR.ts b/share/translations/measurements_p26_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p26_fr_FR.ts +++ b/share/translations/measurements_p26_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p26_it_IT.ts b/share/translations/measurements_p26_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p26_it_IT.ts +++ b/share/translations/measurements_p26_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p27_fr_FR.ts b/share/translations/measurements_p27_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p27_fr_FR.ts +++ b/share/translations/measurements_p27_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p27_it_IT.ts b/share/translations/measurements_p27_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p27_it_IT.ts +++ b/share/translations/measurements_p27_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p28_fr_FR.ts b/share/translations/measurements_p28_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p28_fr_FR.ts +++ b/share/translations/measurements_p28_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p28_it_IT.ts b/share/translations/measurements_p28_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p28_it_IT.ts +++ b/share/translations/measurements_p28_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p29_fr_FR.ts b/share/translations/measurements_p29_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p29_fr_FR.ts +++ b/share/translations/measurements_p29_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p29_it_IT.ts b/share/translations/measurements_p29_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p29_it_IT.ts +++ b/share/translations/measurements_p29_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p2_fr_FR.ts b/share/translations/measurements_p2_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p2_fr_FR.ts +++ b/share/translations/measurements_p2_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p2_it_IT.ts b/share/translations/measurements_p2_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p2_it_IT.ts +++ b/share/translations/measurements_p2_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p30_fr_FR.ts b/share/translations/measurements_p30_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p30_fr_FR.ts +++ b/share/translations/measurements_p30_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p30_it_IT.ts b/share/translations/measurements_p30_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p30_it_IT.ts +++ b/share/translations/measurements_p30_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p31_fr_FR.ts b/share/translations/measurements_p31_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p31_fr_FR.ts +++ b/share/translations/measurements_p31_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p31_it_IT.ts b/share/translations/measurements_p31_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p31_it_IT.ts +++ b/share/translations/measurements_p31_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p32_fr_FR.ts b/share/translations/measurements_p32_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p32_fr_FR.ts +++ b/share/translations/measurements_p32_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p32_it_IT.ts b/share/translations/measurements_p32_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p32_it_IT.ts +++ b/share/translations/measurements_p32_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p33_fr_FR.ts b/share/translations/measurements_p33_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p33_fr_FR.ts +++ b/share/translations/measurements_p33_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p33_it_IT.ts b/share/translations/measurements_p33_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p33_it_IT.ts +++ b/share/translations/measurements_p33_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p34_fr_FR.ts b/share/translations/measurements_p34_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p34_fr_FR.ts +++ b/share/translations/measurements_p34_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p34_it_IT.ts b/share/translations/measurements_p34_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p34_it_IT.ts +++ b/share/translations/measurements_p34_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p35_fr_FR.ts b/share/translations/measurements_p35_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p35_fr_FR.ts +++ b/share/translations/measurements_p35_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p35_it_IT.ts b/share/translations/measurements_p35_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p35_it_IT.ts +++ b/share/translations/measurements_p35_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p36_fr_FR.ts b/share/translations/measurements_p36_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p36_fr_FR.ts +++ b/share/translations/measurements_p36_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p36_it_IT.ts b/share/translations/measurements_p36_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p36_it_IT.ts +++ b/share/translations/measurements_p36_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p37_fr_FR.ts b/share/translations/measurements_p37_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p37_fr_FR.ts +++ b/share/translations/measurements_p37_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p37_it_IT.ts b/share/translations/measurements_p37_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p37_it_IT.ts +++ b/share/translations/measurements_p37_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p38_fr_FR.ts b/share/translations/measurements_p38_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p38_fr_FR.ts +++ b/share/translations/measurements_p38_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p38_it_IT.ts b/share/translations/measurements_p38_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p38_it_IT.ts +++ b/share/translations/measurements_p38_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p39_fr_FR.ts b/share/translations/measurements_p39_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p39_fr_FR.ts +++ b/share/translations/measurements_p39_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p39_it_IT.ts b/share/translations/measurements_p39_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p39_it_IT.ts +++ b/share/translations/measurements_p39_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p3_fr_FR.ts b/share/translations/measurements_p3_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p3_fr_FR.ts +++ b/share/translations/measurements_p3_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p3_it_IT.ts b/share/translations/measurements_p3_it_IT.ts index 27f0ce3ec..5f88bd2ce 100644 --- a/share/translations/measurements_p3_it_IT.ts +++ b/share/translations/measurements_p3_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p40_fr_FR.ts b/share/translations/measurements_p40_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p40_fr_FR.ts +++ b/share/translations/measurements_p40_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p40_it_IT.ts b/share/translations/measurements_p40_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p40_it_IT.ts +++ b/share/translations/measurements_p40_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p41_fr_FR.ts b/share/translations/measurements_p41_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p41_fr_FR.ts +++ b/share/translations/measurements_p41_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p41_it_IT.ts b/share/translations/measurements_p41_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p41_it_IT.ts +++ b/share/translations/measurements_p41_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p42_fr_FR.ts b/share/translations/measurements_p42_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p42_fr_FR.ts +++ b/share/translations/measurements_p42_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p42_it_IT.ts b/share/translations/measurements_p42_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p42_it_IT.ts +++ b/share/translations/measurements_p42_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p43_fr_FR.ts b/share/translations/measurements_p43_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p43_fr_FR.ts +++ b/share/translations/measurements_p43_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p43_it_IT.ts b/share/translations/measurements_p43_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p43_it_IT.ts +++ b/share/translations/measurements_p43_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p44_fr_FR.ts b/share/translations/measurements_p44_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p44_fr_FR.ts +++ b/share/translations/measurements_p44_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p44_it_IT.ts b/share/translations/measurements_p44_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p44_it_IT.ts +++ b/share/translations/measurements_p44_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p45_fr_FR.ts b/share/translations/measurements_p45_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p45_fr_FR.ts +++ b/share/translations/measurements_p45_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p45_it_IT.ts b/share/translations/measurements_p45_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p45_it_IT.ts +++ b/share/translations/measurements_p45_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p46_fr_FR.ts b/share/translations/measurements_p46_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p46_fr_FR.ts +++ b/share/translations/measurements_p46_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p46_it_IT.ts b/share/translations/measurements_p46_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p46_it_IT.ts +++ b/share/translations/measurements_p46_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p47_fr_FR.ts b/share/translations/measurements_p47_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p47_fr_FR.ts +++ b/share/translations/measurements_p47_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p47_it_IT.ts b/share/translations/measurements_p47_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p47_it_IT.ts +++ b/share/translations/measurements_p47_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p48_fr_FR.ts b/share/translations/measurements_p48_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p48_fr_FR.ts +++ b/share/translations/measurements_p48_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p48_it_IT.ts b/share/translations/measurements_p48_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p48_it_IT.ts +++ b/share/translations/measurements_p48_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p49_fr_FR.ts b/share/translations/measurements_p49_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p49_fr_FR.ts +++ b/share/translations/measurements_p49_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p49_it_IT.ts b/share/translations/measurements_p49_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p49_it_IT.ts +++ b/share/translations/measurements_p49_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p4_fr_FR.ts b/share/translations/measurements_p4_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p4_fr_FR.ts +++ b/share/translations/measurements_p4_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p4_it_IT.ts b/share/translations/measurements_p4_it_IT.ts index 27f0ce3ec..5f88bd2ce 100644 --- a/share/translations/measurements_p4_it_IT.ts +++ b/share/translations/measurements_p4_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p50_fr_FR.ts b/share/translations/measurements_p50_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p50_fr_FR.ts +++ b/share/translations/measurements_p50_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p50_it_IT.ts b/share/translations/measurements_p50_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p50_it_IT.ts +++ b/share/translations/measurements_p50_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p51_fr_FR.ts b/share/translations/measurements_p51_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p51_fr_FR.ts +++ b/share/translations/measurements_p51_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p51_it_IT.ts b/share/translations/measurements_p51_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p51_it_IT.ts +++ b/share/translations/measurements_p51_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p52_fr_FR.ts b/share/translations/measurements_p52_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p52_fr_FR.ts +++ b/share/translations/measurements_p52_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p52_it_IT.ts b/share/translations/measurements_p52_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p52_it_IT.ts +++ b/share/translations/measurements_p52_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p53_fr_FR.ts b/share/translations/measurements_p53_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p53_fr_FR.ts +++ b/share/translations/measurements_p53_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p53_it_IT.ts b/share/translations/measurements_p53_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p53_it_IT.ts +++ b/share/translations/measurements_p53_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p54_fr_FR.ts b/share/translations/measurements_p54_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p54_fr_FR.ts +++ b/share/translations/measurements_p54_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p54_it_IT.ts b/share/translations/measurements_p54_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p54_it_IT.ts +++ b/share/translations/measurements_p54_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p5_fr_FR.ts b/share/translations/measurements_p5_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p5_fr_FR.ts +++ b/share/translations/measurements_p5_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p5_it_IT.ts b/share/translations/measurements_p5_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p5_it_IT.ts +++ b/share/translations/measurements_p5_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p6_fr_FR.ts b/share/translations/measurements_p6_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p6_fr_FR.ts +++ b/share/translations/measurements_p6_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p6_it_IT.ts b/share/translations/measurements_p6_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p6_it_IT.ts +++ b/share/translations/measurements_p6_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p7_fr_FR.ts b/share/translations/measurements_p7_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p7_fr_FR.ts +++ b/share/translations/measurements_p7_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p7_it_IT.ts b/share/translations/measurements_p7_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p7_it_IT.ts +++ b/share/translations/measurements_p7_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p8_fr_FR.ts b/share/translations/measurements_p8_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p8_fr_FR.ts +++ b/share/translations/measurements_p8_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p8_it_IT.ts b/share/translations/measurements_p8_it_IT.ts index 05158fadb..30f1b8054 100644 --- a/share/translations/measurements_p8_it_IT.ts +++ b/share/translations/measurements_p8_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p998_fr_FR.ts b/share/translations/measurements_p998_fr_FR.ts index 1a891d188..4c594dedd 100644 --- a/share/translations/measurements_p998_fr_FR.ts +++ b/share/translations/measurements_p998_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p998_it_IT.ts b/share/translations/measurements_p998_it_IT.ts index 7ebf0c92b..27660f493 100644 --- a/share/translations/measurements_p998_it_IT.ts +++ b/share/translations/measurements_p998_it_IT.ts @@ -409,7 +409,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -847,61 +847,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -925,37 +925,37 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -967,25 +967,25 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/measurements_p9_fr_FR.ts b/share/translations/measurements_p9_fr_FR.ts index 8d403275a..30ced813c 100644 --- a/share/translations/measurements_p9_fr_FR.ts +++ b/share/translations/measurements_p9_fr_FR.ts @@ -2689,37 +2689,37 @@ bustpoint_to_neck_side Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_lateral Bustpoint to Neck Side Full measurement name. - + De la pointe de sein à l'encolure, latéral From Neck Side to Bustpoint. Full measurement description. - + De point d'encolure latéral à la pointe de sein. bustpoint_to_lowbust Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_sous_mammaire Bustpoint to Lowbust Full measurement name. - + De la pointe de sein à ligne sous-mammaire From Bustpoint down to Lowbust level, following curve of bust or chest. Full measurement description. - + Mesure de la courbe allant de la pointe de sein à la ligne sous-mammaire. @@ -2731,13 +2731,13 @@ Bustpoint to Waist level Full measurement name. - + De la pointe de sein à la taille From Bustpoint to straight down to Waist level, forming a straight line (not curving along the body). Full measurement description. - + Distance allant de la pointe de sein vers la ligne de taille, en ligne droite (sans suivre le corps) @@ -2749,31 +2749,31 @@ Bustpoint to Bustpoint, half Full measurement name. - + Demi-écart entre pointes de sein Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2). Full measurement description. - + Moitié 'D'une pointe de sein à l'autre' ('D'une pointe de sein à l'autre' / 2'). bustpoint_neck_side_to_waist Name in a formula. Don't use math symbols and space in name!!!! - + pointe_sein_encolure_cote_taille Bustpoint, Neck Side to Waist level Full measurement name. - + Pointe de sein, encolure latéral à la taille From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + 'Bustpoint to Waist level'). Full measurement description. - + De l'encolure latéral à la taille en passant par la pointe de sein. ('De la pointe de sein à l'encolure, latéral' + 'De la pointe de sein à la taille'). diff --git a/share/translations/measurements_p9_it_IT.ts b/share/translations/measurements_p9_it_IT.ts index 2aae9e6eb..31098e057 100644 --- a/share/translations/measurements_p9_it_IT.ts +++ b/share/translations/measurements_p9_it_IT.ts @@ -829,61 +829,61 @@ Circumference of Neck midsection, about halfway between jaw and torso. Full measurement description. - + Circonferenza della parte media del collo, circa a metà strada tra la mascella e il tronco. neck_circ Name in a formula. Don't use math symbols and space in name!!!! - + collo_circ Neck circumference Full measurement name. - + Circonferenza collo Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front. Full measurement description. - + Circonferenza collo alla base del Collo, toccando Dietro il Collo, i Lati del Collo e Parte Anteriore del Collo. highbust_circ Name in a formula. Don't use math symbols and space in name!!!! - + torace_circ Highbust circumference Full measurement name. - + Circonferenza torace Circumference at Highbust, following shortest distance between Armfolds across chest, high under armpits. Full measurement description. - + Circonferenza del torace, seguendo la distanza più corta tra le braccia incrociate sul petto, la parte superiore sotto le ascelle. bust_circ Name in a formula. Don't use math symbols and space in name!!!! - + busto_circ Bust circumference Full measurement name. - + Circonferenza busto Circumference around Bust, parallel to floor. Full measurement description. - + Circonferenza attorno al busto, parallelo al pavimento. @@ -907,31 +907,31 @@ rib_circ Name in a formula. Don't use math symbols and space in name!!!! - + costola_circ Rib circumference Full measurement name. - + Circonferenza costola Circumference around Ribs at level of the lowest rib at the side, parallel to floor. Full measurement description. - + Circonferenza attorno alle costole, all'altezza della costola più bassa laterale, parallelo al pavimento. waist_circ Name in a formula. Don't use math symbols and space in name!!!! - + vita_circ Waist circumference Full measurement name. - + Circonferenza vita @@ -943,13 +943,13 @@ Highhip circumference Full measurement name. - + Circonferenza parte alta delle anche Circumference around Waist, following natural contours. Waists are typically higher in back. Full measurement description. - + Circonferenza attorno alle anche, seguendo il contorno naturale. Le anche di solito sono più alte dietro. @@ -961,7 +961,7 @@ Height: Waist Back Full measurement name. - + Altezza: Anca Posteriore @@ -973,19 +973,19 @@ Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor. Full measurement description. - + Circonferenza attorno alle Anche, dove l'Addome sporge maggiormente, parallelo al pavimento. hip_circ Name in a formula. Don't use math symbols and space in name!!!! - + anche_circ Hip circumference Full measurement name. - + Circonferenza anche diff --git a/share/translations/valentina.ts b/share/translations/valentina.ts index ecd283875..63702f473 100644 --- a/share/translations/valentina.ts +++ b/share/translations/valentina.ts @@ -321,19 +321,19 @@ Detail Fabric - Fabric + Fabric Lining - Lining + Lining Interfacing - Interfacing + Interfacing Interlining - Interlining + Interlining @@ -613,7 +613,7 @@ Calulation - Calulation + Calulation First angle: @@ -1468,6 +1468,22 @@ You can choose one of the predefined materials or enter a new one + You can choose one of the predefined materials or enter a new one + + + Forbid piece be mirrored in a layout. + + + + Forbid flipping + + + + Letter of pattern piece + + + + Name can't be empty @@ -1603,6 +1619,10 @@ Functions + Functions + + + Lengths to control points @@ -1748,6 +1768,76 @@ Space + + DialogFlippingByAxis + + Dialog + Dialog + + + Origin point: + + + + Suffix: + Suffix: + + + Axis type: + + + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Vertical axis + + + + Horizontal axis + + + + + DialogFlippingByLine + + Dialog + Dialog + + + First line point: + First line point: + + + Suffix: + Suffix: + + + Second line point: + Second line point: + + + Select first line point + + + + Select first line point that is not part of the list of objects + + + + Select second line point + + + + Select second line point that is not part of the list of objects + + + DialogGroup @@ -2167,6 +2257,10 @@ Search Search + + Curves control point lengths + + DialogLayoutProgress @@ -2413,12 +2507,12 @@ Apply settings anyway? Printer: - + Printer: None Printer - None + None @@ -2758,6 +2852,53 @@ Apply settings anyway? Uncheck all + + DialogMove + + Dialog + Dialog + + + Angle: + Angle: + + + Formula wizard + Formula wizard + + + Value + Value + + + 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> + + + Length: + Length: + + + Suffix: + Suffix: + + + Edit angle + Edit angle + + + Edit length + Edit length + + + Calculation + Calculation + + DialogNewMeasurements @@ -3103,7 +3244,7 @@ Apply settings anyway? Created: - Created: + Created: Pattern size: @@ -3111,14 +3252,22 @@ Apply settings anyway? Show measurements - Show measurements + Show measurements Show date of creation - Show date of creation + Show date of creation Use %1 and %2 to insert pattern size and height + Use %1 and %2 to insert pattern size and height + + + Show date of layout creation (%1) + + + + Show measurements file @@ -3266,7 +3415,7 @@ Apply settings anyway? Type: - Type: + Type: @@ -3778,7 +3927,7 @@ Apply settings anyway? Calulation - Calulation + Calulation <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -3796,6 +3945,18 @@ Apply settings anyway? Edit angle Edit angle + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Calculation + Calculation + DialogSaveLAyout @@ -3849,7 +4010,7 @@ Apply settings anyway? Path to destination folder - + Path to destination folder @@ -4153,7 +4314,7 @@ Apply settings anyway? Calulation - Calulation + Calulation <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -4183,6 +4344,10 @@ Apply settings anyway? Length can't be negative Length can't be negative + + Calculation + Calculation + DialogSplinePath @@ -4276,7 +4441,7 @@ Apply settings anyway? Calulation - Calulation + Calulation <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -4310,6 +4475,10 @@ Apply settings anyway? Not used Not used + + Calculation + Calculation + DialogTool @@ -5549,7 +5718,7 @@ Do you want to save your changes? Measurements was synced - Measurements was synced + Measurements was synced Couldn't sync measurements. @@ -5713,7 +5882,7 @@ Do you want to save your changes? Measurements was changed. Do you want to sync measurements now? - Measurements was changed. Do you want to sync measurements now? + Measurements was changed. Do you want to sync measurements now? Curve tool which uses point as control handle @@ -5811,6 +5980,30 @@ Do you want to save your changes? The measurements file <br/><br/> <b>%1</b> <br/><br/> could not be found. Do you want to update the file location? The measurements file <br/><br/> <b>%1</b> <br/><br/> could not be found. Do you want to update the file location? + + Flipping objects by line + + + + Flipping objects by axis + + + + Move objects + + + + Measurements were changed. Do you want to sync measurements now? + + + + Gradation doesn't support inches + + + + Measurements have been synced + + MainWindowsNoGUI @@ -5896,7 +6089,7 @@ Do you want to save your changes? Can't create path - + Can't create path @@ -5938,6 +6131,13 @@ Do you want to save your changes? move spline path + + OperationMoveLabel + + move point label + move point label + + PathPage @@ -6021,14 +6221,26 @@ Do you want to save your changes? All user defined materials have been deleted! - + All user defined materials have been deleted! User defined materials - + User defined materials Delete all + Delete all + + + Workpiece + + + + Forbid flipping + + + + By default forbid flipping for all workpieces @@ -6360,7 +6572,7 @@ Do you want to save your changes? RotationMoveLabel move point label - move point label + move point label @@ -6739,15 +6951,15 @@ Do you want to save your changes? Individual measurements (*.vit);;Standard measurements (*.vst);;All files (*.*) - Individual measurements (*.vit);;Standard measurements (*.vst);;All files (*.*) + Individual measurements (*.vit);;Standard measurements (*.vst);;All files (*.*) Standard measurements (*.vst);;Individual measurements (*.vit);;All files (*.*) - Standard measurements (*.vst);;Individual measurements (*.vit);;All files (*.*) + Standard measurements (*.vst);;Individual measurements (*.vit);;All files (*.*) Measurements (*.vst *.vit);;All files (*.*) - Measurements (*.vst *.vit);;All files (*.*) + Measurements (*.vst *.vit);;All files (*.*) Failed to lock. This file already opened in another window. @@ -6976,6 +7188,10 @@ Do you want to save your changes? Size: Size: + + All files + + TapeConfigDialog @@ -7935,6 +8151,18 @@ Do you want to save your changes? Unknown operation type '%1'. Unknown operation type '%1'. + + Error creating or updating operation of flipping by line + + + + Error creating or updating operation of flipping by axis + + + + Error creating or updating operation of moving + + VPatternConverter @@ -7974,10 +8202,18 @@ Do you want to save your changes? on Fold - on Fold + on Fold Cut + Cut + + + cut + + + + on fold @@ -8266,6 +8502,30 @@ Do you want to save your changes? Suffix Suffix + + Vertical axis + + + + Horizontal axis + + + + Tool move + + + + Tool flipping by line + + + + Tool flipping by axis + + + + Axis type + + VToolUnionDetails @@ -9373,16 +9633,36 @@ Do you want to save your changes? acosh hyperbolic arcus cosine function - acosh + acosh size placeholder - + size height placeholder + height + + + C1LengthSpl_ + Left symbol _ in the name + + + + C2LengthSpl_ + Left symbol _ in the name + + + + C1LengthSplPath + Do not add symbol _ to the end of the name + + + + C2LengthSplPath + Do not add symbol _ to the end of the name @@ -9418,6 +9698,22 @@ Do you want to save your changes? Unnamed Unnamed + + Select all + + + + Select none + + + + select all details + + + + select none details + + VWidgetGroups @@ -9474,6 +9770,20 @@ Do you want to save your changes? <b>Intersection line and axis</b>: angle = %1°; <b>Shift</b> - sticking angle, <b>Enter</b> - finish creation + + VisToolMove + + Length = %1%2, angle = %3°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + + + VisToolRotation + + Rotating angle = %1°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + VisToolSpline diff --git a/share/translations/valentina_cs_CZ.ts b/share/translations/valentina_cs_CZ.ts index 8cf87b379..90cf945a8 100644 --- a/share/translations/valentina_cs_CZ.ts +++ b/share/translations/valentina_cs_CZ.ts @@ -600,10 +600,6 @@ Value Hodnota - - Calulation - - First angle: @@ -1415,6 +1411,22 @@ You can choose one of the predefined materials or enter a new one + + Forbid piece be mirrored in a layout. + + + + Forbid flipping + + + + Letter of pattern piece + + + + Name can't be empty + + DialogEditWrongFormula @@ -1538,6 +1550,10 @@ Functions + + Lengths to control points + + DialogEndLine @@ -1681,6 +1697,76 @@ + + DialogFlippingByAxis + + Dialog + Dialog + + + Origin point: + + + + Suffix: + + + + Axis type: + + + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Vertical axis + + + + Horizontal axis + + + + + DialogFlippingByLine + + Dialog + Dialog + + + First line point: + + + + Suffix: + + + + Second line point: + + + + Select first line point + + + + Select first line point that is not part of the list of objects + + + + Select second line point + + + + Select second line point that is not part of the list of objects + + + DialogGroup @@ -2088,6 +2174,10 @@ Search + + Curves control point lengths + + DialogLayoutProgress @@ -2654,6 +2744,49 @@ Apply settings anyway? + + DialogMove + + Dialog + Dialog + + + Angle: + + + + Formula wizard + + + + Value + Hodnota + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + <html><head/><body><p>Ukázat celý výpočet v okně se zprávami</p></body></html> + + + Length: + + + + Suffix: + + + + Edit angle + + + + Edit length + + + + Calculation + + + DialogNewMeasurements @@ -2993,26 +3126,22 @@ Apply settings anyway? Customer name: - - Created: - - Pattern size: - - Show measurements - - - - Show date of creation - - Use %1 and %2 to insert pattern size and height + + Show date of layout creation (%1) + + + + Show measurements file + + DialogPatternXmlEdit @@ -3612,10 +3741,6 @@ Apply settings anyway? Value Hodnota - - Calulation - - <html><head/><body><p>Show full calculation in message box</p></body></html> <html><head/><body><p>Ukázat celý výpočet v okně se zprávami</p></body></html> @@ -3632,6 +3757,18 @@ Apply settings anyway? Edit angle + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Calculation + + DialogSaveLAyout @@ -3959,10 +4096,6 @@ Apply settings anyway? Value Hodnota - - Calulation - - <html><head/><body><p>Show full calculation in message box</p></body></html> <html><head/><body><p>Ukázat celý výpočet v okně se zprávami</p></body></html> @@ -3991,6 +4124,10 @@ Apply settings anyway? Length can't be negative + + Calculation + + DialogSplinePath @@ -4074,10 +4211,6 @@ Apply settings anyway? Value Hodnota - - Calulation - - <html><head/><body><p>Show full calculation in message box</p></body></html> <html><head/><body><p>Ukázat celý výpočet v okně se zprávami</p></body></html> @@ -4110,6 +4243,10 @@ Apply settings anyway? Not used + + Calculation + + DialogTool @@ -5294,10 +5431,6 @@ Chcete uložit své změny? Measurement files types have not match. - - Measurements was synced - - Couldn't sync measurements. @@ -5454,10 +5587,6 @@ Chcete uložit své změny? (read only) - - Measurements was changed. Do you want to sync measurements now? - - Curve tool which uses point as control handle @@ -5546,6 +5675,30 @@ Chcete uložit své změny? The measurements file <br/><br/> <b>%1</b> <br/><br/> could not be found. Do you want to update the file location? + + Flipping objects by line + + + + Flipping objects by axis + + + + Move objects + + + + Measurements were changed. Do you want to sync measurements now? + + + + Gradation doesn't support inches + + + + Measurements have been synced + + MainWindowsNoGUI @@ -5653,6 +5806,13 @@ Chcete uložit své změny? + + OperationMoveLabel + + move point label + + + PathPage @@ -5746,6 +5906,18 @@ Chcete uložit své změny? Delete all + + Workpiece + + + + Forbid flipping + + + + By default forbid flipping for all workpieces + + QApplication @@ -6071,13 +6243,6 @@ Chcete uložit své změny? - - RotationMoveLabel - - move point label - - - SaveDetailOptions @@ -6443,18 +6608,6 @@ Do you want to save your changes? Ctrl+G - - 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. @@ -6650,6 +6803,10 @@ Do you want to save your changes? Size: + + All files + + TapeConfigDialog @@ -7533,6 +7690,18 @@ Do you want to save your changes? Unknown operation type '%1'. + + Error creating or updating operation of flipping by line + + + + Error creating or updating operation of flipping by axis + + + + Error creating or updating operation of moving + + VPatternConverter @@ -7563,11 +7732,11 @@ Do you want to save your changes? VTextManager - on Fold + cut - Cut + on fold @@ -7856,6 +8025,30 @@ Do you want to save your changes? Suffix + + Vertical axis + + + + Horizontal axis + + + + Tool move + + + + Tool flipping by line + + + + Tool flipping by axis + + + + Axis type + + VToolUnionDetails @@ -8950,6 +9143,26 @@ Do you want to save your changes? placeholder + + C1LengthSpl_ + Left symbol _ in the name + + + + C2LengthSpl_ + Left symbol _ in the name + + + + C1LengthSplPath + Do not add symbol _ to the end of the name + + + + C2LengthSplPath + Do not add symbol _ to the end of the name + + VVITConverter @@ -8983,6 +9196,22 @@ Do you want to save your changes? Unnamed + + Select all + + + + Select none + + + + select all details + + + + select none details + + VWidgetGroups @@ -9035,6 +9264,20 @@ Do you want to save your changes? <b>Průnik čáry a osy</b>: úhel = %1°; <b>Shift</b> - přilnutí úhlů, <b>Enter</b> - dokončit vytváření + + VisToolMove + + Length = %1%2, angle = %3°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + + + VisToolRotation + + Rotating angle = %1°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + VisToolSpline diff --git a/share/translations/valentina_de_DE.ts b/share/translations/valentina_de_DE.ts index 824fdb336..a27a998e5 100644 --- a/share/translations/valentina_de_DE.ts +++ b/share/translations/valentina_de_DE.ts @@ -286,7 +286,7 @@ The text appears under the icon (recommended for beginners). - + Der Text wird unter dem Symbol angezeigt (empfohlen für Anfänger). @@ -321,7 +321,7 @@ Detail Fabric - Stoff + Stoff Lining @@ -613,7 +613,7 @@ Calulation - Berechnung + Berechnung First angle: @@ -1454,6 +1454,22 @@ You can choose one of the predefined materials or enter a new one + + Forbid piece be mirrored in a layout. + + + + Forbid flipping + + + + Letter of pattern piece + + + + Name can't be empty + + DialogEditWrongFormula @@ -1589,6 +1605,10 @@ Functions + + Lengths to control points + + DialogEndLine @@ -1732,6 +1752,76 @@ Leertaste + + DialogFlippingByAxis + + Dialog + Dialog + + + Origin point: + + + + Suffix: + + + + Axis type: + + + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Vertical axis + + + + Horizontal axis + + + + + DialogFlippingByLine + + Dialog + Dialog + + + First line point: + Punkt 1 der Linie: + + + Suffix: + + + + Second line point: + Punkt 2 der Linie: + + + Select first line point + + + + Select first line point that is not part of the list of objects + + + + Select second line point + + + + Select second line point that is not part of the list of objects + + + DialogGroup @@ -2151,6 +2241,10 @@ Search Suche + + Curves control point lengths + + DialogLayoutProgress @@ -2741,6 +2835,53 @@ Einstellungen trotzdem anwenden? Alle deaktivieren + + DialogMove + + Dialog + Dialog + + + Angle: + Winkel: + + + Formula wizard + + + + Value + Wert + + + Calulation + Berechnung + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + Length: + Länge: + + + Suffix: + + + + Edit angle + Winkel bearbeiten + + + Edit length + Länge ändern + + + Calculation + Berechnung + + DialogNewMeasurements @@ -3086,7 +3227,7 @@ Einstellungen trotzdem anwenden? Created: - Erstellt: + Erstellt: Pattern size: @@ -3094,16 +3235,24 @@ Einstellungen trotzdem anwenden? Show measurements - Maße anzeigen + Maße anzeigen Show date of creation - Erstelldatum anzeigen + Erstelldatum anzeigen Use %1 and %2 to insert pattern size and height + + Show date of layout creation (%1) + + + + Show measurements file + + DialogPatternXmlEdit @@ -3757,7 +3906,7 @@ Einstellungen trotzdem anwenden? Calulation - Berechnung + Berechnung <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -3775,6 +3924,18 @@ Einstellungen trotzdem anwenden? Edit angle Winkel bearbeiten + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Calculation + Berechnung + DialogSaveLAyout @@ -4128,7 +4289,7 @@ Einstellungen trotzdem anwenden? Calulation - Berechnung + Berechnung <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -4158,6 +4319,10 @@ Einstellungen trotzdem anwenden? Length can't be negative Länge kann nicht negativ sein + + Calculation + Berechnung + DialogSplinePath @@ -4251,7 +4416,7 @@ Einstellungen trotzdem anwenden? Calulation - Berechnung + Berechnung <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -4285,6 +4450,10 @@ Einstellungen trotzdem anwenden? Not used Nicht verwendet + + Calculation + Berechnung + DialogTool @@ -5524,7 +5693,7 @@ Sollen die Änderungen gespeichert werden? Measurements was synced - Maße wurden synchronisiert + Maße wurden synchronisiert Couldn't sync measurements. @@ -5688,7 +5857,7 @@ Sollen die Änderungen gespeichert werden? Measurements was changed. Do you want to sync measurements now? - Maße wurden geändert. Sollen die Maße jetzt synchronisiert werden? + Maße wurden geändert. Sollen die Maße jetzt synchronisiert werden? Curve tool which uses point as control handle @@ -5786,6 +5955,30 @@ Sollen die Änderungen gespeichert werden? The measurements file <br/><br/> <b>%1</b> <br/><br/> could not be found. Do you want to update the file location? + + Flipping objects by line + + + + Flipping objects by axis + + + + Move objects + + + + Measurements were changed. Do you want to sync measurements now? + + + + Gradation doesn't support inches + + + + Measurements have been synced + + MainWindowsNoGUI @@ -5913,6 +6106,13 @@ Sollen die Änderungen gespeichert werden? Spline-Pfad (glatte Kurve) bewegen + + OperationMoveLabel + + move point label + Punkt-Label bewegen + + PathPage @@ -6006,6 +6206,18 @@ Sollen die Änderungen gespeichert werden? Delete all + + Workpiece + + + + Forbid flipping + + + + By default forbid flipping for all workpieces + + QApplication @@ -6331,13 +6543,6 @@ Sollen die Änderungen gespeichert werden? Schnittteil umbenennen - - RotationMoveLabel - - move point label - Punkt-Label bewegen - - SaveDetailOptions @@ -6713,15 +6918,15 @@ Do you want to save your changes? Individual measurements (*.vit);;Standard measurements (*.vst);;All files (*.*) - Individuelle Maße (*vit);;Standardmaße (*.vst);;Alle Dateien (*.*) + Individuelle Maße (*vit);;Standardmaße (*.vst);;Alle Dateien (*.*) Standard measurements (*.vst);;Individual measurements (*.vit);;All files (*.*) - Standardmaße (*.vst);;Individuelle Maße (*.vit);;Alle Dateien (*.*) + Standardmaße (*.vst);;Individuelle Maße (*.vit);;Alle Dateien (*.*) Measurements (*.vst *.vit);;All files (*.*) - Maße (*.vst);;Alle Dateien (*.*) + Maße (*.vst);;Alle Dateien (*.*) Failed to lock. This file already opened in another window. @@ -6946,6 +7151,10 @@ Do you want to save your changes? Size: Größe: + + All files + + TapeConfigDialog @@ -7904,6 +8113,18 @@ Do you want to save your changes? Unknown operation type '%1'. + + Error creating or updating operation of flipping by line + + + + Error creating or updating operation of flipping by axis + + + + Error creating or updating operation of moving + + VPatternConverter @@ -7934,11 +8155,11 @@ Do you want to save your changes? VTextManager - on Fold + cut - Cut + on fold @@ -8227,6 +8448,30 @@ Do you want to save your changes? Suffix + + Vertical axis + + + + Horizontal axis + + + + Tool move + + + + Tool flipping by line + + + + Tool flipping by axis + + + + Axis type + + VToolUnionDetails @@ -9346,6 +9591,26 @@ Do you want to save your changes? placeholder + + C1LengthSpl_ + Left symbol _ in the name + + + + C2LengthSpl_ + Left symbol _ in the name + + + + C1LengthSplPath + Do not add symbol _ to the end of the name + + + + C2LengthSplPath + Do not add symbol _ to the end of the name + + VVITConverter @@ -9379,6 +9644,22 @@ Do you want to save your changes? Unnamed Unbenannt + + Select all + + + + Select none + + + + select all details + + + + select none details + + VWidgetGroups @@ -9435,6 +9716,20 @@ Do you want to save your changes? <b>Laufender Schnittpunkt auf Linie</b>: Winkel = %1°; <b>Shift</b> - Winkel einrasten, <b>Enter</b> - fertigstellen + + VisToolMove + + Length = %1%2, angle = %3°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + + + VisToolRotation + + Rotating angle = %1°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + VisToolSpline diff --git a/share/translations/valentina_en_CA.ts b/share/translations/valentina_en_CA.ts index c44cffd89..811bc0ae4 100644 --- a/share/translations/valentina_en_CA.ts +++ b/share/translations/valentina_en_CA.ts @@ -321,19 +321,19 @@ Detail Fabric - Fabric + Fabric Lining - Lining + Lining Interfacing - Interfacing + Interfacing Interlining - Interlining + Interlining @@ -613,7 +613,7 @@ Calulation - Calulation + Calulation First angle: @@ -1468,6 +1468,22 @@ You can choose one of the predefined materials or enter a new one + You can choose one of the predefined materials or enter a new one + + + Forbid piece be mirrored in a layout. + + + + Forbid flipping + + + + Letter of pattern piece + + + + Name can't be empty @@ -1603,6 +1619,10 @@ Functions + Functions + + + Lengths to control points @@ -1748,6 +1768,76 @@ Space + + DialogFlippingByAxis + + Dialog + Dialog + + + Origin point: + + + + Suffix: + Suffix: + + + Axis type: + + + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Vertical axis + + + + Horizontal axis + + + + + DialogFlippingByLine + + Dialog + Dialog + + + First line point: + First line point: + + + Suffix: + Suffix: + + + Second line point: + Second line point: + + + Select first line point + + + + Select first line point that is not part of the list of objects + + + + Select second line point + + + + Select second line point that is not part of the list of objects + + + DialogGroup @@ -2167,6 +2257,10 @@ Search Search + + Curves control point lengths + + DialogLayoutProgress @@ -2413,12 +2507,12 @@ Apply settings anyway? Printer: - + Printer: None Printer - None + None @@ -2758,6 +2852,53 @@ Apply settings anyway? Uncheck all + + DialogMove + + Dialog + Dialog + + + Angle: + Angle: + + + Formula wizard + Formula wizard + + + Value + Value + + + 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> + + + Length: + Length: + + + Suffix: + Suffix: + + + Edit angle + Edit angle + + + Edit length + Edit length + + + Calculation + Calculation + + DialogNewMeasurements @@ -3103,7 +3244,7 @@ Apply settings anyway? Created: - Created: + Created: Pattern size: @@ -3111,14 +3252,22 @@ Apply settings anyway? Show measurements - Show measurements + Show measurements Show date of creation - Show date of creation + Show date of creation Use %1 and %2 to insert pattern size and height + Use %1 and %2 to insert pattern size and height + + + Show date of layout creation (%1) + + + + Show measurements file @@ -3266,7 +3415,7 @@ Apply settings anyway? Type: - Type: + Type: @@ -3778,7 +3927,7 @@ Apply settings anyway? Calulation - Calulation + Calulation <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -3796,6 +3945,18 @@ Apply settings anyway? Edit angle Edit angle + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Calculation + Calculation + DialogSaveLAyout @@ -3849,7 +4010,7 @@ Apply settings anyway? Path to destination folder - + Path to destination folder @@ -4153,7 +4314,7 @@ Apply settings anyway? Calulation - Calulation + Calulation <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -4183,6 +4344,10 @@ Apply settings anyway? Length can't be negative Length can't be negative + + Calculation + Calculation + DialogSplinePath @@ -4276,7 +4441,7 @@ Apply settings anyway? Calulation - Calulation + Calulation <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -4310,6 +4475,10 @@ Apply settings anyway? Not used Not used + + Calculation + Calculation + DialogTool @@ -5549,7 +5718,7 @@ Do you want to save your changes? Measurements was synced - Measurements was synced + Measurements was synced Couldn't sync measurements. @@ -5713,7 +5882,7 @@ Do you want to save your changes? Measurements was changed. Do you want to sync measurements now? - Measurements was changed. Do you want to sync measurements now? + Measurements was changed. Do you want to sync measurements now? Curve tool which uses point as control handle @@ -5811,6 +5980,30 @@ Do you want to save your changes? The measurements file <br/><br/> <b>%1</b> <br/><br/> could not be found. Do you want to update the file location? The measurements file <br/><br/> <b>%1</b> <br/><br/> could not be found. Do you want to update the file location? + + Flipping objects by line + + + + Flipping objects by axis + + + + Move objects + + + + Measurements were changed. Do you want to sync measurements now? + + + + Gradation doesn't support inches + + + + Measurements have been synced + + MainWindowsNoGUI @@ -5896,7 +6089,7 @@ Do you want to save your changes? Can't create path - + Can't create path @@ -5938,6 +6131,13 @@ Do you want to save your changes? move spline path + + OperationMoveLabel + + move point label + move point label + + PathPage @@ -6021,14 +6221,26 @@ Do you want to save your changes? All user defined materials have been deleted! - + All user defined materials have been deleted! User defined materials - + User defined materials Delete all + Delete all + + + Workpiece + + + + Forbid flipping + + + + By default forbid flipping for all workpieces @@ -6360,7 +6572,7 @@ Do you want to save your changes? RotationMoveLabel move point label - move point label + move point label @@ -6739,15 +6951,15 @@ Do you want to save your changes? Individual measurements (*.vit);;Standard measurements (*.vst);;All files (*.*) - Individual measurements (*.vit);;Standard measurements (*.vst);;All files (*.*) + Individual measurements (*.vit);;Standard measurements (*.vst);;All files (*.*) Standard measurements (*.vst);;Individual measurements (*.vit);;All files (*.*) - Standard measurements (*.vst);;Individual measurements (*.vit);;All files (*.*) + Standard measurements (*.vst);;Individual measurements (*.vit);;All files (*.*) Measurements (*.vst *.vit);;All files (*.*) - Measurements (*.vst *.vit);;All files (*.*) + Measurements (*.vst *.vit);;All files (*.*) Failed to lock. This file already opened in another window. @@ -6976,6 +7188,10 @@ Do you want to save your changes? Size: Size: + + All files + + TapeConfigDialog @@ -7935,6 +8151,18 @@ Do you want to save your changes? Unknown operation type '%1'. Unknown operation type '%1'. + + Error creating or updating operation of flipping by line + + + + Error creating or updating operation of flipping by axis + + + + Error creating or updating operation of moving + + VPatternConverter @@ -7974,10 +8202,18 @@ Do you want to save your changes? on Fold - on Fold + on Fold Cut + Cut + + + cut + + + + on fold @@ -8266,6 +8502,30 @@ Do you want to save your changes? Suffix Suffix + + Vertical axis + + + + Horizontal axis + + + + Tool move + + + + Tool flipping by line + + + + Tool flipping by axis + + + + Axis type + + VToolUnionDetails @@ -9373,16 +9633,36 @@ Do you want to save your changes? acosh hyperbolic arcus cosine function - acosh + acosh size placeholder - + size height placeholder + height + + + C1LengthSpl_ + Left symbol _ in the name + + + + C2LengthSpl_ + Left symbol _ in the name + + + + C1LengthSplPath + Do not add symbol _ to the end of the name + + + + C2LengthSplPath + Do not add symbol _ to the end of the name @@ -9418,6 +9698,22 @@ Do you want to save your changes? Unnamed Unnamed + + Select all + + + + Select none + + + + select all details + + + + select none details + + VWidgetGroups @@ -9474,6 +9770,20 @@ Do you want to save your changes? <b>Intersection line and axis</b>: angle = %1°; <b>Shift</b> - sticking angle, <b>Enter</b> - finish creation + + VisToolMove + + Length = %1%2, angle = %3°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + + + VisToolRotation + + Rotating angle = %1°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + VisToolSpline diff --git a/share/translations/valentina_en_IN.ts b/share/translations/valentina_en_IN.ts index 28bc6fd33..9c085ec1d 100644 --- a/share/translations/valentina_en_IN.ts +++ b/share/translations/valentina_en_IN.ts @@ -321,19 +321,19 @@ Detail Fabric - Fabric + Fabric Lining - Lining + Lining Interfacing - Interfacing + Interfacing Interlining - Interlining + Interlining @@ -613,7 +613,7 @@ Calulation - Calulation + Calulation First angle: @@ -1468,6 +1468,22 @@ You can choose one of the predefined materials or enter a new one + You can choose one of the predefined materials or enter a new one + + + Forbid piece be mirrored in a layout. + + + + Forbid flipping + + + + Letter of pattern piece + + + + Name can't be empty @@ -1603,6 +1619,10 @@ Functions + Functions + + + Lengths to control points @@ -1748,6 +1768,76 @@ Space + + DialogFlippingByAxis + + Dialog + Dialog + + + Origin point: + + + + Suffix: + Suffix: + + + Axis type: + + + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Vertical axis + + + + Horizontal axis + + + + + DialogFlippingByLine + + Dialog + Dialog + + + First line point: + First line point: + + + Suffix: + Suffix: + + + Second line point: + Second line point: + + + Select first line point + + + + Select first line point that is not part of the list of objects + + + + Select second line point + + + + Select second line point that is not part of the list of objects + + + DialogGroup @@ -2167,6 +2257,10 @@ Search Search + + Curves control point lengths + + DialogLayoutProgress @@ -2413,12 +2507,12 @@ Apply settings anyway? Printer: - + Printer: None Printer - None + None @@ -2758,6 +2852,53 @@ Apply settings anyway? Uncheck all + + DialogMove + + Dialog + Dialog + + + Angle: + Angle: + + + Formula wizard + Formula wizard + + + Value + Value + + + 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> + + + Length: + Length: + + + Suffix: + Suffix: + + + Edit angle + Edit angle + + + Edit length + Edit length + + + Calculation + Calculation + + DialogNewMeasurements @@ -3103,7 +3244,7 @@ Apply settings anyway? Created: - Created: + Created: Pattern size: @@ -3111,14 +3252,22 @@ Apply settings anyway? Show measurements - Show measurements + Show measurements Show date of creation - Show date of creation + Show date of creation Use %1 and %2 to insert pattern size and height + Use %1 and %2 to insert pattern size and height + + + Show date of layout creation (%1) + + + + Show measurements file @@ -3266,7 +3415,7 @@ Apply settings anyway? Type: - Type: + Type: @@ -3778,7 +3927,7 @@ Apply settings anyway? Calulation - Calulation + Calulation <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -3796,6 +3945,18 @@ Apply settings anyway? Edit angle Edit angle + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Calculation + Calculation + DialogSaveLAyout @@ -3849,7 +4010,7 @@ Apply settings anyway? Path to destination folder - + Path to destination folder @@ -4153,7 +4314,7 @@ Apply settings anyway? Calulation - Calulation + Calulation <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -4183,6 +4344,10 @@ Apply settings anyway? Length can't be negative Length can't be negative + + Calculation + Calculation + DialogSplinePath @@ -4276,7 +4441,7 @@ Apply settings anyway? Calulation - Calulation + Calulation <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -4310,6 +4475,10 @@ Apply settings anyway? Not used Not used + + Calculation + Calculation + DialogTool @@ -5549,7 +5718,7 @@ Do you want to save your changes? Measurements was synced - Measurements was synced + Measurements was synced Couldn't sync measurements. @@ -5713,7 +5882,7 @@ Do you want to save your changes? Measurements was changed. Do you want to sync measurements now? - Measurements was changed. Do you want to sync measurements now? + Measurements was changed. Do you want to sync measurements now? Curve tool which uses point as control handle @@ -5811,6 +5980,30 @@ Do you want to save your changes? The measurements file <br/><br/> <b>%1</b> <br/><br/> could not be found. Do you want to update the file location? The measurements file <br/><br/> <b>%1</b> <br/><br/> could not be found. Do you want to update the file location? + + Flipping objects by line + + + + Flipping objects by axis + + + + Move objects + + + + Measurements were changed. Do you want to sync measurements now? + + + + Gradation doesn't support inches + + + + Measurements have been synced + + MainWindowsNoGUI @@ -5896,7 +6089,7 @@ Do you want to save your changes? Can't create path - + Can't create path @@ -5938,6 +6131,13 @@ Do you want to save your changes? move spline path + + OperationMoveLabel + + move point label + move point label + + PathPage @@ -6021,14 +6221,26 @@ Do you want to save your changes? All user defined materials have been deleted! - + All user defined materials have been deleted! User defined materials - + User defined materials Delete all + Delete all + + + Workpiece + + + + Forbid flipping + + + + By default forbid flipping for all workpieces @@ -6360,7 +6572,7 @@ Do you want to save your changes? RotationMoveLabel move point label - move point label + move point label @@ -6739,15 +6951,15 @@ Do you want to save your changes? Individual measurements (*.vit);;Standard measurements (*.vst);;All files (*.*) - Individual measurements (*.vit);;Standard measurements (*.vst);;All files (*.*) + Individual measurements (*.vit);;Standard measurements (*.vst);;All files (*.*) Standard measurements (*.vst);;Individual measurements (*.vit);;All files (*.*) - Standard measurements (*.vst);;Individual measurements (*.vit);;All files (*.*) + Standard measurements (*.vst);;Individual measurements (*.vit);;All files (*.*) Measurements (*.vst *.vit);;All files (*.*) - Measurements (*.vst *.vit);;All files (*.*) + Measurements (*.vst *.vit);;All files (*.*) Failed to lock. This file already opened in another window. @@ -6976,6 +7188,10 @@ Do you want to save your changes? Size: Size: + + All files + + TapeConfigDialog @@ -7935,6 +8151,18 @@ Do you want to save your changes? Unknown operation type '%1'. Unknown operation type '%1'. + + Error creating or updating operation of flipping by line + + + + Error creating or updating operation of flipping by axis + + + + Error creating or updating operation of moving + + VPatternConverter @@ -7974,10 +8202,18 @@ Do you want to save your changes? on Fold - on Fold + on Fold Cut + Cut + + + cut + + + + on fold @@ -8266,6 +8502,30 @@ Do you want to save your changes? Suffix Suffix + + Vertical axis + + + + Horizontal axis + + + + Tool move + + + + Tool flipping by line + + + + Tool flipping by axis + + + + Axis type + + VToolUnionDetails @@ -9373,16 +9633,36 @@ Do you want to save your changes? acosh hyperbolic arcus cosine function - acosh + acosh size placeholder - + size height placeholder + height + + + C1LengthSpl_ + Left symbol _ in the name + + + + C2LengthSpl_ + Left symbol _ in the name + + + + C1LengthSplPath + Do not add symbol _ to the end of the name + + + + C2LengthSplPath + Do not add symbol _ to the end of the name @@ -9418,6 +9698,22 @@ Do you want to save your changes? Unnamed Unnamed + + Select all + + + + Select none + + + + select all details + + + + select none details + + VWidgetGroups @@ -9474,6 +9770,20 @@ Do you want to save your changes? <b>Intersection line and axis</b>: angle = %1°; <b>Shift</b> - sticking angle, <b>Enter</b> - finish creation + + VisToolMove + + Length = %1%2, angle = %3°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + + + VisToolRotation + + Rotating angle = %1°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + VisToolSpline diff --git a/share/translations/valentina_en_US.ts b/share/translations/valentina_en_US.ts index cad586634..016887d22 100644 --- a/share/translations/valentina_en_US.ts +++ b/share/translations/valentina_en_US.ts @@ -321,19 +321,19 @@ Detail Fabric - Fabric + Fabric Lining - Lining + Lining Interfacing - Interfacing + Interfacing Interlining - Interlining + Interlining @@ -613,7 +613,7 @@ Calulation - Calulation + Calulation First angle: @@ -1468,6 +1468,22 @@ You can choose one of the predefined materials or enter a new one + You can choose one of the predefined materials or enter a new one + + + Forbid piece be mirrored in a layout. + + + + Forbid flipping + + + + Letter of pattern piece + + + + Name can't be empty @@ -1603,6 +1619,10 @@ Functions + Functions + + + Lengths to control points @@ -1748,6 +1768,76 @@ Space + + DialogFlippingByAxis + + Dialog + Dialog + + + Origin point: + + + + Suffix: + Suffix: + + + Axis type: + + + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Vertical axis + + + + Horizontal axis + + + + + DialogFlippingByLine + + Dialog + Dialog + + + First line point: + First line point: + + + Suffix: + Suffix: + + + Second line point: + Second line point: + + + Select first line point + + + + Select first line point that is not part of the list of objects + + + + Select second line point + + + + Select second line point that is not part of the list of objects + + + DialogGroup @@ -2167,6 +2257,10 @@ Search Search + + Curves control point lengths + + DialogLayoutProgress @@ -2413,12 +2507,12 @@ Apply settings anyway? Printer: - + Printer: None Printer - None + None @@ -2758,6 +2852,49 @@ Apply settings anyway? Uncheck all + + DialogMove + + Dialog + Dialog + + + Angle: + Angle: + + + Formula wizard + Formula wizard + + + Value + Value + + + <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> + + + Length: + Length: + + + Suffix: + Suffix: + + + Edit angle + Edit angle + + + Edit length + Edit length + + + Calculation + Calculation + + DialogNewMeasurements @@ -3103,7 +3240,7 @@ Apply settings anyway? Created: - Created: + Created: Pattern size: @@ -3111,14 +3248,22 @@ Apply settings anyway? Show measurements - Show measurements + Show measurements Show date of creation - Show date of creation + Show date of creation Use %1 and %2 to insert pattern size and height + Use %1 and %2 to insert pattern size and height + + + Show date of layout creation (%1) + + + + Show measurements file @@ -3266,7 +3411,7 @@ Apply settings anyway? Type: - Type: + Type: @@ -3778,7 +3923,7 @@ Apply settings anyway? Calulation - Calulation + Calculation <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -3796,6 +3941,18 @@ Apply settings anyway? Edit angle Edit angle + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Calculation + Calculation + DialogSaveLAyout @@ -3849,7 +4006,7 @@ Apply settings anyway? Path to destination folder - + Path to destination folder @@ -4153,7 +4310,7 @@ Apply settings anyway? Calulation - Calulation + Calulation <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -4183,6 +4340,10 @@ Apply settings anyway? Length can't be negative Length can't be negative + + Calculation + Calculation + DialogSplinePath @@ -4276,7 +4437,7 @@ Apply settings anyway? Calulation - Calulation + Calulation <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -4310,6 +4471,10 @@ Apply settings anyway? Not used Not used + + Calculation + Calculation + DialogTool @@ -5549,7 +5714,7 @@ Do you want to save your changes? Measurements was synced - Measurements was synced + Measurements was synced Couldn't sync measurements. @@ -5713,7 +5878,7 @@ Do you want to save your changes? Measurements was changed. Do you want to sync measurements now? - Measurements was changed. Do you want to sync measurements now? + Measurements was changed. Do you want to sync measurements now? Curve tool which uses point as control handle @@ -5811,6 +5976,30 @@ Do you want to save your changes? The measurements file <br/><br/> <b>%1</b> <br/><br/> could not be found. Do you want to update the file location? The measurements file <br/><br/> <b>%1</b> <br/><br/> could not be found. Do you want to update the file location? + + Flipping objects by line + + + + Flipping objects by axis + + + + Move objects + + + + Measurements were changed. Do you want to sync measurements now? + + + + Gradation doesn't support inches + + + + Measurements have been synced + + MainWindowsNoGUI @@ -5896,7 +6085,7 @@ Do you want to save your changes? Can't create path - + Can't create path @@ -5938,6 +6127,13 @@ Do you want to save your changes? move spline path + + OperationMoveLabel + + move point label + move point label + + PathPage @@ -6021,14 +6217,26 @@ Do you want to save your changes? All user defined materials have been deleted! - + All user defined materials have been deleted! User defined materials - + User defined materials Delete all + Delete all + + + Workpiece + + + + Forbid flipping + + + + By default forbid flipping for all workpieces @@ -6360,7 +6568,7 @@ Do you want to save your changes? RotationMoveLabel move point label - move point label + move point label @@ -6739,15 +6947,15 @@ Do you want to save your changes? Individual measurements (*.vit);;Standard measurements (*.vst);;All files (*.*) - Individual measurements (*.vit);;Standard measurements (*.vst);;All files (*.*) + Individual measurements (*.vit);;Standard measurements (*.vst);;All files (*.*) Standard measurements (*.vst);;Individual measurements (*.vit);;All files (*.*) - Standard measurements (*.vst);;Individual measurements (*.vit);;All files (*.*) + Standard measurements (*.vst);;Individual measurements (*.vit);;All files (*.*) Measurements (*.vst *.vit);;All files (*.*) - Measurements (*.vst *.vit);;All files (*.*) + Measurements (*.vst *.vit);;All files (*.*) Failed to lock. This file already opened in another window. @@ -6976,6 +7184,10 @@ Do you want to save your changes? Size: Size: + + All files + + TapeConfigDialog @@ -7935,6 +8147,18 @@ Do you want to save your changes? Unknown operation type '%1'. Unknown operation type '%1'. + + Error creating or updating operation of flipping by line + + + + Error creating or updating operation of flipping by axis + + + + Error creating or updating operation of moving + + VPatternConverter @@ -7974,10 +8198,18 @@ Do you want to save your changes? on Fold - on Fold + on Fold Cut + Cut + + + cut + + + + on fold @@ -8266,6 +8498,30 @@ Do you want to save your changes? Suffix Suffix + + Vertical axis + + + + Horizontal axis + + + + Tool move + + + + Tool flipping by line + + + + Tool flipping by axis + + + + Axis type + + VToolUnionDetails @@ -9373,16 +9629,36 @@ Do you want to save your changes? acosh hyperbolic arcus cosine function - acosh + acosh size placeholder - + size height placeholder + height + + + C1LengthSpl_ + Left symbol _ in the name + + + + C2LengthSpl_ + Left symbol _ in the name + + + + C1LengthSplPath + Do not add symbol _ to the end of the name + + + + C2LengthSplPath + Do not add symbol _ to the end of the name @@ -9418,6 +9694,22 @@ Do you want to save your changes? Unnamed Unnamed + + Select all + + + + Select none + + + + select all details + + + + select none details + + VWidgetGroups @@ -9474,6 +9766,20 @@ Do you want to save your changes? <b>Intersection line and axis</b>: angle = %1°; <b>Shift</b> - sticking angle, <b>Enter</b> - finish creation + + VisToolMove + + Length = %1%2, angle = %3°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + + + VisToolRotation + + Rotating angle = %1°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + VisToolSpline diff --git a/share/translations/valentina_es_ES.ts b/share/translations/valentina_es_ES.ts index df07eb61f..2af112ede 100644 --- a/share/translations/valentina_es_ES.ts +++ b/share/translations/valentina_es_ES.ts @@ -613,7 +613,7 @@ Calulation - Cálculo + Cálculo First angle: @@ -1455,6 +1455,22 @@ You can choose one of the predefined materials or enter a new one + + Forbid piece be mirrored in a layout. + + + + Forbid flipping + + + + Letter of pattern piece + + + + Name can't be empty + + DialogEditWrongFormula @@ -1590,6 +1606,10 @@ Functions + + Lengths to control points + + DialogEndLine @@ -1733,6 +1753,76 @@ Espacio + + DialogFlippingByAxis + + Dialog + Diálogo + + + Origin point: + + + + Suffix: + Sufijo: + + + Axis type: + + + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Vertical axis + + + + Horizontal axis + + + + + DialogFlippingByLine + + Dialog + Diálogo + + + First line point: + Primer punto de línea: + + + Suffix: + Sufijo: + + + Second line point: + Segundo punto de línea: + + + Select first line point + + + + Select first line point that is not part of the list of objects + + + + Select second line point + + + + Select second line point that is not part of the list of objects + + + DialogGroup @@ -2152,6 +2242,10 @@ Search Buscar + + Curves control point lengths + + DialogLayoutProgress @@ -2742,6 +2836,53 @@ Apply settings anyway? Desmarcar todo + + DialogMove + + Dialog + Diálogo + + + Angle: + Ángulo: + + + Formula wizard + + + + Value + + + + Calulation + Cálculo + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + Length: + + + + Suffix: + Sufijo: + + + Edit angle + Editar ángulo + + + Edit length + Editar largo + + + Calculation + Cálculo + + DialogNewMeasurements @@ -3087,7 +3228,7 @@ Apply settings anyway? Created: - Creación: + Creación: Pattern size: @@ -3095,16 +3236,24 @@ Apply settings anyway? Show measurements - Mostra medidas + Mostra medidas Show date of creation - Mostrar fecha de creación + Mostrar fecha de creación Use %1 and %2 to insert pattern size and height + + Show date of layout creation (%1) + + + + Show measurements file + + DialogPatternXmlEdit @@ -3758,7 +3907,7 @@ Apply settings anyway? Calulation - Cálculo + Cálculo <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -3776,6 +3925,18 @@ Apply settings anyway? Edit angle Editar ángulo + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Calculation + Cálculo + DialogSaveLAyout @@ -4129,7 +4290,7 @@ Apply settings anyway? Calulation - Cálculo + Cálculo <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -4159,6 +4320,10 @@ Apply settings anyway? Length can't be negative Longitud no puede ser negativa + + Calculation + Cálculo + DialogSplinePath @@ -4252,7 +4417,7 @@ Apply settings anyway? Calulation - Cálculo + Cálculo <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -4286,6 +4451,10 @@ Apply settings anyway? Not used No usado + + Calculation + Cálculo + DialogTool @@ -5525,7 +5694,7 @@ Quiere guardar los cambios? Measurements was synced - Medidas sincronizadas + Medidas sincronizadas Couldn't sync measurements. @@ -5689,7 +5858,7 @@ Quiere guardar los cambios? Measurements was changed. Do you want to sync measurements now? - Las medida fueron modificadas. Quieres sincronizar las medidas? + Las medida fueron modificadas. Quieres sincronizar las medidas? Curve tool which uses point as control handle @@ -5783,6 +5952,30 @@ Quiere guardar los cambios? The measurements file <br/><br/> <b>%1</b> <br/><br/> could not be found. Do you want to update the file location? + + Flipping objects by line + + + + Flipping objects by axis + + + + Move objects + + + + Measurements were changed. Do you want to sync measurements now? + + + + Gradation doesn't support inches + + + + Measurements have been synced + + MainWindowsNoGUI @@ -5910,6 +6103,13 @@ Quiere guardar los cambios? mover ruta de spline + + OperationMoveLabel + + move point label + mover etiqueta del punto + + PathPage @@ -6003,6 +6203,18 @@ Quiere guardar los cambios? Delete all + + Workpiece + + + + Forbid flipping + + + + By default forbid flipping for all workpieces + + QApplication @@ -6328,13 +6540,6 @@ Quiere guardar los cambios? renombrar pieza del patrón - - RotationMoveLabel - - move point label - mover etiqueta del punto - - SaveDetailOptions @@ -6710,15 +6915,15 @@ Do you want to save your changes? Individual measurements (*.vit);;Standard measurements (*.vst);;All files (*.*) - Medidas Individuales(*.vit);;Medidas Estandar (*.vst);Todos los Archivos (*.*) + Medidas Individuales(*.vit);;Medidas Estandar (*.vst);Todos los Archivos (*.*) Standard measurements (*.vst);;Individual measurements (*.vit);;All files (*.*) - Medidas estándar (*.vst);;Medidas indivuduales (*.vit);;Todos los archivos (*.*) + Medidas estándar (*.vst);;Medidas indivuduales (*.vit);;Todos los archivos (*.*) Measurements (*.vst *.vit);;All files (*.*) - Medidas (*.vst *.vit);;Todos los archivos (*.*) + Medidas (*.vst *.vit);;Todos los archivos (*.*) Failed to lock. This file already opened in another window. @@ -6947,6 +7152,10 @@ Do you want to save your changes? Size: Talla: + + All files + + TapeConfigDialog @@ -7906,6 +8115,18 @@ Do you want to save your changes? Unknown operation type '%1'. + + Error creating or updating operation of flipping by line + + + + Error creating or updating operation of flipping by axis + + + + Error creating or updating operation of moving + + VPatternConverter @@ -7936,11 +8157,11 @@ Do you want to save your changes? VTextManager - on Fold + cut - Cut + on fold @@ -8229,6 +8450,30 @@ Do you want to save your changes? Suffix Sufijo + + Vertical axis + + + + Horizontal axis + + + + Tool move + + + + Tool flipping by line + + + + Tool flipping by axis + + + + Axis type + + VToolUnionDetails @@ -9348,6 +9593,26 @@ Do you want to save your changes? placeholder + + C1LengthSpl_ + Left symbol _ in the name + + + + C2LengthSpl_ + Left symbol _ in the name + + + + C1LengthSplPath + Do not add symbol _ to the end of the name + + + + C2LengthSplPath + Do not add symbol _ to the end of the name + + VVITConverter @@ -9381,6 +9646,22 @@ Do you want to save your changes? Unnamed Sin Nombre + + Select all + + + + Select none + + + + select all details + + + + select none details + + VWidgetGroups @@ -9433,6 +9714,20 @@ Do you want to save your changes? <b>Interseccion entre línea y eje</b>: angulo= %1°; <b>Desplazamiento</b> - ángulo de adherencia, <b>Enter</b> - termina la creación + + VisToolMove + + Length = %1%2, angle = %3°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + + + VisToolRotation + + Rotating angle = %1°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + VisToolSpline diff --git a/share/translations/valentina_fi_FI.ts b/share/translations/valentina_fi_FI.ts index c064a13e8..cc3e01873 100644 --- a/share/translations/valentina_fi_FI.ts +++ b/share/translations/valentina_fi_FI.ts @@ -600,10 +600,6 @@ Value Arvo - - Calulation - - First angle: @@ -1415,6 +1411,22 @@ You can choose one of the predefined materials or enter a new one + + Forbid piece be mirrored in a layout. + + + + Forbid flipping + + + + Letter of pattern piece + + + + Name can't be empty + + DialogEditWrongFormula @@ -1538,6 +1550,10 @@ Functions + + Lengths to control points + + DialogEndLine @@ -1681,6 +1697,76 @@ + + DialogFlippingByAxis + + Dialog + + + + Origin point: + + + + Suffix: + + + + Axis type: + + + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Vertical axis + + + + Horizontal axis + + + + + DialogFlippingByLine + + Dialog + + + + First line point: + + + + Suffix: + + + + Second line point: + + + + Select first line point + + + + Select first line point that is not part of the list of objects + + + + Select second line point + + + + Select second line point that is not part of the list of objects + + + DialogGroup @@ -2088,6 +2174,10 @@ Search + + Curves control point lengths + + DialogLayoutProgress @@ -2654,6 +2744,49 @@ Apply settings anyway? + + DialogMove + + Dialog + + + + Angle: + + + + Formula wizard + + + + Value + Arvo + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + <html><head/><body><p>Näytä koko laskenta ikkunassa</p></body></html> + + + Length: + + + + Suffix: + + + + Edit angle + + + + Edit length + + + + Calculation + + + DialogNewMeasurements @@ -2993,26 +3126,22 @@ Apply settings anyway? Customer name: - - Created: - - Pattern size: - - Show measurements - - - - Show date of creation - - Use %1 and %2 to insert pattern size and height + + Show date of layout creation (%1) + + + + Show measurements file + + DialogPatternXmlEdit @@ -3604,10 +3733,6 @@ Apply settings anyway? Value Arvo - - Calulation - - <html><head/><body><p>Show full calculation in message box</p></body></html> <html><head/><body><p>Näytä koko laskenta ikkunassa</p></body></html> @@ -3624,6 +3749,18 @@ Apply settings anyway? Edit angle + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Calculation + + DialogSaveLAyout @@ -3951,10 +4088,6 @@ Apply settings anyway? Value Arvo - - Calulation - - <html><head/><body><p>Show full calculation in message box</p></body></html> <html><head/><body><p>Näytä koko laskenta ikkunassa</p></body></html> @@ -3983,6 +4116,10 @@ Apply settings anyway? Length can't be negative + + Calculation + + DialogSplinePath @@ -4066,10 +4203,6 @@ Apply settings anyway? Value Arvo - - Calulation - - <html><head/><body><p>Show full calculation in message box</p></body></html> <html><head/><body><p>Näytä koko laskenta ikkunassa</p></body></html> @@ -4102,6 +4235,10 @@ Apply settings anyway? Not used + + Calculation + + DialogTool @@ -5286,10 +5423,6 @@ Haluatko tallentaa muutokset? Measurement files types have not match. - - Measurements was synced - - Couldn't sync measurements. @@ -5446,10 +5579,6 @@ Haluatko tallentaa muutokset? (read only) - - Measurements was changed. Do you want to sync measurements now? - - Curve tool which uses point as control handle @@ -5538,6 +5667,30 @@ Haluatko tallentaa muutokset? The measurements file <br/><br/> <b>%1</b> <br/><br/> could not be found. Do you want to update the file location? + + Flipping objects by line + + + + Flipping objects by axis + + + + Move objects + + + + Measurements were changed. Do you want to sync measurements now? + + + + Gradation doesn't support inches + + + + Measurements have been synced + + MainWindowsNoGUI @@ -5645,6 +5798,13 @@ Haluatko tallentaa muutokset? + + OperationMoveLabel + + move point label + + + PathPage @@ -5738,6 +5898,18 @@ Haluatko tallentaa muutokset? Delete all + + Workpiece + + + + Forbid flipping + + + + By default forbid flipping for all workpieces + + QApplication @@ -6063,13 +6235,6 @@ Haluatko tallentaa muutokset? - - RotationMoveLabel - - move point label - - - SaveDetailOptions @@ -6435,18 +6600,6 @@ Do you want to save your changes? Ctrl+G - - 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. @@ -6642,6 +6795,10 @@ Do you want to save your changes? Size: + + All files + + TapeConfigDialog @@ -7525,6 +7682,18 @@ Do you want to save your changes? Unknown operation type '%1'. + + Error creating or updating operation of flipping by line + + + + Error creating or updating operation of flipping by axis + + + + Error creating or updating operation of moving + + VPatternConverter @@ -7555,11 +7724,11 @@ Do you want to save your changes? VTextManager - on Fold + cut - Cut + on fold @@ -7848,6 +8017,30 @@ Do you want to save your changes? Suffix + + Vertical axis + + + + Horizontal axis + + + + Tool move + + + + Tool flipping by line + + + + Tool flipping by axis + + + + Axis type + + VToolUnionDetails @@ -8932,6 +9125,26 @@ Do you want to save your changes? placeholder + + C1LengthSpl_ + Left symbol _ in the name + + + + C2LengthSpl_ + Left symbol _ in the name + + + + C1LengthSplPath + Do not add symbol _ to the end of the name + + + + C2LengthSplPath + Do not add symbol _ to the end of the name + + VVITConverter @@ -8965,6 +9178,22 @@ Do you want to save your changes? Unnamed + + Select all + + + + Select none + + + + select all details + + + + select none details + + VWidgetGroups @@ -9017,6 +9246,20 @@ Do you want to save your changes? <b>Leikkausviiva ja akseli</b>: kulma = %1°; <b>Siirto</b> - kulma, <b>Enter</b> - Hyväksy luonti + + VisToolMove + + Length = %1%2, angle = %3°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + + + VisToolRotation + + Rotating angle = %1°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + VisToolSpline diff --git a/share/translations/valentina_fr_FR.ts b/share/translations/valentina_fr_FR.ts index 0f9ff0ece..cc1424565 100644 --- a/share/translations/valentina_fr_FR.ts +++ b/share/translations/valentina_fr_FR.ts @@ -286,7 +286,7 @@ The text appears under the icon (recommended for beginners). - + Le texte apparait sous l'icone (recommandé pour les débutants). @@ -321,19 +321,19 @@ Detail Fabric - Tissu + Tissu Lining - Lin + Lin Interfacing - Interfaçage + Interfaçage Interlining - Interlignage + Interlignage @@ -613,7 +613,7 @@ Calulation - Calcul + Calcul First angle: @@ -890,7 +890,7 @@ Fourth point: - Quatrième point : + Quatrième point: Select the second point of curve @@ -910,7 +910,7 @@ Tool cubic bezier - + Outil courbe de bezier cubique @@ -941,7 +941,7 @@ Tool cubic bezier path - + Outil trajectoire de la courbe de bezier @@ -1464,10 +1464,26 @@ on Fold - + au pli You can choose one of the predefined materials or enter a new one + Vous pouvez choisir un des matériaux prédéfinis ou en entrer un nouveau + + + Forbid piece be mirrored in a layout. + + + + Forbid flipping + + + + Letter of pattern piece + + + + Name can't be empty @@ -1603,6 +1619,10 @@ Functions + Fonction + + + Lengths to control points @@ -1748,6 +1768,76 @@ Espace + + DialogFlippingByAxis + + Dialog + Dialogue + + + Origin point: + + + + Suffix: + Suffixe: + + + Axis type: + + + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Vertical axis + + + + Horizontal axis + + + + + DialogFlippingByLine + + Dialog + Dialogue + + + First line point: + Point de la première ligne: + + + Suffix: + Suffixe: + + + Second line point: + Point de la deuxième ligne: + + + Select first line point + + + + Select first line point that is not part of the list of objects + + + + Select second line point + + + + Select second line point that is not part of the list of objects + + + DialogGroup @@ -2167,6 +2257,10 @@ Search Rechercher + + Curves control point lengths + + DialogLayoutProgress @@ -2207,7 +2301,7 @@ Height: - Hauteur : + Hauteur: Rotate workpiece @@ -2406,16 +2500,16 @@ Appliquer les réglages quand-même ? Enabling for sheets that have big height will speed up creating. - + Le choix d'un format plus grand accélère la création. Printer: - + Imprimante : None Printer - + Rien @@ -2755,6 +2849,53 @@ Appliquer les réglages quand-même ? Tout décocher + + DialogMove + + Dialog + Dialogue + + + Angle: + Angle: + + + Formula wizard + Assistant Formule + + + Value + Valeur + + + Calulation + Calcul + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + Length: + Longueur: + + + Suffix: + Suffixe: + + + Edit angle + + + + Edit length + + + + Calculation + Calcul + + DialogNewMeasurements @@ -3000,7 +3141,7 @@ Appliquer les réglages quand-même ? Height: - Hauteur : + Hauteur: Size: @@ -3100,7 +3241,7 @@ Appliquer les réglages quand-même ? Created: - Crée le : + Crée le : Pattern size: @@ -3108,14 +3249,22 @@ Appliquer les réglages quand-même ? Show measurements - Voir les mensurations + Voir les mensurations Show date of creation - Voir la date de création + Voir la date de création Use %1 and %2 to insert pattern size and height + Utilisez %1 et %2 pour définir la taille et la stature + + + Show date of layout creation (%1) + + + + Show measurements file @@ -3257,9 +3406,13 @@ Appliquer les réglages quand-même ? Immediately apply Appliquer immédiatement + + Type: + Type : + Type: - Type: + Type : @@ -3602,7 +3755,7 @@ Appliquer les réglages quand-même ? Tool point of intersetion arcs - + Outil point d'intersection des arcs @@ -3709,7 +3862,7 @@ Appliquer les réglages quand-même ? Tool point of intersection circles - + Outil point d'intersection des cercles @@ -3771,7 +3924,7 @@ Appliquer les réglages quand-même ? Calulation - Calcul + Calcul <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -3789,6 +3942,18 @@ Appliquer les réglages quand-même ? Edit angle Editer l'angle + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Calculation + Calcul + DialogSaveLAyout @@ -3836,9 +4001,13 @@ Appliquer les réglages quand-même ? File base name. Nom du fichier de base. + + File base name. + Nom du fichier de base. + Path to destination folder - + Emplacement du dossier de destination @@ -4142,7 +4311,7 @@ Appliquer les réglages quand-même ? Calulation - Calcul + Calcul <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -4172,6 +4341,10 @@ Appliquer les réglages quand-même ? Length can't be negative Une longueur ne peut être négative + + Calculation + Calcul + DialogSplinePath @@ -4265,7 +4438,7 @@ Appliquer les réglages quand-même ? Calulation - Calcul + Calcul <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -4299,6 +4472,10 @@ Appliquer les réglages quand-même ? Not used Non utilisé + + Calculation + Calcul + DialogTool @@ -5123,7 +5300,7 @@ Appliquer les réglages quand-même ? Height: - Stature : + Stature: Size: @@ -5538,7 +5715,7 @@ Voulez-vous sauvegarder les changements? Measurements was synced - Les mensurations sont synchronisées + Les mensurations sont synchronisées Couldn't sync measurements. @@ -5702,7 +5879,7 @@ Voulez-vous sauvegarder les changements? Measurements was changed. Do you want to sync measurements now? - Les mensurations ont changées. Voulez-vous les resynchroniser maintenant? + Les mensurations ont changées. Voulez-vous les resynchroniser maintenant? Curve tool which uses point as control handle @@ -5774,30 +5951,54 @@ Voulez-vous sauvegarder les changements? Original zoom - + Zoom par défaut Select first circle center - + Chosissez d'abord le centre du cercle Select point on tangent - + Choisir un point sur la tangente Pattern Piece: - + Élément de patron : Height: - Hauteur : + Stature: Size: - Taille: + Taille : The measurements file <br/><br/> <b>%1</b> <br/><br/> could not be found. Do you want to update the file location? + Le tableau de mesure <br/><br/> <b>%1</b> <br/><br/>est introuvable. Voulez-vous le rechercher? + + + Flipping objects by line + + + + Flipping objects by axis + + + + Move objects + + + + Measurements were changed. Do you want to sync measurements now? + + + + Gradation doesn't support inches + + + + Measurements have been synced @@ -5885,7 +6086,7 @@ Voulez-vous sauvegarder les changements? Can't create path - + Impossible de créer l'emplacement @@ -5927,6 +6128,13 @@ Voulez-vous sauvegarder les changements? Déplacer le trajet de la spline + + OperationMoveLabel + + move point label + + + PathPage @@ -6010,14 +6218,26 @@ Voulez-vous sauvegarder les changements? All user defined materials have been deleted! - + Tous les matériaux définis par l'utilisateur ont été détruit! User defined materials - + Matériaux définis par l'utilisateur Delete all + Tout effacer + + + Workpiece + + + + Forbid flipping + + + + By default forbid flipping for all workpieces @@ -6349,7 +6569,7 @@ Voulez-vous sauvegarder les changements? RotationMoveLabel move point label - déplace l'étiquette de point + déplace l'étiquette de point @@ -6728,15 +6948,15 @@ Voulez-vous enregistrer les changements? Individual measurements (*.vit);;Standard measurements (*.vst);;All files (*.*) - Mesures individuelles (*.vit);;Mesures standards (*.vst);;Tous les fichiers (*.*) + Mesures individuelles (*.vit);;Mesures standards (*.vst);;Tous les fichiers (*.*) Standard measurements (*.vst);;Individual measurements (*.vit);;All files (*.*) - Mesures Standards (*.vst);;Mesures individuelles (*.vit);;Tous les fichiers (*.*) + Mesures Standards (*.vst);;Mesures individuelles (*.vit);;Tous les fichiers (*.*) Measurements (*.vst *.vit);;All files (*.*) - Mesures (*.vst *.vit);;Tous les fichiers (*.*) + Mesures (*.vst *.vit);;Tous les fichiers (*.*) Failed to lock. This file already opened in another window. @@ -6943,27 +7163,31 @@ Voulez-vous enregistrer les changements? Comma-Separated Values - + Valeur de signe de séparation Customer's name - + Nom du client Customer's family name - + Nom de famille du client Customer's email address - + Adresse email du client Height: - Hauteur : + Stature: Size: - Taille: + Taille : + + + All files + @@ -7524,11 +7748,11 @@ Voulez-vous enregistrer les changements? Number corresponding to output format (default = 0, export mode): - + Numéro correspondant au format de sortie (défaut=0, mode export) : Number corresponding to page template (default = 0, export mode): - + Numéro correspondant au modèle de page (défaut=0, mode export) : @@ -7899,6 +8123,18 @@ Voulez-vous enregistrer les changements? Unknown operation type '%1'. Opération inconnue de type '%1'. + + Error creating or updating operation of flipping by line + + + + Error creating or updating operation of flipping by axis + + + + Error creating or updating operation of moving + + VPatternConverter @@ -7928,12 +8164,28 @@ Voulez-vous enregistrer les changements? VTextManager + + Cut %1 on %2%3 + Couper %1 de %2%3 + + + on Fold + au pli + on Fold - + au pli Cut + Coupure + + + cut + + + + on fold @@ -8222,6 +8474,30 @@ Voulez-vous enregistrer les changements? Suffix Suffixe + + Vertical axis + + + + Horizontal axis + + + + Tool move + + + + Tool flipping by line + + + + Tool flipping by axis + + + + Axis type + + VToolUnionDetails @@ -9329,16 +9605,36 @@ Voulez-vous enregistrer les changements? acosh hyperbolic arcus cosine function - acosh + acosh size placeholder - + taille height placeholder + stature + + + C1LengthSpl_ + Left symbol _ in the name + + + + C2LengthSpl_ + Left symbol _ in the name + + + + C1LengthSplPath + Do not add symbol _ to the end of the name + + + + C2LengthSplPath + Do not add symbol _ to the end of the name @@ -9374,6 +9670,22 @@ Voulez-vous enregistrer les changements? Unnamed Sans nom + + Select all + + + + Select none + + + + select all details + + + + select none details + + VWidgetGroups @@ -9426,6 +9738,20 @@ Voulez-vous enregistrer les changements? <b>Intersection ligne et axe</b>: angle = %1°; <b>Déplacer</b> - Angle magnétique, <b>Entrée</b> - valider la création + + VisToolMove + + Length = %1%2, angle = %3°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + + + VisToolRotation + + Rotating angle = %1°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + VisToolSpline diff --git a/share/translations/valentina_he_IL.ts b/share/translations/valentina_he_IL.ts index 4f6693fb3..0a540f998 100644 --- a/share/translations/valentina_he_IL.ts +++ b/share/translations/valentina_he_IL.ts @@ -508,10 +508,6 @@ Value - - Calulation - - First angle: @@ -1215,6 +1211,22 @@ You can choose one of the predefined materials or enter a new one + + Forbid piece be mirrored in a layout. + + + + Forbid flipping + + + + Letter of pattern piece + + + + Name can't be empty + + DialogEditWrongFormula @@ -1310,6 +1322,10 @@ Functions + + Lengths to control points + + DialogEndLine @@ -1433,6 +1449,76 @@ + + DialogFlippingByAxis + + Dialog + + + + Origin point: + + + + Suffix: + + + + Axis type: + + + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Vertical axis + + + + Horizontal axis + + + + + DialogFlippingByLine + + Dialog + + + + First line point: + + + + Suffix: + + + + Second line point: + + + + Select first line point + + + + Select first line point that is not part of the list of objects + + + + Select second line point + + + + Select second line point that is not part of the list of objects + + + DialogGroup @@ -1800,6 +1886,10 @@ Search + + Curves control point lengths + + DialogLayoutProgress @@ -2318,6 +2408,49 @@ Apply settings anyway? + + DialogMove + + Dialog + + + + Angle: + + + + Formula wizard + + + + Value + + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + Length: + + + + Suffix: + + + + Edit angle + + + + Edit length + + + + Calculation + + + DialogNewMeasurements @@ -2637,26 +2770,22 @@ Apply settings anyway? Customer name: - - Created: - - Pattern size: - - Show measurements - - - - Show date of creation - - Use %1 and %2 to insert pattern size and height + + Show date of layout creation (%1) + + + + Show measurements file + + DialogPatternXmlEdit @@ -3184,10 +3313,6 @@ Apply settings anyway? Value - - Calulation - - <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -3204,6 +3329,18 @@ Apply settings anyway? Edit angle + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Calculation + + DialogSaveLAyout @@ -3495,10 +3632,6 @@ Apply settings anyway? Value - - Calulation - - <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -3527,6 +3660,10 @@ Apply settings anyway? Length can't be negative + + Calculation + + DialogSplinePath @@ -3582,10 +3719,6 @@ Apply settings anyway? Value - - Calulation - - <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -3618,6 +3751,10 @@ Apply settings anyway? Not used + + Calculation + + DialogTool @@ -4721,10 +4858,6 @@ Do you want to save your changes? Measurement files types have not match. - - Measurements was synced - - Couldn't sync measurements. @@ -4881,10 +5014,6 @@ Do you want to save your changes? (read only) - - Measurements was changed. Do you want to sync measurements now? - - Curve tool which uses point as control handle @@ -4973,6 +5102,30 @@ Do you want to save your changes? The measurements file <br/><br/> <b>%1</b> <br/><br/> could not be found. Do you want to update the file location? + + Flipping objects by line + + + + Flipping objects by axis + + + + Move objects + + + + Measurements were changed. Do you want to sync measurements now? + + + + Gradation doesn't support inches + + + + Measurements have been synced + + MainWindowsNoGUI @@ -5080,6 +5233,13 @@ Do you want to save your changes? + + OperationMoveLabel + + move point label + + + PathPage @@ -5165,6 +5325,18 @@ Do you want to save your changes? Delete all + + Workpiece + + + + Forbid flipping + + + + By default forbid flipping for all workpieces + + QApplication @@ -5490,13 +5662,6 @@ Do you want to save your changes? - - RotationMoveLabel - - move point label - - - SaveDetailOptions @@ -5854,18 +6019,6 @@ Do you want to save your changes? Ctrl+G - - 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. @@ -6061,6 +6214,10 @@ Do you want to save your changes? Size: + + All files + + TapeConfigDialog @@ -6918,6 +7075,18 @@ Do you want to save your changes? Unknown operation type '%1'. + + Error creating or updating operation of flipping by line + + + + Error creating or updating operation of flipping by axis + + + + Error creating or updating operation of moving + + VPatternConverter @@ -6940,11 +7109,11 @@ Do you want to save your changes? VTextManager - on Fold + cut - Cut + on fold @@ -7229,6 +7398,30 @@ Do you want to save your changes? Suffix + + Vertical axis + + + + Horizontal axis + + + + Tool move + + + + Tool flipping by line + + + + Tool flipping by axis + + + + Axis type + + VToolUnionDetails @@ -8283,6 +8476,26 @@ Do you want to save your changes? placeholder + + C1LengthSpl_ + Left symbol _ in the name + + + + C2LengthSpl_ + Left symbol _ in the name + + + + C1LengthSplPath + Do not add symbol _ to the end of the name + + + + C2LengthSplPath + Do not add symbol _ to the end of the name + + VVITConverter @@ -8308,6 +8521,22 @@ Do you want to save your changes? Unnamed + + Select all + + + + Select none + + + + select all details + + + + select none details + + VWidgetGroups @@ -8356,6 +8585,20 @@ Do you want to save your changes? + + VisToolMove + + Length = %1%2, angle = %3°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + + + VisToolRotation + + Rotating angle = %1°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + VisToolSpline diff --git a/share/translations/valentina_id_ID.ts b/share/translations/valentina_id_ID.ts index a5b792310..b8f482178 100644 --- a/share/translations/valentina_id_ID.ts +++ b/share/translations/valentina_id_ID.ts @@ -588,10 +588,6 @@ Value - - Calulation - - First angle: @@ -1355,6 +1351,22 @@ You can choose one of the predefined materials or enter a new one + + Forbid piece be mirrored in a layout. + + + + Forbid flipping + + + + Letter of pattern piece + + + + Name can't be empty + + DialogEditWrongFormula @@ -1466,6 +1478,10 @@ Functions + + Lengths to control points + + DialogEndLine @@ -1601,6 +1617,76 @@ + + DialogFlippingByAxis + + Dialog + + + + Origin point: + + + + Suffix: + + + + Axis type: + + + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Vertical axis + + + + Horizontal axis + + + + + DialogFlippingByLine + + Dialog + + + + First line point: + + + + Suffix: + + + + Second line point: + + + + Select first line point + + + + Select first line point that is not part of the list of objects + + + + Select second line point + + + + Select second line point that is not part of the list of objects + + + DialogGroup @@ -1968,6 +2054,10 @@ Search + + Curves control point lengths + + DialogLayoutProgress @@ -2502,6 +2592,49 @@ Apply settings anyway? + + DialogMove + + Dialog + + + + Angle: + + + + Formula wizard + + + + Value + + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + Length: + + + + Suffix: + + + + Edit angle + + + + Edit length + + + + Calculation + + + DialogNewMeasurements @@ -2829,26 +2962,22 @@ Apply settings anyway? Customer name: - - Created: - - Pattern size: - - Show measurements - - - - Show date of creation - - Use %1 and %2 to insert pattern size and height + + Show date of layout creation (%1) + + + + Show measurements file + + DialogPatternXmlEdit @@ -3400,10 +3529,6 @@ Apply settings anyway? Value - - Calulation - - <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -3420,6 +3545,18 @@ Apply settings anyway? Edit angle + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Calculation + + DialogSaveLAyout @@ -3715,10 +3852,6 @@ Apply settings anyway? Value - - Calulation - - <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -3747,6 +3880,10 @@ Apply settings anyway? Length can't be negative + + Calculation + + DialogSplinePath @@ -3802,10 +3939,6 @@ Apply settings anyway? Value - - Calulation - - <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -3838,6 +3971,10 @@ Apply settings anyway? Not used + + Calculation + + DialogTool @@ -4958,10 +5095,6 @@ Apakah anda ingin menyimpan perubahan anda? Measurement files types have not match. - - Measurements was synced - - Couldn't sync measurements. @@ -5118,10 +5251,6 @@ Apakah anda ingin menyimpan perubahan anda? (read only) - - Measurements was changed. Do you want to sync measurements now? - - Curve tool which uses point as control handle @@ -5210,6 +5339,30 @@ Apakah anda ingin menyimpan perubahan anda? The measurements file <br/><br/> <b>%1</b> <br/><br/> could not be found. Do you want to update the file location? + + Flipping objects by line + + + + Flipping objects by axis + + + + Move objects + + + + Measurements were changed. Do you want to sync measurements now? + + + + Gradation doesn't support inches + + + + Measurements have been synced + + MainWindowsNoGUI @@ -5317,6 +5470,13 @@ Apakah anda ingin menyimpan perubahan anda? + + OperationMoveLabel + + move point label + + + PathPage @@ -5402,6 +5562,18 @@ Apakah anda ingin menyimpan perubahan anda? Delete all + + Workpiece + + + + Forbid flipping + + + + By default forbid flipping for all workpieces + + QApplication @@ -5727,13 +5899,6 @@ Apakah anda ingin menyimpan perubahan anda? - - RotationMoveLabel - - move point label - - - SaveDetailOptions @@ -6091,18 +6256,6 @@ Do you want to save your changes? Ctrl+G - - 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. @@ -6298,6 +6451,10 @@ Do you want to save your changes? Size: + + All files + + TapeConfigDialog @@ -7163,6 +7320,18 @@ Do you want to save your changes? Unknown operation type '%1'. + + Error creating or updating operation of flipping by line + + + + Error creating or updating operation of flipping by axis + + + + Error creating or updating operation of moving + + VPatternConverter @@ -7185,11 +7354,11 @@ Do you want to save your changes? VTextManager - on Fold + cut - Cut + on fold @@ -7474,6 +7643,30 @@ Do you want to save your changes? Suffix + + Vertical axis + + + + Horizontal axis + + + + Tool move + + + + Tool flipping by line + + + + Tool flipping by axis + + + + Axis type + + VToolUnionDetails @@ -8528,6 +8721,26 @@ Do you want to save your changes? placeholder + + C1LengthSpl_ + Left symbol _ in the name + + + + C2LengthSpl_ + Left symbol _ in the name + + + + C1LengthSplPath + Do not add symbol _ to the end of the name + + + + C2LengthSplPath + Do not add symbol _ to the end of the name + + VVITConverter @@ -8553,6 +8766,22 @@ Do you want to save your changes? Unnamed + + Select all + + + + Select none + + + + select all details + + + + select none details + + VWidgetGroups @@ -8601,6 +8830,20 @@ Do you want to save your changes? + + VisToolMove + + Length = %1%2, angle = %3°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + + + VisToolRotation + + Rotating angle = %1°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + VisToolSpline diff --git a/share/translations/valentina_it_IT.ts b/share/translations/valentina_it_IT.ts index addaa4ab0..16084b7c5 100644 --- a/share/translations/valentina_it_IT.ts +++ b/share/translations/valentina_it_IT.ts @@ -12,7 +12,7 @@ AddGroup add group - + aggiungi gruppo @@ -278,22 +278,22 @@ The Default unit has been updated and will be used as the default for the next pattern you create. - + L'unità di default è stata aggiornata e verrà utilizzata come impostazione predefinita nella creazione del prossimo modello. 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. - + Dopo ogni crash Valentina recupera informazioni utili per risolvere un problema. Non raccogliamo informazioni personali. Scopri di più su <a href="https://bitbucket.org/dismine/valentina/wiki/manual/Crash_reports">tipo d'informazioni</a> raccolte. The text appears under the icon (recommended for beginners). - + Il testo appare sotto l'icona. (raccomandato per i principianti). DelGroup delete group - + Elimina gruppo @@ -321,19 +321,19 @@ Detail Fabric - + Tessuto Lining - + Imbottitura Interfacing - + Teletta Interlining - + Imbottitura interna @@ -372,7 +372,7 @@ Check For Updates - + Controlla gli aggiornamenti @@ -415,7 +415,7 @@ Check For Updates - + Controlla gli aggiornamenti @@ -613,7 +613,7 @@ Calulation - Calcolo + Calcolo First angle: @@ -864,13 +864,17 @@ DialogCubicBezier + + Cubic bezier + Curva di Bezier + Color: Colore: Name: - Nome: + Nome: First point: @@ -886,19 +890,19 @@ Fourth point: - + Quarto punto: Select the second point of curve - + Seleziona il secondo punto della curva Select the third point of curve - + Seleziona il terzo punto della curva Select the fourth point of curve - + Seleziona il quarto punto della curva Invalid spline @@ -906,18 +910,18 @@ Tool cubic bezier - + Strumento curva di bezier DialogCubicBezierPath Point: - + Punto: List of points - Lista di punti + Lista di punti Color: @@ -925,7 +929,7 @@ Name: - Nome: + Nome: Invalid spline path @@ -1372,74 +1376,110 @@ General - + Generale Pattern piece data - + Informazioni parte del modello Material/Cut number/Placement - + Materiale/Numero taglio/Posizione Material type: - + Tipo Materiale: Cut number: - + Numero taglio: Placement: - + Posizione: Add - + Aggiungi Cancel - Cancella + Cancella Remove - + Rimuovi Letter: - + Lettera: Detail label visible - + Dettaglio etichetta visibile Pattern label visible - + Modello etichetta visibile + + + Fabric + Tessuto + + + Lining + Imbottitura + + + Interfacing + Interfodera + + + Interlining + Imbottitura interna None - Nessuno + Nessun Cut on fold - + Taglio sulla piega Cut %1 of %2%3 - + Taglio %1 di %2%3 + + + on Fold + sulla Piega Update - + Aggiornamento on Fold - + sulla Piega You can choose one of the predefined materials or enter a new one + Puoi scegliere uno dei materiali predefiniti o aggiungerne uno nuovo + + + Forbid piece be mirrored in a layout. + + + + Forbid flipping + + + + Letter of pattern piece + + + + Name can't be empty @@ -1567,14 +1607,18 @@ Name - Nome + Nome Full name - Nome intero + Nome intero Functions + Funzioni + + + Lengths to control points @@ -1685,38 +1729,108 @@ DialogExportToCSV Export options - + Esporta opzioni Export - + Esporta With header - + Con intestazione Codec: - + Codec: Separator - + Separatore Tab - + Tab Comma - + Virgola Semicolon - + Semicolonna Space + Spazio + + + + DialogFlippingByAxis + + Dialog + Finestra + + + Origin point: + + + + Suffix: + Suffisso: + + + Axis type: + + + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Vertical axis + + + + Horizontal axis + + + + + DialogFlippingByLine + + Dialog + Finestra + + + First line point: + Primo punto della linea: + + + Suffix: + Suffisso: + + + Second line point: + Secondo punto della linea: + + + Select first line point + + + + Select first line point that is not part of the list of objects + + + + Select second line point + + + + Select second line point that is not part of the list of objects @@ -1724,23 +1838,23 @@ DialogGroup Group - + Gruppo Group name: - + Nome Gruppo: Unique pattern piece name - Nome unico del pezzo del modello + Nome unico del pezzo del modello Choose group name - + Scegli nome del gruppo New group - + Nuovo gruppo @@ -1938,23 +2052,23 @@ %1 - point of curves intersection - + %1 - punto di intersezione delle curve Curve - + Curva Cubic bezier curve - + Curva di bezier Arc - Arco + Arco %1 with length %2 - + %1 con lunghezza %2 Spline path @@ -1962,23 +2076,23 @@ Cubic bezier curve path - + Andamento curva di bezier %1 - cut %2 - + %1 - taglio %2 arc - + arco curve - + curva curve path - + andamento curva @@ -2129,15 +2243,19 @@ Invalid value - + Valore non valido Find: - Trova: + Trova: Search - Cerca + Cerca + + + Curves control point lengths + @@ -2349,7 +2467,7 @@ Applicare le impostazioni comunque? Layout options - + Opzioni di Layout Shift/Offset length: @@ -2359,6 +2477,10 @@ Applicare le impostazioni comunque? Rule for choosing the next workpiece + + Enabling for sheets that have big height will speed up creating. + Consenti ai fogli con un'altezza grande di velocizzare la creazione. + Divide into strips @@ -2371,18 +2493,22 @@ Applicare le impostazioni comunque? Set multiplier for length of the biggest workpiece in layout. + + x + x + Enabling for sheets that have big height will speed up creating. - + Consenti ai fogli con un'altezza maggiore di velocizzare la creazione. Printer: - + Stampa: None Printer - Nessuno + Nessun @@ -2722,6 +2848,53 @@ Applicare le impostazioni comunque? Deseleziona tutto + + DialogMove + + Dialog + Finestra + + + Angle: + Angolo: + + + Formula wizard + Formula magica + + + Value + + + + Calulation + Calcolo + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + Length: + Lunghezza: + + + Suffix: + Suffisso: + + + Edit angle + Modifica angolo + + + Edit length + Modifica lunghezza + + + Calculation + + + DialogNewMeasurements @@ -2801,11 +2974,11 @@ Applicare le impostazioni comunque? Choose unique pattern piece name. - + Scegli nome del pezzo del modello unico. New pattern - Nuovo pattern + Nuovo pattern @@ -2975,11 +3148,11 @@ Applicare le impostazioni comunque? Security - + Sicurezza Open only for read - + Apri solo per lettura Call context menu for edit @@ -2987,51 +3160,55 @@ Applicare le impostazioni comunque? No image - + Nessuna immagine Delete image - + Cancella immagine Change image - + Cambia immagine Save image to file - + Salva immagine in file Show image - + Mostra immagine Image for pattern - + Immagine per modello + + + Images (*.png *.jpg *.jpeg *.bmp) + Immagini (*.png *.jpg *.jpeg *.bmp) Images - + Immagini Save File - + Salva File untitled - senza titolo + senza titolo Path: - Path: + Percorso: Show in Explorer - Mostra in Explorer + Mostra in Explorer <Empty> - <Empty> + <Empty> File was not saved yet. @@ -3039,46 +3216,54 @@ Applicare le impostazioni comunque? Show in Finder - + Mostra nella barra di ricerca General info - + Info Generali Pattern name: - + Nome modello: Pattern number: - + Numero modello: Company/Designer name: - + Nome Azienda/Stilista: Customer name: - + Nome cliente: Created: - + Creato: Pattern size: - + Taglia modello: Show measurements - Mostra misure + Mostra misure Show date of creation - + Mostra data di creazione Use %1 and %2 to insert pattern size and height + Usa %1 e %2 per inserire la taglia e l'altezza del modello + + + Show date of layout creation (%1) + + + + Show measurements file @@ -3218,11 +3403,15 @@ Applicare le impostazioni comunque? Immediately apply - + Applica immediatamente + + + Type: + Tipo: Type: - Tipo: + Tipo: @@ -3565,7 +3754,7 @@ Applicare le impostazioni comunque? Tool point of intersetion arcs - + Strumento punto d'inserzione degli archi @@ -3672,22 +3861,22 @@ Applicare le impostazioni comunque? Tool point of intersection circles - + Strumento punto d'inserzione cerchi DialogPointOfIntersectionCurves Tool point of intersection curves - + Strumento punto d'inserzione curve First curve: - + Prima curva: Second curve: - + Seconda curva: Point label: @@ -3695,7 +3884,7 @@ Applicare le impostazioni comunque? Unique label - + Etichetta Choose unique label. @@ -3703,22 +3892,22 @@ Applicare le impostazioni comunque? Vertical correction: - + Correzione verticale: Horizontal correction: - + Correzione orizzontale: Select second curve - + Seleziona la seconda curva DialogRotation Rotation - + Rotazione Angle: @@ -3726,31 +3915,43 @@ Applicare le impostazioni comunque? Formula wizard - Formula magica + Formula magica Value - + Valore Calulation - Calcolo + Calcolo <html><head/><body><p>Show full calculation in message box</p></body></html> - + <html><head/><body><p>Mostra calcolo intero nella finestra di dialogo</p></body></html> Origin Point: - + Punto d'origine: Suffix: - + Suffisso: Edit angle - Modifica angolo + Modifica angolo + + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Calculation + @@ -4069,19 +4270,23 @@ Applicare le impostazioni comunque? Control point - + Controllo punto Angle: Angolo: + + Length ratio: + Proporzione lunghezza: + Second point: Secondo punto: Name: - Nome: + Nome: Invalid spline @@ -4093,19 +4298,19 @@ Applicare le impostazioni comunque? Formula wizard - Formula magica + Formula magica Value - + Valore Calulation - Calcolo + Calcolo <html><head/><body><p>Show full calculation in message box</p></body></html> - + <html><head/><body><p>Mostra calcolo intero nella finestra di dialogo</p></body></html> Edit first control point angle @@ -4125,10 +4330,14 @@ Applicare le impostazioni comunque? Error - Errore + Errore Length can't be negative + La lunghezza non può essere inferiore a 0 + + + Calculation @@ -4184,23 +4393,27 @@ Applicare le impostazioni comunque? Point: - + Punto: First control point - + Primo controllo del punto Angle: Angolo: + + Length ratio: + Proporzione lunghezza: + Second control point - + Secondo controllo del punto Name: - Nome: + Nome: Invalid spline path @@ -4212,19 +4425,19 @@ Applicare le impostazioni comunque? Formula wizard - Formula magica + Formula magica Value - + Valore Calulation - Calcolo + Calcolo <html><head/><body><p>Show full calculation in message box</p></body></html> - + <html><head/><body><p>Mostra calcolo intero nella finestra di dialogo</p></body></html> Edit first control point angle @@ -4244,14 +4457,18 @@ Applicare le impostazioni comunque? Error - Errore + Errore Length can't be negative - + La lunghezza non può essere inferiore a 0 Not used + Non in uso + + + Calculation @@ -4287,23 +4504,23 @@ Applicare le impostazioni comunque? Highest point - + Punto più alto Lowest point - + Punto più basso Leftmost point - + Punto più a sinistra Rightmost point - + Punto più a destra Invalid value - + Valore non valido @@ -4516,7 +4733,7 @@ Applicare le impostazioni comunque? Error while calculation formula. You can try to undo last operation or fix broken formula. - + Errore durante la formula di calcolo. Prova ad annullare l'ultima operazione o a correggere la formula errata. @@ -4559,14 +4776,14 @@ Applicare le impostazioni comunque? Retain original pieces - + Conserva pezzi originali FvUpdateWindow Software Update - + Aggiornamento Software A new version of %1 is available! @@ -4574,38 +4791,38 @@ Applicare le impostazioni comunque? %1 %2 is now available - you have %3. Would you like to download it now? - + %1 %2 è adesso disponibile - tu hai %3. Vuoi scaricarla ora? Skip This Version - + Salta Questa Versione Remind Me Later - + Ricordami in seguito Get Update - + Effettua l'aggiornamento FvUpdater Cannot open your default browser. - + Non è possibile aprire il browser predefinito. Feed download failed: %1. - + Download fallito: %1. Feed parsing failed: %1 %2. - + Analisi fallita: %1 %2. No updates were found. - + Non è stato trovato nessun aggiornamento. Feed error: invalid "enclosure" with the download link @@ -4613,11 +4830,11 @@ Applicare le impostazioni comunque? Error - Errore + Errore Information - Informazione + Informazioni @@ -5348,7 +5565,7 @@ Vuoi salvare i cambiamenti? Print tiled PDF - + Stampa PDF Split and print a layout into smaller pages (for regular printers) @@ -5493,7 +5710,7 @@ Vuoi salvare i cambiamenti? Measurements was synced - Le misure sono sincronizzate + Le misure sono sincronizzate Couldn't sync measurements. @@ -5557,7 +5774,7 @@ Vuoi salvare i cambiamenti? Preview tiled PDF - + Anteprima di stampa PDF Print preview tiled layout @@ -5617,7 +5834,7 @@ Vuoi salvare i cambiamenti? Locking file - + File bloccato This file already opened in another window. Ignore if you want to continue (not recommended, can cause a data corruption). @@ -5625,39 +5842,39 @@ Vuoi salvare i cambiamenti? The lock file could not be created, for lack of permissions. Ignore if you want to continue (not recommended, can cause a data corruption). - + Il file bloccato non può essere creato, per mancanza di autorizzazione. Ignora se vuoi continuare (scelta non consigliata, può causare un danneggiamento dei dati). 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). - + Si è verificato un errore sconosciuto, come ad esempio il fallimento di una partizione completa durante la trascrizione di un file bloccato. Ignora se vuoi continuare (scelta non consigliata, può causare un danneggiamento dei dati). The lock file could not be created, for lack of permissions. - + Il file bloccato non può essere creato, per mancanza di autorizzazione. Unknown error happened, for instance a full partition prevented writing out the lock file. - + Si è verificato un errore sconosciuto, come ad esempio il fallimento di una partizione completa durante la trascrizione di un file bloccato. Report Bug... - + Segnala Bug... Point intersection curves - + Punto intersezione curve Select first curve - + Seleziona prima curva (read only) - + (sola lettura) Measurements was changed. Do you want to sync measurements now? - + Le misure sono state modificate. Vuoi salvare le tue modifiche? Curve tool which uses point as control handle @@ -5665,27 +5882,35 @@ Vuoi salvare i cambiamenti? Select first curve point - + Seleziona il punto della prima curva Select point of cubic bezier path - + Seleziona punto del tracciato della curva di bezier + + + Toolbar pointer + Strumento puntatore Operations - + Operazioni Create new group - + Crea nuovo grupp + + + Groups + Gruppi Select one or more objects, <b>Enter</b> - finish creation - + Seleziona uno o più oggetti, <b>Enter</b> - termina creazione Rotate objects - + Ruote oggetti Close pattern @@ -5693,7 +5918,7 @@ Vuoi salvare i cambiamenti? Select one or more objects, <b>Enter</b> - confirm selection - + Seleziona uno o più oggetti, <b>Enter</b> - conferma selezione Tool pointer @@ -5701,11 +5926,11 @@ Vuoi salvare i cambiamenti? Midpoint between two points - + Punto medio tra due punti Group - + Gruppo Contains all visibility groups @@ -5713,38 +5938,62 @@ Vuoi salvare i cambiamenti? Show which details will go in layout - + Mostra quali dettagli saranno inseriti nel layout You can't use now the Layout mode. Please, include at least one detail in layout. - + Non puoi utilizzare la modalità Layout adesso. Per favore, inserisci almeno un dettagli nel layout. Original zoom - + Zoom originale Select first circle center - + Seleziona prima il centro del cerchio Select point on tangent - + Seleziona il punto di tangente Pattern Piece: - + Pezzo del modello: Height: - Altezza: + Altezza: Size: - Taglia: + Taglia: The measurements file <br/><br/> <b>%1</b> <br/><br/> could not be found. Do you want to update the file location? + Il file delle misure <br/><br/> <b>%1</b> <br/><br/> non è stato trovato. Vuoi aggiornare la posizione del file? + + + Flipping objects by line + + + + Flipping objects by axis + + + + Move objects + + + + Measurements were changed. Do you want to sync measurements now? + + + + Gradation doesn't support inches + + + + Measurements have been synced @@ -5828,7 +6077,7 @@ Vuoi salvare i cambiamenti? Pages will be cropped because they do not fit printer paper size. - + Le pagine verranno tagliate perchè non si adattano al formato della carta della stampante. Can't create path @@ -5874,6 +6123,13 @@ Vuoi salvare i cambiamenti? muovi percorso spline + + OperationMoveLabel + + move point label + muovi l'etichetta del punto + + PathPage @@ -5957,14 +6213,26 @@ Vuoi salvare i cambiamenti? All user defined materials have been deleted! - + Tutti i materiali definiti dall'utente sono stati eliminati! User defined materials - + Materiali definiti dall'utente Delete all + Elimina tutto + + + Workpiece + + + + Forbid flipping + + + + By default forbid flipping for all workpieces @@ -5972,11 +6240,11 @@ Vuoi salvare i cambiamenti? QApplication The path to the measurments is already relative. - + L'andamento delle misure è già relativo. The path to the measurments is already absolute. - + L'andamento delle misure è già assoluto. @@ -6071,7 +6339,7 @@ Vuoi salvare i cambiamenti? Changes applied. - + Modifiche applicate. @@ -6086,7 +6354,7 @@ Vuoi salvare i cambiamenti? Partial write. Partition full? - + Scrittura parziale. Partizione completa? @@ -6296,7 +6564,7 @@ Vuoi salvare i cambiamenti? RotationMoveLabel move point label - muovi l'etichetta del punto + muovi l'etichetta del punto @@ -6675,15 +6943,15 @@ Vuoi salvare le tue modifiche? Individual measurements (*.vit);;Standard measurements (*.vst);;All files (*.*) - Misure individuali (*.vit);;Misure Standard (*.vst);;Tutti i file (*.*) + Misure individuali (*.vit);;Misure Standard (*.vst);;Tutti i file (*.*) Standard measurements (*.vst);;Individual measurements (*.vit);;All files (*.*) - Misure standard (*.vst);;Misure individuali (*.vit);;Tutti i file (*.*) + Misure standard (*.vst);;Misure individuali (*.vit);;Tutti i file (*.*) Measurements (*.vst *.vit);;All files (*.*) - Misure (*.vst *.vit);;Tutti i file (*.*) + Misure (*.vst *.vit);;Tutti i file (*.*) Failed to lock. This file already opened in another window. @@ -6826,7 +7094,7 @@ Vuoi salvare le tue modifiche? Measurement's human-readable name. - + Nome leggibile della misura. Customer's name. @@ -6850,7 +7118,7 @@ Vuoi salvare le tue modifiche? Locking file - + File bloccato This file already opened in another window. Ignore if you want to continue (not recommended, can cause a data corruption). @@ -6858,55 +7126,63 @@ Vuoi salvare le tue modifiche? The lock file could not be created, for lack of permissions. Ignore if you want to continue (not recommended, can cause a data corruption). - + Il file bloccato non può essere creato, per mancanza di autorizzazione. Ignora se vuoi continuare (scelta non consigliata, può causare un danneggiamento dei dati). 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). - + Si è verificato un errore sconosciuto, come ad esempio il fallimento di una partizione completa durante la trascrizione di un file bloccato. Ignora se vuoi continuare (scelta non consigliata, può causare un danneggiamento dei dati). The lock file could not be created, for lack of permissions. - + Il file bloccato non può essere creato, per mancanza di autorizzazione. Unknown error happened, for instance a full partition prevented writing out the lock file. - + Si è verificato un errore sconosciuto, come ad esempio il fallimento di una partizione completa durante la trascrizione di un file bloccato. Export to CSV - + Esporta in CSV + + + Comma-Separated Values (*.cvs) + Virgola-Valori Separati (*.cvs) Invalid value - + Valore non valido Show in Finder - + Mostra nella barra di ricerca Comma-Separated Values - + Virgola-Valori Separati Customer's name - + Nome Cliente Customer's family name - + Cognome Cliente Customer's email address - + Indirizzo Email Cliente Height: - Altezza: + Altezza: Size: - Taglia: + Taglia: + + + All files + @@ -7034,7 +7310,7 @@ Vuoi salvare le tue modifiche? ToggleDetailInLayout detail in layout list - + dettagli nella lista layout @@ -7096,7 +7372,7 @@ Vuoi salvare le tue modifiche? Unexpected version "%1". - Inaspettata versione "%1". + Inaspettata versione "%1". @@ -7118,7 +7394,7 @@ Vuoi salvare le tue modifiche? New group - + Nuovo gruppo @@ -7849,6 +8125,18 @@ Vuoi salvare le tue modifiche? Unknown operation type '%1'. + + Error creating or updating operation of flipping by line + + + + Error creating or updating operation of flipping by axis + + + + Error creating or updating operation of moving + + VPatternConverter @@ -7874,12 +8162,20 @@ Vuoi salvare le tue modifiche? VTextManager + + on Fold + sulla Piega + on Fold + sulla Piega + + + cut - Cut + on fold @@ -8106,19 +8402,19 @@ Vuoi salvare le tue modifiche? Highest point - + Punto più alto Lowest point - + Punto più basso Leftmost point - + Punto più a sinistra Rightmost point - + Punto più a destra Tool to make point from intersection two curves @@ -8134,7 +8430,7 @@ Vuoi salvare le tue modifiche? Name - Nome + Neom C1: angle @@ -8154,7 +8450,7 @@ Vuoi salvare le tue modifiche? Cubic bezier curve - + Curva di bezier Tool cubic bezier curve @@ -8168,6 +8464,30 @@ Vuoi salvare le tue modifiche? Suffix + + Vertical axis + + + + Horizontal axis + + + + Tool move + + + + Tool flipping by line + + + + Tool flipping by axis + + + + Axis type + + VToolUnionDetails @@ -9242,6 +9562,26 @@ Vuoi salvare le tue modifiche? placeholder + + C1LengthSpl_ + Left symbol _ in the name + + + + C2LengthSpl_ + Left symbol _ in the name + + + + C1LengthSplPath + Do not add symbol _ to the end of the name + + + + C2LengthSplPath + Do not add symbol _ to the end of the name + + VVITConverter @@ -9275,6 +9615,22 @@ Vuoi salvare le tue modifiche? Unnamed + + Select all + + + + Select none + + + + select all details + + + + select none details + + VWidgetGroups @@ -9323,6 +9679,20 @@ Vuoi salvare le tue modifiche? + + VisToolMove + + Length = %1%2, angle = %3°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + + + VisToolRotation + + Rotating angle = %1°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + VisToolSpline @@ -9385,7 +9755,7 @@ Vuoi salvare le tue modifiche? Information - Informazione + Informazioni diff --git a/share/translations/valentina_nl_NL.ts b/share/translations/valentina_nl_NL.ts index 0439d74f3..062bd02a9 100644 --- a/share/translations/valentina_nl_NL.ts +++ b/share/translations/valentina_nl_NL.ts @@ -613,7 +613,7 @@ Calulation - Berekening + Berekening First angle: @@ -1470,6 +1470,22 @@ You can choose one of the predefined materials or enter a new one + + Forbid piece be mirrored in a layout. + + + + Forbid flipping + + + + Letter of pattern piece + + + + Name can't be empty + + DialogEditWrongFormula @@ -1605,6 +1621,10 @@ Functions + + Lengths to control points + + DialogEndLine @@ -1748,6 +1768,76 @@ Spatie + + DialogFlippingByAxis + + Dialog + Dialoog + + + Origin point: + + + + Suffix: + Achtervoegsel: + + + Axis type: + + + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Vertical axis + + + + Horizontal axis + + + + + DialogFlippingByLine + + Dialog + Dialoog + + + First line point: + Eerste lijnpunt: + + + Suffix: + Achtervoegsel: + + + Second line point: + Tweede lijnpunt: + + + Select first line point + + + + Select first line point that is not part of the list of objects + + + + Select second line point + + + + Select second line point that is not part of the list of objects + + + DialogGroup @@ -2167,6 +2257,10 @@ Search Zoek + + Curves control point lengths + + DialogLayoutProgress @@ -2758,6 +2852,53 @@ Toch de instellingen aanpassen? Alles uitvinken + + DialogMove + + Dialog + Dialoog + + + Angle: + Hoek: + + + Formula wizard + Formule wizard + + + Value + Waarde + + + Calulation + Berekening + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + Length: + Lengte: + + + Suffix: + Achtervoegsel: + + + Edit angle + Verander de hoek + + + Edit length + + + + Calculation + Berekening + + DialogNewMeasurements @@ -3103,7 +3244,7 @@ Toch de instellingen aanpassen? Created: - Gecreëerd: + Gecreëerd: Pattern size: @@ -3111,16 +3252,24 @@ Toch de instellingen aanpassen? Show measurements - Toon maten + Toon maten Show date of creation - Toon datum van creatie + Toon datum van creatie Use %1 and %2 to insert pattern size and height + + Show date of layout creation (%1) + + + + Show measurements file + + DialogPatternXmlEdit @@ -3778,7 +3927,7 @@ Toch de instellingen aanpassen? Calulation - Berekening + Berekening <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -3796,6 +3945,18 @@ Toch de instellingen aanpassen? Edit angle Verander de hoek + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Calculation + Berekening + DialogSaveLAyout @@ -4153,7 +4314,7 @@ Toch de instellingen aanpassen? Calulation - Berekening + Berekening <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -4183,6 +4344,10 @@ Toch de instellingen aanpassen? Length can't be negative De lengte kan niet negatief zijn + + Calculation + Berekening + DialogSplinePath @@ -4276,7 +4441,7 @@ Toch de instellingen aanpassen? Calulation - Berekening + Berekening <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -4310,6 +4475,10 @@ Toch de instellingen aanpassen? Not used Niet gebruikt + + Calculation + Berekening + DialogTool @@ -5548,7 +5717,7 @@ Do you want to save your changes? Measurements was synced - Maten zijn gesynchroniseerd + Maten zijn gesynchroniseerd Couldn't sync measurements. @@ -5712,7 +5881,7 @@ Do you want to save your changes? Measurements was changed. Do you want to sync measurements now? - Maten zijn veranderd. Wil je nu maten synchroniseren? + Maten zijn veranderd. Wil je nu maten synchroniseren? Curve tool which uses point as control handle @@ -5810,6 +5979,30 @@ Do you want to save your changes? The measurements file <br/><br/> <b>%1</b> <br/><br/> could not be found. Do you want to update the file location? Het maten bestand<br/><br/> <b>%1</b> <br/><br/> kon niet gevonden worden. Wil je de bestanden locatie bijwerken? + + Flipping objects by line + + + + Flipping objects by axis + + + + Move objects + + + + Measurements were changed. Do you want to sync measurements now? + + + + Gradation doesn't support inches + + + + Measurements have been synced + + MainWindowsNoGUI @@ -5937,6 +6130,13 @@ Do you want to save your changes? Verplaats vrijevormkrommingspad + + OperationMoveLabel + + move point label + + + PathPage @@ -6030,6 +6230,18 @@ Do you want to save your changes? Delete all + + Workpiece + + + + Forbid flipping + + + + By default forbid flipping for all workpieces + + QApplication @@ -6359,7 +6571,7 @@ Do you want to save your changes? RotationMoveLabel move point label - verplaats punt label + verplaats punt label @@ -6738,15 +6950,15 @@ Wil je deze veranderingen opslaan? Individual measurements (*.vit);;Standard measurements (*.vst);;All files (*.*) - Individuele maten (*.vit);;Standaard maten (*vst);;Alle bestanden(*.*) + Individuele maten (*.vit);;Standaard maten (*vst);;Alle bestanden(*.*) Standard measurements (*.vst);;Individual measurements (*.vit);;All files (*.*) - Standaard maten(*.vst);;Individuele maten(*.vit);;Alle bestanden(*.*) + Standaard maten(*.vst);;Individuele maten(*.vit);;Alle bestanden(*.*) Measurements (*.vst *.vit);;All files (*.*) - Maten(*.vst *.vit);;Alle bestanden(*.*) + Maten(*.vst *.vit);;Alle bestanden(*.*) Failed to lock. This file already opened in another window. @@ -6975,6 +7187,10 @@ Wil je deze veranderingen opslaan? Size: Maat: + + All files + + TapeConfigDialog @@ -7934,6 +8150,18 @@ Wil je deze veranderingen opslaan? Unknown operation type '%1'. Onbekende actie type '%1'. + + Error creating or updating operation of flipping by line + + + + Error creating or updating operation of flipping by axis + + + + Error creating or updating operation of moving + + VPatternConverter @@ -7973,10 +8201,14 @@ Wil je deze veranderingen opslaan? on Fold - Op vouw + Op vouw - Cut + cut + + + + on fold @@ -8265,6 +8497,30 @@ Wil je deze veranderingen opslaan? Suffix Achtervoegsel + + Vertical axis + + + + Horizontal axis + + + + Tool move + + + + Tool flipping by line + + + + Tool flipping by axis + + + + Axis type + + VToolUnionDetails @@ -9384,6 +9640,26 @@ Wil je deze veranderingen opslaan? placeholder + + C1LengthSpl_ + Left symbol _ in the name + + + + C2LengthSpl_ + Left symbol _ in the name + + + + C1LengthSplPath + Do not add symbol _ to the end of the name + + + + C2LengthSplPath + Do not add symbol _ to the end of the name + + VVITConverter @@ -9417,6 +9693,22 @@ Wil je deze veranderingen opslaan? Unnamed Onbenoemd + + Select all + + + + Select none + + + + select all details + + + + select none details + + VWidgetGroups @@ -9473,6 +9765,20 @@ Wil je deze veranderingen opslaan? <b>Kruising tussen lijn en as</b>: hoek = %1°; <b>Shift</b> - klevende hoek, <b>Enter</b> - voltooi creatie + + VisToolMove + + Length = %1%2, angle = %3°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + + + VisToolRotation + + Rotating angle = %1°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + VisToolSpline diff --git a/share/translations/valentina_pt_BR.ts b/share/translations/valentina_pt_BR.ts index eaa69e9f0..da68c00e6 100644 --- a/share/translations/valentina_pt_BR.ts +++ b/share/translations/valentina_pt_BR.ts @@ -605,7 +605,7 @@ Calulation - Cálculo + Cálculo First angle: @@ -1430,6 +1430,22 @@ You can choose one of the predefined materials or enter a new one + + Forbid piece be mirrored in a layout. + + + + Forbid flipping + + + + Letter of pattern piece + + + + Name can't be empty + + DialogEditWrongFormula @@ -1561,6 +1577,10 @@ Functions + + Lengths to control points + + DialogEndLine @@ -1700,6 +1720,76 @@ + + DialogFlippingByAxis + + Dialog + + + + Origin point: + + + + Suffix: + + + + Axis type: + + + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Vertical axis + + + + Horizontal axis + + + + + DialogFlippingByLine + + Dialog + + + + First line point: + + + + Suffix: + + + + Second line point: + + + + Select first line point + + + + Select first line point that is not part of the list of objects + + + + Select second line point + + + + Select second line point that is not part of the list of objects + + + DialogGroup @@ -2075,6 +2165,10 @@ Search + + Curves control point lengths + + DialogLayoutProgress @@ -2617,6 +2711,53 @@ Apply settings anyway? + + DialogMove + + Dialog + + + + Angle: + Ângulo: + + + Formula wizard + Auxiliar de fórmula + + + Value + Valor + + + Calulation + Cálculo + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + Length: + Comprimento: + + + Suffix: + + + + Edit angle + Editar ângulo + + + Edit length + Editar comprimento + + + Calculation + Cálculo + + DialogNewMeasurements @@ -2944,26 +3085,22 @@ Apply settings anyway? Customer name: - - Created: - - Pattern size: - - Show measurements - - - - Show date of creation - - Use %1 and %2 to insert pattern size and height + + Show date of layout creation (%1) + + + + Show measurements file + + DialogPatternXmlEdit @@ -3521,7 +3658,7 @@ Apply settings anyway? Calulation - Cálculo + Cálculo <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -3539,6 +3676,18 @@ Apply settings anyway? Edit angle Editar ângulo + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Calculation + Cálculo + DialogSaveLAyout @@ -3844,7 +3993,7 @@ Apply settings anyway? Calulation - Cálculo + Cálculo <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -3874,6 +4023,10 @@ Apply settings anyway? Length can't be negative + + Calculation + Cálculo + DialogSplinePath @@ -3935,7 +4088,7 @@ Apply settings anyway? Calulation - Cálculo + Cálculo <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -3969,6 +4122,10 @@ Apply settings anyway? Not used + + Calculation + Cálculo + DialogTool @@ -5096,10 +5253,6 @@ Do you want to save your changes? Measurement files types have not match. - - Measurements was synced - - Couldn't sync measurements. @@ -5256,10 +5409,6 @@ Do you want to save your changes? (read only) - - Measurements was changed. Do you want to sync measurements now? - - Curve tool which uses point as control handle @@ -5348,6 +5497,30 @@ Do you want to save your changes? The measurements file <br/><br/> <b>%1</b> <br/><br/> could not be found. Do you want to update the file location? + + Flipping objects by line + + + + Flipping objects by axis + + + + Move objects + + + + Measurements were changed. Do you want to sync measurements now? + + + + Gradation doesn't support inches + + + + Measurements have been synced + + MainWindowsNoGUI @@ -5455,6 +5628,13 @@ Do you want to save your changes? + + OperationMoveLabel + + move point label + + + PathPage @@ -5540,6 +5720,18 @@ Do you want to save your changes? Delete all + + Workpiece + + + + Forbid flipping + + + + By default forbid flipping for all workpieces + + QApplication @@ -5865,13 +6057,6 @@ Do you want to save your changes? - - RotationMoveLabel - - move point label - - - SaveDetailOptions @@ -6237,18 +6422,6 @@ Do you want to save your changes? Ctrl+G - - 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. @@ -6444,6 +6617,10 @@ Do you want to save your changes? Size: + + All files + + TapeConfigDialog @@ -7309,6 +7486,18 @@ Do you want to save your changes? Unknown operation type '%1'. + + Error creating or updating operation of flipping by line + + + + Error creating or updating operation of flipping by axis + + + + Error creating or updating operation of moving + + VPatternConverter @@ -7335,11 +7524,11 @@ Do you want to save your changes? VTextManager - on Fold + cut - Cut + on fold @@ -7624,6 +7813,30 @@ Do you want to save your changes? Suffix + + Vertical axis + + + + Horizontal axis + + + + Tool move + + + + Tool flipping by line + + + + Tool flipping by axis + + + + Axis type + + VToolUnionDetails @@ -8698,6 +8911,26 @@ Do you want to save your changes? placeholder + + C1LengthSpl_ + Left symbol _ in the name + + + + C2LengthSpl_ + Left symbol _ in the name + + + + C1LengthSplPath + Do not add symbol _ to the end of the name + + + + C2LengthSplPath + Do not add symbol _ to the end of the name + + VVITConverter @@ -8731,6 +8964,22 @@ Do you want to save your changes? Unnamed + + Select all + + + + Select none + + + + select all details + + + + select none details + + VWidgetGroups @@ -8783,6 +9032,20 @@ Do you want to save your changes? + + VisToolMove + + Length = %1%2, angle = %3°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + + + VisToolRotation + + Rotating angle = %1°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + VisToolSpline diff --git a/share/translations/valentina_ro_RO.ts b/share/translations/valentina_ro_RO.ts index 4475c3a75..4b8fc1318 100644 --- a/share/translations/valentina_ro_RO.ts +++ b/share/translations/valentina_ro_RO.ts @@ -613,7 +613,7 @@ Calulation - Calcul + Calcul First angle: @@ -1442,6 +1442,22 @@ You can choose one of the predefined materials or enter a new one + + Forbid piece be mirrored in a layout. + + + + Forbid flipping + + + + Letter of pattern piece + + + + Name can't be empty + + DialogEditWrongFormula @@ -1569,6 +1585,10 @@ Functions + + Lengths to control points + + DialogEndLine @@ -1712,6 +1732,76 @@ + + DialogFlippingByAxis + + Dialog + Dialog + + + Origin point: + + + + Suffix: + + + + Axis type: + + + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Vertical axis + + + + Horizontal axis + + + + + DialogFlippingByLine + + Dialog + Dialog + + + First line point: + + + + Suffix: + + + + Second line point: + + + + Select first line point + + + + Select first line point that is not part of the list of objects + + + + Select second line point + + + + Select second line point that is not part of the list of objects + + + DialogGroup @@ -2119,6 +2209,10 @@ Search + + Curves control point lengths + + DialogLayoutProgress @@ -2685,6 +2779,53 @@ Apply settings anyway? + + DialogMove + + Dialog + Dialog + + + Angle: + Unghi: + + + Formula wizard + Asistent Formulă + + + Value + Valoare + + + Calulation + Calcul + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + <html><head/><body><p> Arată calcul complet în message box </p></body></html> + + + Length: + Lungime: + + + Suffix: + + + + Edit angle + + + + Edit length + + + + Calculation + Calcul + + DialogNewMeasurements @@ -3024,26 +3165,22 @@ Apply settings anyway? Customer name: - - Created: - - Pattern size: - - Show measurements - - - - Show date of creation - - Use %1 and %2 to insert pattern size and height + + Show date of layout creation (%1) + + + + Show measurements file + + DialogPatternXmlEdit @@ -3621,7 +3758,7 @@ Apply settings anyway? Calulation - Calcul + Calcul <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -3639,6 +3776,18 @@ Apply settings anyway? Edit angle + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Calculation + Calcul + DialogSaveLAyout @@ -3968,7 +4117,7 @@ Apply settings anyway? Calulation - Calcul + Calcul <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -3998,6 +4147,10 @@ Apply settings anyway? Length can't be negative + + Calculation + Calcul + DialogSplinePath @@ -4083,7 +4236,7 @@ Apply settings anyway? Calulation - Calcul + Calcul <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -4117,6 +4270,10 @@ Apply settings anyway? Not used + + Calculation + Calcul + DialogTool @@ -5296,10 +5453,6 @@ Do you want to save your changes? Measurement files types have not match. - - Measurements was synced - - Couldn't sync measurements. @@ -5456,10 +5609,6 @@ Do you want to save your changes? (read only) - - Measurements was changed. Do you want to sync measurements now? - - Curve tool which uses point as control handle @@ -5548,6 +5697,30 @@ Do you want to save your changes? The measurements file <br/><br/> <b>%1</b> <br/><br/> could not be found. Do you want to update the file location? + + Flipping objects by line + + + + Flipping objects by axis + + + + Move objects + + + + Measurements were changed. Do you want to sync measurements now? + + + + Gradation doesn't support inches + + + + Measurements have been synced + + MainWindowsNoGUI @@ -5655,6 +5828,13 @@ Do you want to save your changes? + + OperationMoveLabel + + move point label + + + PathPage @@ -5740,6 +5920,18 @@ Do you want to save your changes? Delete all + + Workpiece + + + + Forbid flipping + + + + By default forbid flipping for all workpieces + + QApplication @@ -6065,13 +6257,6 @@ Do you want to save your changes? - - RotationMoveLabel - - move point label - - - SaveDetailOptions @@ -6437,18 +6622,6 @@ Do you want to save your changes? Ctrl+G - - 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. @@ -6644,6 +6817,10 @@ Do you want to save your changes? Size: + + All files + + TapeConfigDialog @@ -7509,6 +7686,18 @@ Do you want to save your changes? Unknown operation type '%1'. + + Error creating or updating operation of flipping by line + + + + Error creating or updating operation of flipping by axis + + + + Error creating or updating operation of moving + + VPatternConverter @@ -7531,11 +7720,11 @@ Do you want to save your changes? VTextManager - on Fold + cut - Cut + on fold @@ -7820,6 +8009,30 @@ Do you want to save your changes? Suffix + + Vertical axis + + + + Horizontal axis + + + + Tool move + + + + Tool flipping by line + + + + Tool flipping by axis + + + + Axis type + + VToolUnionDetails @@ -8879,6 +9092,26 @@ Do you want to save your changes? placeholder + + C1LengthSpl_ + Left symbol _ in the name + + + + C2LengthSpl_ + Left symbol _ in the name + + + + C1LengthSplPath + Do not add symbol _ to the end of the name + + + + C2LengthSplPath + Do not add symbol _ to the end of the name + + VVITConverter @@ -8904,6 +9137,22 @@ Do you want to save your changes? Unnamed + + Select all + + + + Select none + + + + select all details + + + + select none details + + VWidgetGroups @@ -8952,6 +9201,20 @@ Do you want to save your changes? + + VisToolMove + + Length = %1%2, angle = %3°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + + + VisToolRotation + + Rotating angle = %1°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + VisToolSpline diff --git a/share/translations/valentina_ru_RU.ts b/share/translations/valentina_ru_RU.ts index 4a852b346..746f87e45 100644 --- a/share/translations/valentina_ru_RU.ts +++ b/share/translations/valentina_ru_RU.ts @@ -262,7 +262,7 @@ Pattern making system - Система создания выроек + Система создания выкроек Pattern making system: @@ -613,7 +613,7 @@ Calulation - Расчёт + Расчёт First angle: @@ -1442,6 +1442,22 @@ You can choose one of the predefined materials or enter a new one + + Forbid piece be mirrored in a layout. + + + + Forbid flipping + + + + Letter of pattern piece + + + + Name can't be empty + + DialogEditWrongFormula @@ -1577,6 +1593,10 @@ Functions + + Lengths to control points + + DialogEndLine @@ -1720,6 +1740,76 @@ + + DialogFlippingByAxis + + Dialog + Диалог + + + Origin point: + + + + Suffix: + + + + Axis type: + + + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Vertical axis + + + + Horizontal axis + + + + + DialogFlippingByLine + + Dialog + Диалог + + + First line point: + Первая точка линии: + + + Suffix: + + + + Second line point: + Вторая точка линии: + + + Select first line point + + + + Select first line point that is not part of the list of objects + + + + Select second line point + + + + Select second line point that is not part of the list of objects + + + DialogGroup @@ -2139,6 +2229,10 @@ Search Поиск + + Curves control point lengths + + DialogLayoutProgress @@ -2722,6 +2816,53 @@ Apply settings anyway? Снять выделение со всех + + DialogMove + + Dialog + Диалог + + + Angle: + Угол: + + + Formula wizard + Мастер формул + + + Value + Значение + + + Calulation + Расчёт + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + Length: + Длина: + + + Suffix: + + + + Edit angle + Редактрировать угол + + + Edit length + Редактировать длину + + + Calculation + Расчёт + + DialogNewMeasurements @@ -3061,24 +3202,20 @@ Apply settings anyway? Customer name: - - Created: - - Pattern size: - Show measurements - Показать мерки - - - Show date of creation + Use %1 and %2 to insert pattern size and height - Use %1 and %2 to insert pattern size and height + Show date of layout creation (%1) + + + + Show measurements file @@ -3734,7 +3871,7 @@ Apply settings anyway? Calulation - Расчёт + Расчёт <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -3752,6 +3889,18 @@ Apply settings anyway? Edit angle Редактрировать угол + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Calculation + Расчёт + DialogSaveLAyout @@ -4101,7 +4250,7 @@ Apply settings anyway? Calulation - Расчёт + Расчёт <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -4131,6 +4280,10 @@ Apply settings anyway? Length can't be negative + + Calculation + Расчёт + DialogSplinePath @@ -4220,7 +4373,7 @@ Apply settings anyway? Calulation - Расчёт + Расчёт <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -4254,6 +4407,10 @@ Apply settings anyway? Not used + + Calculation + Расчёт + DialogTool @@ -5493,7 +5650,7 @@ Do you want to save your changes? Measurements was synced - Мерки синхронизированы + Мерки синхронизированы Couldn't sync measurements. @@ -5655,10 +5812,6 @@ Do you want to save your changes? (read only) - - Measurements was changed. Do you want to sync measurements now? - - Curve tool which uses point as control handle @@ -5747,6 +5900,30 @@ Do you want to save your changes? The measurements file <br/><br/> <b>%1</b> <br/><br/> could not be found. Do you want to update the file location? + + Flipping objects by line + + + + Flipping objects by axis + + + + Move objects + + + + Measurements were changed. Do you want to sync measurements now? + + + + Gradation doesn't support inches + + + + Measurements have been synced + + MainWindowsNoGUI @@ -5874,6 +6051,13 @@ Do you want to save your changes? переместить сложный сплайн + + OperationMoveLabel + + move point label + переместить метку точки + + PathPage @@ -5967,6 +6151,18 @@ Do you want to save your changes? Delete all + + Workpiece + + + + Forbid flipping + + + + By default forbid flipping for all workpieces + + QApplication @@ -6292,13 +6488,6 @@ Do you want to save your changes? переименовать чертёж - - RotationMoveLabel - - move point label - переместить метку точки - - SaveDetailOptions @@ -6437,7 +6626,7 @@ Do you want to save your changes? Family name: - Фамилиия: + Фамилия: Birth date: @@ -6675,15 +6864,15 @@ Do you want to save your changes? Individual measurements (*.vit);;Standard measurements (*.vst);;All files (*.*) - Индивидуальные мерки (*.vit);;Стандартные мерки (*.vst);;Все файлы (*.*) + Индивидуальные мерки (*.vit);;Стандартные мерки (*.vst);;Все файлы (*.*) Standard measurements (*.vst);;Individual measurements (*.vit);;All files (*.*) - Стандартные мерки (*.vst);;Индивидуальные мерки (*.vit);;Все файлы (*.*) + Стандартные мерки (*.vst);;Индивидуальные мерки (*.vit);;Все файлы (*.*) Measurements (*.vst *.vit);;All files (*.*) - Мерки (*.vst *.vit);;Все файлы (*.*) + Мерки (*.vst *.vit);;Все файлы (*.*) Failed to lock. This file already opened in another window. @@ -6908,6 +7097,10 @@ Do you want to save your changes? Size: Размер: + + All files + + TapeConfigDialog @@ -6948,7 +7141,7 @@ Do you want to save your changes? Pattern making system - Система создания выроек + Система создания выкроек Author: @@ -7867,6 +8060,18 @@ Do you want to save your changes? Unknown operation type '%1'. + + Error creating or updating operation of flipping by line + + + + Error creating or updating operation of flipping by axis + + + + Error creating or updating operation of moving + + VPatternConverter @@ -7897,11 +8102,11 @@ Do you want to save your changes? VTextManager - on Fold + cut - Cut + on fold @@ -8190,6 +8395,30 @@ Do you want to save your changes? Suffix + + Vertical axis + + + + Horizontal axis + + + + Tool move + + + + Tool flipping by line + + + + Tool flipping by axis + + + + Axis type + + VToolUnionDetails @@ -9314,6 +9543,26 @@ Do you want to save your changes? height placeholder + Рост + + + C1LengthSpl_ + Left symbol _ in the name + + + + C2LengthSpl_ + Left symbol _ in the name + + + + C1LengthSplPath + Do not add symbol _ to the end of the name + + + + C2LengthSplPath + Do not add symbol _ to the end of the name @@ -9349,6 +9598,22 @@ Do you want to save your changes? Unnamed + + Select all + + + + Select none + + + + select all details + + + + select none details + + VWidgetGroups @@ -9401,6 +9666,20 @@ Do you want to save your changes? <b>Пересечение линии и оси</b>: угол = %1°; <b>Shift</b> - "фиксация угола, <b>Enter</b> - завершение создания + + VisToolMove + + Length = %1%2, angle = %3°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + + + VisToolRotation + + Rotating angle = %1°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + VisToolSpline diff --git a/share/translations/valentina_uk_UA.ts b/share/translations/valentina_uk_UA.ts index 183b98b94..2cf5c2a28 100644 --- a/share/translations/valentina_uk_UA.ts +++ b/share/translations/valentina_uk_UA.ts @@ -613,7 +613,7 @@ Calulation - Розрахунок + Розрахунок First angle: @@ -1462,6 +1462,22 @@ You can choose one of the predefined materials or enter a new one + + Forbid piece be mirrored in a layout. + + + + Forbid flipping + + + + Letter of pattern piece + + + + Name can't be empty + + DialogEditWrongFormula @@ -1597,6 +1613,10 @@ Functions + + Lengths to control points + + DialogEndLine @@ -1740,6 +1760,76 @@ Пробіл + + DialogFlippingByAxis + + Dialog + Діалог + + + Origin point: + + + + Suffix: + Суфікс: + + + Axis type: + + + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Vertical axis + + + + Horizontal axis + + + + + DialogFlippingByLine + + Dialog + Діалог + + + First line point: + Перша точка лінії: + + + Suffix: + Суфікс: + + + Second line point: + Друга точка лінії: + + + Select first line point + + + + Select first line point that is not part of the list of objects + + + + Select second line point + + + + Select second line point that is not part of the list of objects + + + DialogGroup @@ -2159,6 +2249,10 @@ Search Пошук + + Curves control point lengths + + DialogLayoutProgress @@ -2746,6 +2840,53 @@ Apply settings anyway? Зняти виділення з усіх + + DialogMove + + Dialog + Діалог + + + Angle: + Кут: + + + Formula wizard + + + + Value + Значення + + + Calulation + Розрахунок + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + <html><head/><body><р>Показати повний розрахунок у вікні повідомлення</p></body</html> + + + Length: + Довжина: + + + Suffix: + Суфікс: + + + Edit angle + Редагувати кут + + + Edit length + Редагувати довжину + + + Calculation + Розрахунок + + DialogNewMeasurements @@ -3087,7 +3228,7 @@ Apply settings anyway? Created: - Створено: + Створено: Pattern size: @@ -3095,16 +3236,24 @@ Apply settings anyway? Show measurements - Показати мірки + Показати мірки Show date of creation - Показати дату створення + Показати дату створення Use %1 and %2 to insert pattern size and height + + Show date of layout creation (%1) + + + + Show measurements file + + DialogPatternXmlEdit @@ -3758,7 +3907,7 @@ Apply settings anyway? Calulation - Розрахунок + Розрахунок <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -3776,6 +3925,18 @@ Apply settings anyway? Edit angle Редагувати кут + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Calculation + Розрахунок + DialogSaveLAyout @@ -4129,7 +4290,7 @@ Apply settings anyway? Calulation - Розрахунок + Розрахунок <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -4159,6 +4320,10 @@ Apply settings anyway? Length can't be negative Довжина не може мати від'ємне значення + + Calculation + Розрахунок + DialogSplinePath @@ -4252,7 +4417,7 @@ Apply settings anyway? Calulation - Розрахунок + Розрахунок <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -4286,6 +4451,10 @@ Apply settings anyway? Not used Не використовується + + Calculation + Розрахунок + DialogTool @@ -5524,7 +5693,7 @@ Do you want to save your changes? Measurements was synced - Мірки було синхронізовано + Мірки було синхронізовано Couldn't sync measurements. @@ -5688,7 +5857,7 @@ Do you want to save your changes? Measurements was changed. Do you want to sync measurements now? - Мірки були змінені. Бажаєте синхронізувати мірки зараз? + Мірки були змінені. Бажаєте синхронізувати мірки зараз? Curve tool which uses point as control handle @@ -5786,6 +5955,30 @@ Do you want to save your changes? The measurements file <br/><br/> <b>%1</b> <br/><br/> could not be found. Do you want to update the file location? + + Flipping objects by line + + + + Flipping objects by axis + + + + Move objects + + + + Measurements were changed. Do you want to sync measurements now? + + + + Gradation doesn't support inches + + + + Measurements have been synced + + MainWindowsNoGUI @@ -5913,6 +6106,13 @@ Do you want to save your changes? переміщення складного сплайну + + OperationMoveLabel + + move point label + перемістити мітку точки + + PathPage @@ -6006,6 +6206,18 @@ Do you want to save your changes? Delete all + + Workpiece + + + + Forbid flipping + + + + By default forbid flipping for all workpieces + + QApplication @@ -6335,7 +6547,7 @@ Do you want to save your changes? RotationMoveLabel move point label - перемістити мітку точки + перемістити мітку точки @@ -6714,15 +6926,15 @@ Do you want to save your changes? Individual measurements (*.vit);;Standard measurements (*.vst);;All files (*.*) - Індивідуальні мірки (*.vit);;Стандартні мірки (*.vst);;Всі файли (*.*) + Індивідуальні мірки (*.vit);;Стандартні мірки (*.vst);;Всі файли (*.*) Standard measurements (*.vst);;Individual measurements (*.vit);;All files (*.*) - Стандартні мірки (*.vst);;Індивідуальні мірки (*.vit);;Всі файли (*.*) + Стандартні мірки (*.vst);;Індивідуальні мірки (*.vit);;Всі файли (*.*) Measurements (*.vst *.vit);;All files (*.*) - Мірки (*.vst *.vit);;Всі файли (*.*) + Мірки (*.vst *.vit);;Всі файли (*.*) Failed to lock. This file already opened in another window. @@ -6947,6 +7159,10 @@ Do you want to save your changes? Size: Розмір: + + All files + + TapeConfigDialog @@ -7905,6 +8121,18 @@ Do you want to save your changes? Unknown operation type '%1'. Невідома операція '%1'. + + Error creating or updating operation of flipping by line + + + + Error creating or updating operation of flipping by axis + + + + Error creating or updating operation of moving + + VPatternConverter @@ -7935,11 +8163,11 @@ Do you want to save your changes? VTextManager - on Fold + cut - Cut + on fold @@ -8228,6 +8456,30 @@ Do you want to save your changes? Suffix Суфікс + + Vertical axis + + + + Horizontal axis + + + + Tool move + + + + Tool flipping by line + + + + Tool flipping by axis + + + + Axis type + + VToolUnionDetails @@ -9347,6 +9599,26 @@ Do you want to save your changes? placeholder + + C1LengthSpl_ + Left symbol _ in the name + + + + C2LengthSpl_ + Left symbol _ in the name + + + + C1LengthSplPath + Do not add symbol _ to the end of the name + + + + C2LengthSplPath + Do not add symbol _ to the end of the name + + VVITConverter @@ -9380,6 +9652,22 @@ Do you want to save your changes? Unnamed Неназваний + + Select all + + + + Select none + + + + select all details + + + + select none details + + VWidgetGroups @@ -9436,6 +9724,20 @@ Do you want to save your changes? <b>Перетин лінії і осі</b>: кут =%1°; <b>Shift</b> - фіксація кута, <b>Enter</b> - завершення створення + + VisToolMove + + Length = %1%2, angle = %3°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + + + VisToolRotation + + Rotating angle = %1°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + VisToolSpline diff --git a/share/translations/valentina_zh_CN.ts b/share/translations/valentina_zh_CN.ts index bb773f26a..30b21af85 100644 --- a/share/translations/valentina_zh_CN.ts +++ b/share/translations/valentina_zh_CN.ts @@ -69,7 +69,7 @@ Server name/IP: - + 服务器名/IP: Proxy address: @@ -128,7 +128,7 @@ Paths - + 路径 @@ -143,7 +143,7 @@ min - + 最小值 Interval: @@ -191,7 +191,7 @@ Toolbar - + 工具栏 GUI language: @@ -219,7 +219,7 @@ Author: - + 作者: Book: @@ -249,14 +249,14 @@ DelTool delete tool - + 删除工具 DeleteDetail delete tool - + 删除工具 @@ -293,7 +293,7 @@ Valentina version - + Valentina版本 Contributors @@ -502,7 +502,7 @@ Calulation - 打算 + 打算 First angle: @@ -1179,6 +1179,22 @@ You can choose one of the predefined materials or enter a new one + + Forbid piece be mirrored in a layout. + + + + Forbid flipping + + + + Letter of pattern piece + + + + Name can't be empty + + DialogEditWrongFormula @@ -1282,6 +1298,10 @@ Functions + + Lengths to control points + + DialogEndLine @@ -1397,6 +1417,76 @@ + + DialogFlippingByAxis + + Dialog + + + + Origin point: + + + + Suffix: + + + + Axis type: + + + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Vertical axis + + + + Horizontal axis + + + + + DialogFlippingByLine + + Dialog + + + + First line point: + + + + Suffix: + + + + Second line point: + + + + Select first line point + + + + Select first line point that is not part of the list of objects + + + + Select second line point + + + + Select second line point that is not part of the list of objects + + + DialogGroup @@ -1756,6 +1846,10 @@ Search + + Curves control point lengths + + DialogLayoutProgress @@ -2278,6 +2372,53 @@ Apply settings anyway? + + DialogMove + + Dialog + + + + Angle: + + + + Formula wizard + + + + Value + + + + Calulation + 打算 + + + <html><head/><body><p>Show full calculation in message box</p></body></html> + + + + Length: + 长度: + + + Suffix: + + + + Edit angle + + + + Edit length + 修长度 + + + Calculation + 打算 + + DialogNewMeasurements @@ -2585,26 +2726,22 @@ Apply settings anyway? Customer name: - - Created: - - Pattern size: - - Show measurements - - - - Show date of creation - - Use %1 and %2 to insert pattern size and height + + Show date of layout creation (%1) + + + + Show measurements file + + DialogPatternXmlEdit @@ -3098,7 +3235,7 @@ Apply settings anyway? Calulation - 打算 + 打算 <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -3116,6 +3253,18 @@ Apply settings anyway? Edit angle + + Select origin point + + + + Select origin point that is not part of the list of objects + + + + Calculation + 打算 + DialogSaveLAyout @@ -3409,7 +3558,7 @@ Apply settings anyway? Calulation - 打算 + 打算 <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -3439,6 +3588,10 @@ Apply settings anyway? Length can't be negative + + Calculation + 打算 + DialogSplinePath @@ -3500,7 +3653,7 @@ Apply settings anyway? Calulation - 打算 + 打算 <html><head/><body><p>Show full calculation in message box</p></body></html> @@ -3534,6 +3687,10 @@ Apply settings anyway? Not used + + Calculation + 打算 + DialogTool @@ -4625,10 +4782,6 @@ Do you want to save your changes? Measurement files types have not match. - - Measurements was synced - - Couldn't sync measurements. @@ -4785,10 +4938,6 @@ Do you want to save your changes? (read only) - - Measurements was changed. Do you want to sync measurements now? - - Curve tool which uses point as control handle @@ -4877,6 +5026,30 @@ Do you want to save your changes? The measurements file <br/><br/> <b>%1</b> <br/><br/> could not be found. Do you want to update the file location? + + Flipping objects by line + + + + Flipping objects by axis + + + + Move objects + + + + Measurements were changed. Do you want to sync measurements now? + + + + Gradation doesn't support inches + + + + Measurements have been synced + + MainWindowsNoGUI @@ -4984,6 +5157,13 @@ Do you want to save your changes? + + OperationMoveLabel + + move point label + + + PathPage @@ -5069,6 +5249,18 @@ Do you want to save your changes? Delete all + + Workpiece + + + + Forbid flipping + + + + By default forbid flipping for all workpieces + + QApplication @@ -5394,13 +5586,6 @@ Do you want to save your changes? - - RotationMoveLabel - - move point label - - - SaveDetailOptions @@ -5762,18 +5947,6 @@ Do you want to save your changes? Ctrl+G - - 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. @@ -5969,6 +6142,10 @@ Do you want to save your changes? Size: + + All files + + TapeConfigDialog @@ -5994,7 +6171,7 @@ Do you want to save your changes? Paths - + 路径 @@ -6013,7 +6190,7 @@ Do you want to save your changes? Author: - + 作者: Book: @@ -6830,6 +7007,18 @@ Do you want to save your changes? Unknown operation type '%1'. + + Error creating or updating operation of flipping by line + + + + Error creating or updating operation of flipping by axis + + + + Error creating or updating operation of moving + + VPatternConverter @@ -6852,11 +7041,11 @@ Do you want to save your changes? VTextManager - on Fold + cut - Cut + on fold @@ -7141,6 +7330,30 @@ Do you want to save your changes? Suffix + + Vertical axis + + + + Horizontal axis + + + + Tool move + + + + Tool flipping by line + + + + Tool flipping by axis + + + + Axis type + + VToolUnionDetails @@ -7963,7 +8176,7 @@ Do you want to save your changes? Valentina team Author name - + Valentina团队 Valentina's internal standard @@ -8073,17 +8286,17 @@ Do you want to save your changes? min min of all arguments - + 最小值 max max of all arguments - + 最大值 sum sum of all arguments - + 总共 avg @@ -8195,6 +8408,26 @@ Do you want to save your changes? placeholder + + C1LengthSpl_ + Left symbol _ in the name + + + + C2LengthSpl_ + Left symbol _ in the name + + + + C1LengthSplPath + Do not add symbol _ to the end of the name + + + + C2LengthSplPath + Do not add symbol _ to the end of the name + + VVITConverter @@ -8220,6 +8453,22 @@ Do you want to save your changes? Unnamed + + Select all + + + + Select none + + + + select all details + + + + select none details + + VWidgetGroups @@ -8268,6 +8517,20 @@ Do you want to save your changes? + + VisToolMove + + Length = %1%2, angle = %3°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + + + VisToolRotation + + Rotating angle = %1°, <b>Shift</b> - sticking angle, <b>Mouse click</b> - finish creation + + + VisToolSpline @@ -8294,11 +8557,11 @@ Do you want to save your changes? mNoisyHandler DEBUG: - + BUG: WARNING: - + 警告: CRITICAL: @@ -8312,6 +8575,10 @@ Do you want to save your changes? INFO: 信息: + + Warning. + 警告. + Information. 信息. @@ -8337,11 +8604,11 @@ Do you want to save your changes? vNoisyHandler DEBUG: - + BUG: WARNING: - + 警告: CRITICAL: @@ -8357,7 +8624,7 @@ Do you want to save your changes? Warning. - + 警告. Critical error. diff --git a/src/libs/vtools/dialogs/tools/dialogarc.ui b/src/libs/vtools/dialogs/tools/dialogarc.ui index 813bd5a98..1938c11e7 100644 --- a/src/libs/vtools/dialogs/tools/dialogarc.ui +++ b/src/libs/vtools/dialogs/tools/dialogarc.ui @@ -157,7 +157,7 @@
- Calulation + Calculation true @@ -186,8 +186,7 @@ - - + .. @@ -367,8 +366,7 @@ - - + .. @@ -548,8 +546,7 @@ - - + .. diff --git a/src/libs/vtools/dialogs/tools/dialogmove.ui b/src/libs/vtools/dialogs/tools/dialogmove.ui index 2bdf948d3..c3b39063f 100644 --- a/src/libs/vtools/dialogs/tools/dialogmove.ui +++ b/src/libs/vtools/dialogs/tools/dialogmove.ui @@ -154,7 +154,7 @@ - Calulation + Calculation true @@ -334,7 +334,7 @@ - Calulation + Calculation true diff --git a/src/libs/vtools/dialogs/tools/dialogrotation.ui b/src/libs/vtools/dialogs/tools/dialogrotation.ui index 95a089b7d..8ee22dad3 100644 --- a/src/libs/vtools/dialogs/tools/dialogrotation.ui +++ b/src/libs/vtools/dialogs/tools/dialogrotation.ui @@ -154,7 +154,7 @@ - Calulation + Calculation true @@ -183,8 +183,7 @@ - - + .. diff --git a/src/libs/vtools/dialogs/tools/dialogspline.ui b/src/libs/vtools/dialogs/tools/dialogspline.ui index 8f8a55400..417d8d109 100644 --- a/src/libs/vtools/dialogs/tools/dialogspline.ui +++ b/src/libs/vtools/dialogs/tools/dialogspline.ui @@ -196,7 +196,7 @@ - Calulation + Calculation true @@ -225,8 +225,7 @@ - - + .. @@ -377,7 +376,7 @@ - Calulation + Calculation true @@ -406,8 +405,7 @@ - - + .. @@ -596,7 +594,7 @@ - Calulation + Calculation true @@ -625,8 +623,7 @@ - - + .. @@ -777,7 +774,7 @@ - Calulation + Calculation true @@ -806,8 +803,7 @@ - - + .. diff --git a/src/libs/vtools/dialogs/tools/dialogsplinepath.ui b/src/libs/vtools/dialogs/tools/dialogsplinepath.ui index 31d172698..f0a5d6069 100644 --- a/src/libs/vtools/dialogs/tools/dialogsplinepath.ui +++ b/src/libs/vtools/dialogs/tools/dialogsplinepath.ui @@ -183,7 +183,7 @@ - Calulation + Calculation true @@ -212,8 +212,7 @@ - - + .. @@ -364,7 +363,7 @@ - Calulation + Calculation true @@ -393,8 +392,7 @@ - - + .. @@ -558,7 +556,7 @@ - Calulation + Calculation true @@ -587,8 +585,7 @@ - - + .. @@ -739,7 +736,7 @@ - Calulation + Calculation true @@ -768,8 +765,7 @@ - - + ..