diff --git a/src/app/main.cpp b/src/app/main.cpp
index b9a32af72..aefb59c13 100644
--- a/src/app/main.cpp
+++ b/src/app/main.cpp
@@ -84,6 +84,7 @@ inline void noisyFailureMsgHandler(QtMsgType type, const QMessageLogContext &con
messageBox.setStandardButtons(QMessageBox::Ok);
fprintf(stderr, "Warning: %s (%s:%u, %s)\n", localMsg.constData(), context.file, context.line,
context.function);
+ messageBox.exec();
break;
case QtCriticalMsg:
messageBox.setIcon(QMessageBox::Critical);
@@ -91,6 +92,8 @@ inline void noisyFailureMsgHandler(QtMsgType type, const QMessageLogContext &con
messageBox.setStandardButtons(QMessageBox::Ok);
fprintf(stderr, "Critical: %s (%s:%u, %s)\n", localMsg.constData(), context.file, context.line,
context.function);
+ messageBox.exec();
+ abort();
break;
case QtFatalMsg:
messageBox.setIcon(QMessageBox::Critical);
@@ -98,16 +101,12 @@ inline void noisyFailureMsgHandler(QtMsgType type, const QMessageLogContext &con
messageBox.setStandardButtons(QMessageBox::Ok);
fprintf(stderr, "Fatal: %s (%s:%u, %s)\n", localMsg.constData(), context.file, context.line,
context.function);
+ messageBox.exec();
+ abort();
break;
default:
break;
}
-
- const int ret = messageBox.exec();
- if (ret == QMessageBox::Cancel)
- {
- abort();
- }
}
else
{
diff --git a/src/app/mainwindow.cpp b/src/app/mainwindow.cpp
index 15b403764..4129ac41a 100644
--- a/src/app/mainwindow.cpp
+++ b/src/app/mainwindow.cpp
@@ -2127,6 +2127,7 @@ void MainWindow::LoadPattern(const QString &fileName)
if (qApp->patternType() == MeasurementsType::Standard)
{
VStandardMeasurements m(pattern);
+ VDomDocument::ValidateXML("://schema/standard_measurements.xsd", path);
m.setContent(path);
if (m.MUnit() == Unit::Inch)
{
@@ -2138,6 +2139,10 @@ void MainWindow::LoadPattern(const QString &fileName)
m.SetSize();
m.SetHeight();
}
+ else
+ {
+ VDomDocument::ValidateXML("://schema/individual_measurements.xsd", path);
+ }
ToolBarOption();
}
catch (VException &e)
diff --git a/src/app/options.cpp b/src/app/options.cpp
index 58b9da8da..95229d42e 100644
--- a/src/app/options.cpp
+++ b/src/app/options.cpp
@@ -32,12 +32,14 @@
//Same regexp in pattern.xsd shema file. Don't forget synchronize.
const QString nameRegExp = QStringLiteral("^([^0-9-*/^+=\\s\\(\\)%:;!.,]){1,1}([^-*/^+=\\s\\(\\)%:;!.,]){0,}$");
-// Keep synchronize all names with initialization in VApllication class.
+// Keep synchronize all names with initialization in VApllication class!!!!!
//measurements
+//head and neck
const QString headGirth_M = QStringLiteral("head_girth");
const QString midNeckGirth_M = QStringLiteral("mid_neck_girth");
const QString neckBaseGirth_M = QStringLiteral("neck_base_girth");
const QString headAndNeckLength_M = QStringLiteral("head_and_neck_length");
+//torso
const QString centerFrontWaistLength_M = QStringLiteral("center_front_waist_length");
const QString centerBackWaistLength_M = QStringLiteral("center_back_waist_length");
const QString shoulderLength_M = QStringLiteral("shoulder_length");
@@ -83,6 +85,11 @@ const QString frontWaistSlope_M = QStringLiteral("front_waist_slope"
const QString backWaistSlope_M = QStringLiteral("back_waist_slope");
const QString frontNeckToUpperChestHeight_M = QStringLiteral("front_neck_to_upper_chest_height");
const QString frontNeckToBustHeight_M = QStringLiteral("front_neck_to_bust_height");
+const QString frontWaistToUpperChest_M = QStringLiteral("front_waist_to_upper_chest");
+const QString frontWaistToLowerBreast_M = QStringLiteral("front_waist_to_lower_breast");
+const QString backWaistToUpperChest_M = QStringLiteral("back_waist_to_upper_chest");
+const QString strapLength_M = QStringLiteral("strap_length");
+//arm
const QString armscyeGirth_M = QStringLiteral("armscye_girth");
const QString elbowGirth_M = QStringLiteral("elbow_girth");
const QString upperArmGirth_M = QStringLiteral("upper_arm_girth");
@@ -93,9 +100,11 @@ const QString underarmLength_M = QStringLiteral("underarm_length");
const QString cervicaleToWristLength_M = QStringLiteral("cervicale_to_wrist_length");
const QString shoulderToElbowLength_M = QStringLiteral("shoulder_to_elbow_length");
const QString armLength_M = QStringLiteral("arm_length");
+//hand
const QString handWidth_M = QStringLiteral("hand_width");
const QString handLength_M = QStringLiteral("hand_length");
const QString handGirth_M = QStringLiteral("hand_girth");
+//leg
const QString thighGirth_M = QStringLiteral("thigh_girth");
const QString midThighGirth_M = QStringLiteral("mid_thigh_girth");
const QString kneeGirth_M = QStringLiteral("knee_girth");
@@ -103,8 +112,10 @@ const QString calfGirth_M = QStringLiteral("calf_girth");
const QString ankleGirth_M = QStringLiteral("ankle_girth");
const QString kneeHeight_M = QStringLiteral("knee_height");
const QString ankleHeight_M = QStringLiteral("ankle_height");
+//foot
const QString footWidth_M = QStringLiteral("foot_width");
const QString footLength_M = QStringLiteral("foot_length");
+//heights
const QString height_M = QStringLiteral("height");
const QString cervicaleHeight_M = QStringLiteral("cervicale_height");
const QString cervicaleToKneeHeight_M = QStringLiteral("cervicale_to_knee_height");
diff --git a/src/app/options.h b/src/app/options.h
index 851fea28e..baf82ef35 100644
--- a/src/app/options.h
+++ b/src/app/options.h
@@ -128,10 +128,12 @@ enum class GSizes : unsigned char { ALL,
S42=42, S44=44, S46=46, S48=48, S50=50, S52=52, S54=54, S56=56 };
// measurements
+//head and neck
extern const QString headGirth_M;
extern const QString midNeckGirth_M;
extern const QString neckBaseGirth_M;
extern const QString headAndNeckLength_M;
+//torso
extern const QString centerFrontWaistLength_M;
extern const QString centerBackWaistLength_M;
extern const QString shoulderLength_M;
@@ -177,6 +179,11 @@ extern const QString frontWaistSlope_M;
extern const QString backWaistSlope_M;
extern const QString frontNeckToUpperChestHeight_M;
extern const QString frontNeckToBustHeight_M;
+extern const QString frontWaistToUpperChest_M;
+extern const QString frontWaistToLowerBreast_M;
+extern const QString backWaistToUpperChest_M;
+extern const QString strapLength_M;
+//arm
extern const QString armscyeGirth_M;
extern const QString elbowGirth_M;
extern const QString upperArmGirth_M;
@@ -187,9 +194,11 @@ extern const QString underarmLength_M;
extern const QString cervicaleToWristLength_M;
extern const QString shoulderToElbowLength_M;
extern const QString armLength_M;
+//hand
extern const QString handWidth_M;
extern const QString handLength_M;
extern const QString handGirth_M;
+//leg
extern const QString thighGirth_M;
extern const QString midThighGirth_M;
extern const QString kneeGirth_M;
@@ -197,8 +206,10 @@ extern const QString calfGirth_M;
extern const QString ankleGirth_M;
extern const QString kneeHeight_M;
extern const QString ankleHeight_M;
+//foot
extern const QString footWidth_M;
extern const QString footLength_M;
+//heights
extern const QString height_M;
extern const QString cervicaleHeight_M;
extern const QString cervicaleToKneeHeight_M;
diff --git a/src/app/share/resources/schema/individual_measurements.xsd b/src/app/share/resources/schema/individual_measurements.xsd
index 17579d79f..5c97f5269 100644
--- a/src/app/share/resources/schema/individual_measurements.xsd
+++ b/src/app/share/resources/schema/individual_measurements.xsd
@@ -273,6 +273,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/app/share/resources/schema/standard_measurements.xsd b/src/app/share/resources/schema/standard_measurements.xsd
index 4de011d3b..8f2174623 100644
--- a/src/app/share/resources/schema/standard_measurements.xsd
+++ b/src/app/share/resources/schema/standard_measurements.xsd
@@ -372,6 +372,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/app/share/resources/tables/individual/individual.vit b/src/app/share/resources/tables/individual/individual.vit
index aeba8037d..9763dac52 100644
--- a/src/app/share/resources/tables/individual/individual.vit
+++ b/src/app/share/resources/tables/individual/individual.vit
@@ -1,6 +1,6 @@
- 0.1.0
+ 0.2.0
@@ -62,6 +62,10 @@
+
+
+
+
diff --git a/src/app/share/resources/tables/standard/GOST_man_ru.vst b/src/app/share/resources/tables/standard/GOST_man_ru.vst
index 908ea528e..4d455ce67 100644
--- a/src/app/share/resources/tables/standard/GOST_man_ru.vst
+++ b/src/app/share/resources/tables/standard/GOST_man_ru.vst
@@ -1,6 +1,6 @@
- 0.1.0
+ 0.2.0Типовые фигуры мужчин 1-й полнотной группы, обхват груди 100 смmm
@@ -58,6 +58,10 @@
+
+
+
+
@@ -112,7 +116,7 @@
-
+
diff --git a/src/app/share/translations/valentina.ts b/src/app/share/translations/valentina.ts
index 94d393417..2de709403 100644
--- a/src/app/share/translations/valentina.ts
+++ b/src/app/share/translations/valentina.ts
@@ -2968,151 +2968,151 @@
Functions
-
+ sinsine function
-
+ coscosine function
-
+ tantangens function
-
+ asinarcus sine function
-
+ acosarcus cosine function
-
+ atanarcus tangens function
-
+ sinhhyperbolic sine function
-
+ coshhyperbolic cosine
-
+ tanhhyperbolic tangens function
-
+ asinhhyperbolic arcus sine function
-
+ acoshhyperbolic arcus tangens function
-
+ atanhhyperbolic arcur tangens function
-
+ log2logarithm to the base 2
-
+ log10logarithm to the base 10
-
+ loglogarithm to the base 10
-
+ lnlogarithm to base e (2.71828...)
-
+ expe raised to the power of x
-
+ sqrtsquare root of a value
-
+ signsign function -1 if x<0; 1 if x>0
-
+ rintround to nearest integer
-
+ absabsolute value
-
+ minmin of all arguments
-
+ maxmax of all arguments
-
+ sumsum of all arguments
-
+ avgmean value of all arguments
@@ -3728,42 +3728,42 @@
-
+ Wrong units.
-
+ Application doesn't support standard table with inches.
-
+ File error.
-
+ The measurements file <br/><br/> <b>%1</b> <br/><br/> %3
-
+ could not be found. Do you want to update the file location
-
+ Standard measurements (*.vst)
-
+ Individual measurements (*.vit)
-
+ File loaded
@@ -3811,7 +3811,7 @@ Do you want to save your changes?
-
+ Open file
@@ -3841,77 +3841,29 @@ Do you want to save your changes?
Measurements
-
+ head_girthShort measurement name. Don't use math symbols in name!!!!
-
- Head girth
- Full measurement name
-
-
-
-
- Around fullest part of Head
- Full measurement description
-
-
-
-
+ mid_neck_girthShort measurement name. Don't use math symbols in name!!!!
-
- Mid-neck girth
- Full measurement name
-
-
-
-
- Around middle part of Neck
- Full measurement description
-
-
-
-
+ neck_base_girthShort measurement name. Don't use math symbols in name!!!!
-
- Neck Base girth
- Full measurement name
-
-
-
-
- Around Neck at base
- Full measurement description
-
-
-
-
+ head_and_neck_lengthShort measurement name. Don't use math symbols in name!!!!
-
-
- Head and Neck length
- Full measurement name
-
-
-
-
- Vertical Distance from Crown to Nape
- Full measurement description
-
- center_front_waist_length
@@ -3919,9 +3871,804 @@ Do you want to save your changes?
-
- Front Center length
- Full measurement name
+
+ center_back_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ side_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ trunk_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_chest_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ bust_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ under_bust_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ high_hip_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hip_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_front_chest_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_chest_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ across_front_shoulder_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ across_back_shoulder_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_back_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ bustpoint_to_bustpoint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ halter_bustpoint_to_bustpoint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_bustpoint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ crotch_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ rise_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_drop
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_slope_degrees
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_shoulder_slope_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_shoulder_slope_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_shoulder_to_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_shoulder_to_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_neck_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_neck_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_upper_chest_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_upper_chest_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_waist_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_upper_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_upper_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ chest_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_waist_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_neck_to_upper_chest_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_neck_to_bust_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_to_upper_chest
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_to_lower_breast
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_waist_to_upper_chest
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ strap_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ armscye_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ elbow_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_arm_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ wrist_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ scye_depth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_and_arm_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ underarm_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ cervicale_to_wrist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_to_elbow_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arm_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ thigh_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ mid_thigh_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ knee_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ calf_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ ankle_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ knee_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ ankle_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ foot_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ foot_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ cervicale_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ cervicale_to_knee_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ high_hip_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hip_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ Hip side to Floor
+ Full measurement description
+
+
+
+
+ waist_to_hip_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_knee_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ crotch_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ size
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_front_neck_base_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_base_neck_side_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_shoulder_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_nipple_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_back_angle_axilla
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_scapular_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_under_buttock_folds
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hips_excluding_protruding_abdomen
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ girth_foot_instep
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ side_waist_to_floor
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_to_floor
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_through_groin_area
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_plane_seat
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_radial_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_third_finger
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_first_line_chest_circumference
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_through_shoulder_joint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_back_line_chest_circumference
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_neck_side
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_length_upper_body
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ chest_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ anteroposterior_diameter_hands
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_clavicular_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_armhole_slash
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ slash_shoulder_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_neck
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_neck_for_shirts
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_chest_first
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_chest_second
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_chest_third
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_waist
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_hips_considering_protruding_abdomen
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_hips_excluding_protruding_abdomen
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ girth_knee_flexed_feet
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_transverse_diameter
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_slash_shoulder_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_front_waist_line
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_vertical_diameter
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_knee_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_knee
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ head_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ body_position
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_behind_shoulder_girdle
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_neck_base
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ depth_waist_first
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ depth_waist_second
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ MeasurementsDescriptions
+
+
+ Around fullest part of Head
+ Full measurement description
+
+
+
+
+ Around middle part of Neck
+ Full measurement description
+
+
+
+
+ Around Neck at base
+ Full measurement description
+
+
+
+
+ Vertical Distance from Crown to Nape
+ Full measurement description
@@ -3932,2234 +4679,1565 @@ Do you want to save your changes?
- center_back_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Center length
- Full measurement name
-
-
-
- Back Neck Center to Back Waist CenterFull measurement description
-
- shoulder_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder length
- Full measurement name
-
-
-
-
+ NeckPoint to ShoulderTipFull measurement description
-
- side_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Side Waist length
- Full measurement name
-
-
-
-
+ Armpit to Waist sideFull measurement description
-
- trunk_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Trunk length
- Full measurement name
-
-
-
-
+ Around Body from middle of Shoulder length to BustPoint to Crotch up back to beginning pointFull measurement description
-
- shoulder_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder girth
- Full measurement name
-
-
-
-
+ Around Arms and Torso, at bicep level parallel to floor, with arms hanging at the sidesFull measurement description
-
- upper_chest_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Upper Chest girth
- Full measurement name
-
-
-
-
+ Around Chest at Armfold level, will be parallel to floor across back, will not be parallel to floor across front chestFull measurement description
-
- bust_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Bust girth
- Full measurement name
-
-
-
-
+ Around fullest part of Bust, parallel to floorFull measurement description
-
- under_bust_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Under Bust girth
- Full measurement name
-
-
-
-
+ Around Chest below the Bust, parallel to floorFull measurement description
-
- waist_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist girth
- Full measurement name
-
-
-
-
+ Tie a string around smallest part of waist, keep string tied while taking meaasurements. Not usually parallel to floor for front waist or back waist.Full measurement description
-
- high_hip_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- HighHip girth
- Full measurement name
-
-
-
-
+ Around HighHip, parallel to floorFull measurement description
-
- hip_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hip girth
- Full measurement name
-
-
-
-
+ Around Hip, parallel to floorFull measurement description
-
- upper_front_chest_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Upper Chest width
- Full measurement name
-
-
-
-
+ Across Front UpperChest, smallest width from armscye to armscyeFull measurement description
-
- front_chest_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Chest width
- Full measurement name
-
-
-
-
+ Across Front Chest, from armfold to armfoldFull measurement description
-
- across_front_shoulder_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Across Shoulder width
- Full measurement name
-
-
-
-
+ From ShoulderTip to ShoulderTip, across FrontFull measurement description
-
- across_back_shoulder_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Across Shoulder width
- Full measurement name
-
-
-
-
+ From ShoulderTip to ShoulderTip, across BackFull measurement description
-
- Back Upper Chest width
- Full measurement name
-
-
-
-
+ Across Back UpperChest, smallest width from armscye to armscyeFull measurement description
-
- upper_back_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- back_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Chest width
- Full measurement name
-
-
-
-
+ Across Back Chest, from armfold to armfoldFull measurement description
-
- bustpoint_to_bustpoint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- BustPoint to BustPoint
- Full measurement name
-
-
-
-
+ Distance between BustPoints, across ChestFull measurement description
-
- halter_bustpoint_to_bustpoint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Halter Bustpoint to Bustpoint
- Full measurement name
-
-
-
-
+ Distance from Bustpoint, behind neck, down to BustpointFull measurement description
-
- neck_to_bustpoint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- NeckPoint to BustPoint
- Full measurement name
-
-
-
-
+ From NeckPoint to BustPointFull measurement description
-
- crotch_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Crotch length
- Full measurement name
-
-
-
-
+ From Front Waist Center, down to crotch, up to Back Waist CenterFull measurement description
-
- rise_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Rise height
- Full measurement name
-
-
-
-
+ Sit on hard chair, measure from side waist straight down to chair bottomFull measurement description
-
- shoulder_drop
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder Drop
- Full measurement name
-
-
-
-
+ Vertical Distance from NeckPoint level to ShoulderTip levelFull measurement description
-
- shoulder_slope_degrees
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder Slope degrees
- Full measurement name
-
-
-
-
+ Degrees of angle from NeckPoint to ShoulderTip – requires goniometerFull measurement description
-
- front_shoulder_slope_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Shoulder Balance
- Full measurement name
-
-
-
-
+ ShoulderTip to Front Waist CenterFull measurement description
-
- back_shoulder_slope_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Shoulder Balance
- Full measurement name
-
-
-
-
+ ShoulderTip to Back Waist CenterFull measurement description
-
- front_shoulder_to_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Full Length
- Full measurement name
-
-
-
-
+ NeckPoint straight down front chest to WaistlineFull measurement description
-
- back_shoulder_to_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Full Length
- Full measurement name
-
-
-
-
+ Back NeckPoint straight down back chest to WaistlineFull measurement description
-
- front_neck_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Neck arc
- Full measurement name
-
-
-
-
+ NeckPoint to NeckPoint through Front Neck CenterFull measurement description
-
- back_neck_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Neck arc
- Full measurement name
-
-
-
-
+ NeckPoint to NeckPoint across NapeFull measurement description
-
- front_upper_chest_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- front_upper-bust_arc
- Full measurement name
-
-
-
-
+ front_upper-bust_arcFull measurement description
-
- back_upper_chest_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back UpperBust arc
- Full measurement name
-
-
-
-
+ Back UpperBust side to sideFull measurement description
-
- front_waist_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Waist arc
- Full measurement name
-
-
-
-
+ Front Waist side to sideFull measurement description
-
- back_waist_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Waist arc
- Full measurement name
-
-
-
-
+ Back Waist side to sideFull measurement description
-
- front_upper_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front UpperHip arc
- Full measurement name
-
-
-
-
+ Front UpperHip side to sideFull measurement description
-
- back_upper_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back UpperHip arc
- Full measurement name
-
-
-
-
+ Back UpperHip side to sideFull measurement description
-
- front_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Hip arc
- Full measurement name
-
-
-
-
+ Front Hip side to sideFull measurement description
-
- back_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Hip arc
- Full measurement name
-
-
-
-
+ Back Hip side to sideFull measurement description
-
- chest_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Chest Balance
- Full measurement name
-
-
-
-
+ NeckPoint to Front ArmfoldPointFull measurement description
-
- back_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Balance
- Full measurement name
-
-
-
-
+ NeckPoint to Back ArmfoldPointFull measurement description
-
- front_waist_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Waist Balance
- Full measurement name
-
-
-
-
+ NeckPoint across Front Chest to Waist sideFull measurement description
-
- back_waist_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Waist Balance
- Full measurement name
-
-
-
-
+ NeckPoint across Back Chest to Waist sideFull measurement description
-
- front_neck_to_upper_chest_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front UpperChest height
- Full measurement name
-
-
-
-
+ Front Neck Center straight down to UpperChest lineFull measurement description
-
- front_neck_to_bust_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Bust height
- Full measurement name
-
-
-
-
+ Front Neck Center straight down to Bust lineFull measurement description
-
- armscye_girth
- Short measurement name. Don't use math symbols in name!!!!
+
+ Front Upper chest waist
+ Full measurement description
-
- Armscye Girth
- Full measurement name
+
+ Front waist to lower breast
+ Full measurement description
-
+
+ Back waist to upper chest
+ Full measurement description
+
+
+
+
+ Strap length
+ Full measurement description
+
+
+
+ Around ArmscyeFull measurement description
-
- elbow_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Elbow Girth
- Full measurement name
-
-
-
-
+ Around Elbow with elbow bentFull measurement description
-
- upper_arm_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Upperarm Girth
- Full measurement name
-
-
-
-
+ Around UpperArmFull measurement description
-
- wrist_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Wrist girth
- Full measurement name
-
-
-
-
+ Around WristFull measurement description
-
- scye_depth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Armscye depth
- Full measurement name
-
-
-
-
+ Nape straight down to UnderBust line (same as Back UpperBust height)Full measurement description
-
- shoulder_and_arm_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder and Arm length
- Full measurement name
-
-
-
-
+ NeckPoint to ShoulderTip to Wrist, with elbow bent and hand on hipFull measurement description
-
- underarm_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Underarm length
- Full measurement name
-
-
-
-
+ Armpit to Wrist, with arm straight and hanging at sideFull measurement description
-
- cervicale_to_wrist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Nape to wrist length
- Full measurement name
-
-
-
-
+ Nape to Wrist, with elbow bent and hand on hipFull measurement description
-
- shoulder_to_elbow_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Elbow length
- Full measurement name
-
-
-
-
+ ShoulderTip to Elbow, with elbow bent and hand on hipFull measurement description
-
- arm_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arm length
- Full measurement name
-
-
-
-
+ ShoulderTip to Wrist, with elbow bent and hand on hipFull measurement description
-
- hand_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand width
- Full measurement name
-
-
-
-
+ Hand side to sideFull measurement description
-
- hand_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand length
- Full measurement name
-
-
-
-
+ Hand Middle Finger tip to wristFull measurement description
-
- hand_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand girth
- Full measurement name
-
-
-
-
+ Around HandFull measurement description
-
- thigh_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Thigh girth
- Full measurement name
-
-
-
-
+ Around ThighFull measurement description
-
- mid_thigh_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Midthigh girth
- Full measurement name
-
-
-
-
+ Around MidThighFull measurement description
-
- knee_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Knee girth
- Full measurement name
-
-
-
-
+ Around KneeFull measurement description
-
- calf_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Calf girth
- Full measurement name
-
-
-
-
+ Around CalfFull measurement description
-
- ankle_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Ankle girth
- Full measurement name
-
-
-
-
+ Around AnkleFull measurement description
-
- knee_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Knee height
- Full measurement name
-
-
-
-
+ Knee to FloorFull measurement description
-
- ankle_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Ankle height
- Full measurement name
-
-
-
-
+ Ankle to FloorFull measurement description
-
- foot_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Foot width
- Full measurement name
-
-
-
-
+ Widest part of Foot side to sideFull measurement description
-
- foot_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Foot length
- Full measurement name
-
-
-
-
+ Tip of Longest Toe straight to back of heelFull measurement description
-
- height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Total Height
- Full measurement name
-
-
-
-
+ Top of head to floorFull measurement description
-
- cervicale_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Nape height
- Full measurement name
-
-
-
-
+ Nape to FloorFull measurement description
-
- cervicale_to_knee_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Nape to knee height
- Full measurement name
-
-
-
-
+ Nape to KneeFull measurement description
-
- waist_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist height
- Full measurement name
-
-
-
-
+ Waist side to floorFull measurement description
-
- high_hip_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- HighHip height
- Full measurement name
-
-
-
-
+ HighHip side to FloorFull measurement description
-
- hip_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hip height
- Full measurement name
-
-
-
-
- Hip side to Floor
- Full measurement description
-
-
-
-
- waist_to_hip_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to Hip height
- Full measurement name
-
-
-
-
+ Waist side to HipFull measurement description
-
- waist_to_knee_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to Knee height
- Full measurement name
-
-
-
-
+ Waist side to KneeFull measurement description
-
- crotch_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Crotch height/Inseam
- Full measurement name
-
-
-
-
+ Crotch to Floor along inside legFull measurement description
-
- size
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Size
- Full measurement name
-
-
-
-
+ SizeFull measurement description
-
- height_front_neck_base_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height front neck base point
- Full measurement name
-
-
-
-
+ Height of the point base of the neck in frontFull measurement description
-
- height_base_neck_side_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height base neck side point
- Full measurement name
-
-
-
-
+ Height of the base of the neck side pointFull measurement description
-
- height_shoulder_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height shoulder point
- Full measurement name
-
-
-
-
+ The height of the shoulder pointFull measurement description
-
- height_nipple_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height nipple point
- Full measurement name
-
-
-
-
+ Height nipple pointFull measurement description
-
- height_back_angle_axilla
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height back angle axilla
- Full measurement name
-
-
-
-
+ Height back angle axillaFull measurement description
-
- height_scapular_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height scapular point
- Full measurement name
-
-
-
-
+ Height scapular pointFull measurement description
-
- height_under_buttock_folds
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height under buttock folds
- Full measurement name
-
-
-
-
+ Height under buttock foldsFull measurement description
-
- hips_excluding_protruding_abdomen
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hips excluding protruding abdomen
- Full measurement name
-
-
-
-
+ Hips excluding protruding abdomenFull measurement description
-
- girth_foot_instep
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Girth foot instep
- Full measurement name
-
-
-
-
+ Girth foot instepFull measurement description
-
- side_waist_to_floor
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Side waist to floor
- Full measurement name
-
-
-
-
+ The distance from the side waist to floorFull measurement description
-
- front_waist_to_floor
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front waist to floor
- Full measurement name
-
-
-
-
+ The distance from the front waist to floorFull measurement description
-
- arc_through_groin_area
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc through groin area
- Full measurement name
-
-
-
-
+ Arc through groin areaFull measurement description
-
- waist_to_plane_seat
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to plane seat
- Full measurement name
-
-
-
-
+ The distance from the waist to the plane seatFull measurement description
-
- neck_to_radial_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to radial point
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the side of the radial pointFull measurement description
-
- neck_to_third_finger
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to third finger
- Full measurement name
-
-
-
-
+ Distance from the base of the neck side point to the end of the third fingerFull measurement description
-
- neck_to_first_line_chest_circumference
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to first line chest circumference
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the side of the first line in front of chest circumferenceFull measurement description
-
- front_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front waist length
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the waist side front (waist length in the front)Full measurement description
-
- arc_through_shoulder_joint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc through shoulder joint
- Full measurement name
-
-
-
-
+ Arc through the highest point of the shoulder jointFull measurement description
-
- neck_to_back_line_chest_circumference
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to back line chest circumference
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the back line of chest circumference of the first and the second based on ledge vanesFull measurement description
-
- waist_to_neck_side
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to neck side
- Full measurement name
-
-
-
-
+ The distance from the waist to the back base of the neck side pointFull measurement description
-
- arc_length_upper_body
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc length upper body
- Full measurement name
-
-
-
-
+ Arc length of the upper body through the base of the neck side pointFull measurement description
-
- chest_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Chest width
- Full measurement name
-
-
-
-
+ Chest widthFull measurement description
-
- anteroposterior_diameter_hands
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Anteroposterior diameter hands
- Full measurement name
-
-
-
-
+ Anteroposterior diameter of the handsFull measurement description
-
- height_clavicular_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height clavicular point
- Full measurement name
-
-
-
-
+ Height clavicular pointFull measurement description
-
- height_armhole_slash
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height armhole slash
- Full measurement name
-
-
-
-
+ The distance from the point to the cervical level of the posterior angle of the front armpit (underarm height oblique)Full measurement description
-
- slash_shoulder_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Slash shoulder height
- Full measurement name
-
-
-
-
+ Slash shoulder heightFull measurement description
-
- half_girth_neck
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth neck
- Full measurement name
-
-
-
-
+ Half girth neckFull measurement description
-
- half_girth_neck_for_shirts
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth neck for shirts
- Full measurement name
-
-
-
-
+ Half girth neck for shirtsFull measurement description
-
- half_girth_chest_first
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth chest first
- Full measurement name
-
-
-
-
+ Half girth chest firstFull measurement description
-
- half_girth_chest_second
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth chest second
- Full measurement name
-
-
-
-
+ Half girth chest secondFull measurement description
-
- half_girth_chest_third
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth chest third
- Full measurement name
-
-
-
-
+ Half girth chest thirdFull measurement description
-
- half_girth_waist
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth waist
- Full measurement name
-
-
-
-
+ Half girth waistFull measurement description
-
- half_girth_hips_considering_protruding_abdomen
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth hips considering protruding abdomen
- Full measurement name
-
-
-
-
+ Half girth hips considering protruding abdomenFull measurement description
-
- half_girth_hips_excluding_protruding_abdomen
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth hips excluding protruding abdomen
- Full measurement name
-
-
-
-
+ Half girth hips excluding protruding abdomenFull measurement description
-
- girth_knee_flexed_feet
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Girth knee flexed feet
- Full measurement name
-
-
-
-
+ Girth knee flexed feetFull measurement description
-
- neck_transverse_diameter
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck transverse diameter
- Full measurement name
-
-
-
-
+ Neck transverse diameterFull measurement description
-
- front_slash_shoulder_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front slash shoulder height
- Full measurement name
-
-
-
-
+ Front slash shoulder heightFull measurement description
-
- neck_to_front_waist_line
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to front waist line
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the waist line frontFull measurement description
-
- hand_vertical_diameter
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand vertical diameter
- Full measurement name
-
-
-
-
+ Hand vertical diameterFull measurement description
-
- neck_to_knee_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to knee point
- Full measurement name
-
-
-
-
+ Distance from neck to knee pointFull measurement description
-
- waist_to_knee
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to knee
- Full measurement name
-
-
-
-
+ The distance from the waist to the kneeFull measurement description
-
- shoulder_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder height
- Full measurement name
-
-
-
-
+ Shoulder heightFull measurement description
-
- head_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Head height
- Full measurement name
-
-
-
-
+ Head heightFull measurement description
-
- body_position
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Body position
- Full measurement name
-
-
-
-
+ Body positionFull measurement description
-
- arc_behind_shoulder_girdle
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc behind shoulder girdle
- Full measurement name
-
-
-
-
+ Arc behind the shoulder girdleFull measurement description
-
- neck_to_neck_base
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to neck base
- Full measurement name
-
-
-
-
+ Distance from neck point to point on the base of the neck side neck girth measurement lineFull measurement description
-
- depth_waist_first
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Depth waist first
- Full measurement name
-
-
-
-
+ Depth waist firstFull measurement description
-
- depth_waist_second
- Short measurement name. Don't use math symbols in name!!!!
+
+ Depth waist second
+ Full measurement description
+
+
+ MeasurementsFullNames
-
- Depth waist second
+
+ Head girthFull measurement name
-
+
+ Mid-neck girth
+ Full measurement name
+
+
+
+
+ Neck Base girth
+ Full measurement name
+
+
+
+
+ Head and Neck length
+ Full measurement name
+
+
+
+
+ Front Center length
+ Full measurement name
+
+
+
+
+ Back Center length
+ Full measurement name
+
+
+
+
+ Shoulder length
+ Full measurement name
+
+
+
+
+ Side Waist length
+ Full measurement name
+
+
+
+
+ Trunk length
+ Full measurement name
+
+
+
+
+ Shoulder girth
+ Full measurement name
+
+
+
+
+ Upper Chest girth
+ Full measurement name
+
+
+
+
+ Bust girth
+ Full measurement name
+
+
+
+
+ Under Bust girth
+ Full measurement name
+
+
+
+
+ Waist girth
+ Full measurement name
+
+
+
+
+ HighHip girth
+ Full measurement name
+
+
+
+
+ Hip girth
+ Full measurement name
+
+
+
+
+ Front Upper Chest width
+ Full measurement name
+
+
+
+
+ Front Chest width
+ Full measurement name
+
+
+
+
+ Front Across Shoulder width
+ Full measurement name
+
+
+
+
+ Back Across Shoulder width
+ Full measurement name
+
+
+
+
+ Back Upper Chest width
+ Full measurement name
+
+
+
+
+ Back Chest width
+ Full measurement name
+
+
+
+
+ BustPoint to BustPoint
+ Full measurement name
+
+
+
+
+ Halter Bustpoint to Bustpoint
+ Full measurement name
+
+
+
+
+ NeckPoint to BustPoint
+ Full measurement name
+
+
+
+
+ Crotch length
+ Full measurement name
+
+
+
+
+ Rise height
+ Full measurement name
+
+
+
+
+ Shoulder Drop
+ Full measurement name
+
+
+
+
+ Shoulder Slope degrees
+ Full measurement name
+
+
+
+
+ Front Shoulder Balance
+ Full measurement name
+
+
+
+
+ Back Shoulder Balance
+ Full measurement name
+
+
+
+
+ Front Full Length
+ Full measurement name
+
+
+
+
+ Back Full Length
+ Full measurement name
+
+
+
+
+ Front Neck arc
+ Full measurement name
+
+
+
+
+ Back Neck arc
+ Full measurement name
+
+
+
+
+ front_upper-bust_arc
+ Full measurement name
+
+
+
+
+ Back UpperBust arc
+ Full measurement name
+
+
+
+
+ Front Waist arc
+ Full measurement name
+
+
+
+
+ Back Waist arc
+ Full measurement name
+
+
+
+
+ Front UpperHip arc
+ Full measurement name
+
+
+
+
+ Back UpperHip arc
+ Full measurement name
+
+
+
+
+ Front Hip arc
+ Full measurement name
+
+
+
+
+ Back Hip arc
+ Full measurement name
+
+
+
+
+ Chest Balance
+ Full measurement name
+
+
+
+
+ Back Balance
+ Full measurement name
+
+
+
+
+ Front Waist Balance
+ Full measurement name
+
+
+
+
+ Back Waist Balance
+ Full measurement name
+
+
+
+
+ Front UpperChest height
+ Full measurement name
+
+
+
+
+ Bust height
+ Full measurement name
+
+
+
+
+ Front Upper chest waist
+ Full measurement name
+
+
+
+
+ Front waist to lower breast
+ Full measurement name
+
+
+
+
+ Back waist to upper chest
+ Full measurement name
+
+
+
+
+ Strap length
+ Full measurement name
+
+
+
+
+ Armscye Girth
+ Full measurement name
+
+
+
+
+ Elbow Girth
+ Full measurement name
+
+
+
+
+ Upperarm Girth
+ Full measurement name
+
+
+
+
+ Wrist girth
+ Full measurement name
+
+
+
+
+ Armscye depth
+ Full measurement name
+
+
+
+
+ Shoulder and Arm length
+ Full measurement name
+
+
+
+
+ Underarm length
+ Full measurement name
+
+
+
+
+ Nape to wrist length
+ Full measurement name
+
+
+
+
+ Elbow length
+ Full measurement name
+
+
+
+
+ Arm length
+ Full measurement name
+
+
+
+
+ Hand width
+ Full measurement name
+
+
+
+
+ Hand length
+ Full measurement name
+
+
+
+
+ Hand girth
+ Full measurement name
+
+
+
+
+ Thigh girth
+ Full measurement name
+
+
+
+
+ Midthigh girth
+ Full measurement name
+
+
+
+
+ Knee girth
+ Full measurement name
+
+
+
+
+ Calf girth
+ Full measurement name
+
+
+
+
+ Ankle girth
+ Full measurement name
+
+
+
+
+ Knee height
+ Full measurement name
+
+
+
+
+ Ankle height
+ Full measurement name
+
+
+
+
+ Foot width
+ Full measurement name
+
+
+
+
+ Foot length
+ Full measurement name
+
+
+
+
+ Total Height
+ Full measurement name
+
+
+
+
+ Nape height
+ Full measurement name
+
+
+
+
+ Nape to knee height
+ Full measurement name
+
+
+
+
+ Waist height
+ Full measurement name
+
+
+
+
+ HighHip height
+ Full measurement name
+
+
+
+
+ Hip height
+ Full measurement name
+
+
+
+
+ Waist to Hip height
+ Full measurement name
+
+
+
+
+ Waist to Knee height
+ Full measurement name
+
+
+
+
+ Crotch height/Inseam
+ Full measurement name
+
+
+
+
+ Size
+ Full measurement name
+
+
+
+
+ Height front neck base point
+ Full measurement name
+
+
+
+
+ Height base neck side point
+ Full measurement name
+
+
+
+
+ Height shoulder point
+ Full measurement name
+
+
+
+
+ Height nipple point
+ Full measurement name
+
+
+
+
+ Height back angle axilla
+ Full measurement name
+
+
+
+
+ Height scapular point
+ Full measurement name
+
+
+
+
+ Height under buttock folds
+ Full measurement name
+
+
+
+
+ Hips excluding protruding abdomen
+ Full measurement name
+
+
+
+
+ Girth foot instep
+ Full measurement name
+
+
+
+
+ Side waist to floor
+ Full measurement name
+
+
+
+
+ Front waist to floor
+ Full measurement name
+
+
+
+
+ Arc through groin area
+ Full measurement name
+
+
+
+
+ Waist to plane seat
+ Full measurement name
+
+
+
+
+ Neck to radial point
+ Full measurement name
+
+
+
+
+ Neck to third finger
+ Full measurement name
+
+
+
+
+ Neck to first line chest circumference
+ Full measurement name
+
+
+
+
+ Front waist length
+ Full measurement name
+
+
+
+
+ Arc through shoulder joint
+ Full measurement name
+
+
+
+
+ Neck to back line chest circumference
+ Full measurement name
+
+
+
+
+ Waist to neck side
+ Full measurement name
+
+
+
+
+ Arc length upper body
+ Full measurement name
+
+
+
+
+ Chest width
+ Full measurement name
+
+
+
+
+ Anteroposterior diameter hands
+ Full measurement name
+
+
+
+
+ Height clavicular point
+ Full measurement name
+
+
+
+
+ Height armhole slash
+ Full measurement name
+
+
+
+
+ Slash shoulder height
+ Full measurement name
+
+
+
+
+ Half girth neck
+ Full measurement name
+
+
+
+
+ Half girth neck for shirts
+ Full measurement name
+
+
+
+
+ Half girth chest first
+ Full measurement name
+
+
+
+
+ Half girth chest second
+ Full measurement name
+
+
+
+
+ Half girth chest third
+ Full measurement name
+
+
+
+
+ Half girth waist
+ Full measurement name
+
+
+
+
+ Half girth hips considering protruding abdomen
+ Full measurement name
+
+
+
+
+ Half girth hips excluding protruding abdomen
+ Full measurement name
+
+
+
+
+ Girth knee flexed feet
+ Full measurement name
+
+
+
+
+ Neck transverse diameter
+ Full measurement name
+
+
+
+
+ Front slash shoulder height
+ Full measurement name
+
+
+
+
+ Neck to front waist line
+ Full measurement name
+
+
+
+
+ Hand vertical diameter
+ Full measurement name
+
+
+
+
+ Neck to knee point
+ Full measurement name
+
+
+
+
+ Waist to knee
+ Full measurement name
+
+
+
+
+ Shoulder height
+ Full measurement name
+
+
+
+
+ Head height
+ Full measurement name
+
+
+
+
+ Body position
+ Full measurement name
+
+
+
+
+ Arc behind shoulder girdle
+ Full measurement name
+
+
+
+
+ Neck to neck base
+ Full measurement name
+
+
+
+
+ Depth waist first
+ Full measurement name
+
+
+
+ Depth waist second
- Full measurement description
+ Full measurement name
@@ -6266,19 +6344,19 @@ Do you want to save your changes?
PostfixOperators
-
+ cmcentimeter
-
+ mmmillimeter
-
+ ininch
@@ -6302,18 +6380,18 @@ Do you want to save your changes?
-
+ mm
-
-
+
+ cm
-
+ inch
@@ -6546,13 +6624,13 @@ Do you want to save your changes?
-
+ Can't find object
-
+ Can't cast object
@@ -6600,12 +6678,12 @@ Do you want to save your changes?
- Validation error in line %1 column %2
+ Validation error file %3 in line %1 column %2
- Parsing error in line %1 column %2
+ Parsing error file %3 in line %1 column %2
@@ -6837,6 +6915,11 @@ Do you want to save your changes?
This id is not unique.
+
+
+ File error.
+
+ VSplinePath
@@ -7058,31 +7141,31 @@ Do you want to save your changes?
Variables
-
+ Line_Left symbol _ in name
-
+ AngleLine_Left symbol _ in name
-
+ Arc_Left symbol _ in name
-
+ Spl_Left symbol _ in name
-
+ SplPath
@@ -7106,12 +7189,12 @@ Do you want to save your changes?
main
-
+ Pattern making program.
-
+ Pattern file.
diff --git a/src/app/share/translations/valentina_cs_CZ.ts b/src/app/share/translations/valentina_cs_CZ.ts
index 868652f16..40e324af9 100644
--- a/src/app/share/translations/valentina_cs_CZ.ts
+++ b/src/app/share/translations/valentina_cs_CZ.ts
@@ -3020,151 +3020,151 @@
Functions
-
+ sinsine function
-
+ coscosine function
-
+ tantangens function
-
+ asinarcus sine function
-
+ acosarcus cosine function
-
+ atanarcus tangens function
-
+ sinhhyperbolic sine function
-
+ coshhyperbolic cosine
-
+ tanhhyperbolic tangens function
-
+ asinhhyperbolic arcus sine function
-
+ acoshhyperbolic arcus tangens function
-
+ atanhhyperbolic arcur tangens function
-
+ log2logarithm to the base 2
-
+ log10logarithm to the base 10
-
+ loglogarithm to the base 10
-
+ lnlogarithm to base e (2.71828...)
-
+ expe raised to the power of x
-
+ sqrtsquare root of a value
-
+ signsign function -1 if x<0; 1 if x>0
-
+ rintround to nearest integer
-
+ absabsolute value
-
+ minmin of all arguments
-
+ maxmax of all arguments
-
+ sumsum of all arguments
-
+ avgmean value of all arguments
@@ -3866,42 +3866,42 @@ Do you want to save your changes?
-
+ Wrong units.
-
+ Application doesn't support standard table with inches.
-
+ File error.
-
+ File loaded
-
+ The measurements file <br/><br/> <b>%1</b> <br/><br/> %3
-
+ could not be found. Do you want to update the file location
-
+ Standard measurements (*.vst)
-
+ Individual measurements (*.vit)
@@ -3955,7 +3955,7 @@ Do you want to save your changes?
-
+ Open fileOtevřít soubor
@@ -4005,77 +4005,29 @@ Do you want to save your changes?
Measurements
-
+ head_girthShort measurement name. Don't use math symbols in name!!!!
-
- Head girth
- Full measurement name
-
-
-
-
- Around fullest part of Head
- Full measurement description
-
-
-
-
+ mid_neck_girthShort measurement name. Don't use math symbols in name!!!!
-
- Mid-neck girth
- Full measurement name
-
-
-
-
- Around middle part of Neck
- Full measurement description
-
-
-
-
+ neck_base_girthShort measurement name. Don't use math symbols in name!!!!
-
- Neck Base girth
- Full measurement name
-
-
-
-
- Around Neck at base
- Full measurement description
-
-
-
-
+ head_and_neck_lengthShort measurement name. Don't use math symbols in name!!!!
-
-
- Head and Neck length
- Full measurement name
-
-
-
-
- Vertical Distance from Crown to Nape
- Full measurement description
-
- center_front_waist_length
@@ -4083,9 +4035,814 @@ Do you want to save your changes?
-
- Front Center length
+
+ center_back_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ side_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ trunk_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_chest_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ bust_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ under_bust_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ high_hip_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hip_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_front_chest_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_chest_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ across_front_shoulder_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ across_back_shoulder_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_back_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ bustpoint_to_bustpoint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ halter_bustpoint_to_bustpoint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_bustpoint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ crotch_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ rise_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_drop
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_slope_degrees
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_shoulder_slope_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_shoulder_slope_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_shoulder_to_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_shoulder_to_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_neck_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_neck_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_upper_chest_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_upper_chest_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_waist_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_upper_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_upper_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ chest_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_waist_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_neck_to_upper_chest_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_neck_to_bust_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_to_upper_chest
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_to_lower_breast
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_waist_to_upper_chest
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ strap_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ armscye_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ elbow_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_arm_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ wrist_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ scye_depth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_and_arm_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ underarm_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ cervicale_to_wrist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_to_elbow_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arm_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ thigh_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ mid_thigh_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ knee_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ calf_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ ankle_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ knee_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ ankle_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ foot_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ foot_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ cervicale_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ cervicale_to_knee_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ high_hip_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hip_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ Hip side to Floor
+ Full measurement description
+
+
+
+
+ waist_to_hip_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_knee_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ crotch_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ size
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+ SizeFull measurement name
+ Velikost
+
+
+ Size
+ Full measurement description
+ Velikost
+
+
+
+ height_front_neck_base_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_base_neck_side_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_shoulder_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_nipple_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_back_angle_axilla
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_scapular_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_under_buttock_folds
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hips_excluding_protruding_abdomen
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ girth_foot_instep
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ side_waist_to_floor
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_to_floor
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_through_groin_area
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_plane_seat
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_radial_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_third_finger
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_first_line_chest_circumference
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_through_shoulder_joint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_back_line_chest_circumference
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_neck_side
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_length_upper_body
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ chest_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ anteroposterior_diameter_hands
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_clavicular_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_armhole_slash
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ slash_shoulder_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_neck
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_neck_for_shirts
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_chest_first
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_chest_second
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_chest_third
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_waist
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_hips_considering_protruding_abdomen
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_hips_excluding_protruding_abdomen
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ girth_knee_flexed_feet
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_transverse_diameter
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_slash_shoulder_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_front_waist_line
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_vertical_diameter
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_knee_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_knee
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ head_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ body_position
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_behind_shoulder_girdle
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_neck_base
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ depth_waist_first
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ depth_waist_second
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ MeasurementsDescriptions
+
+
+ Around fullest part of Head
+ Full measurement description
+
+
+
+
+ Around middle part of Neck
+ Full measurement description
+
+
+
+
+ Around Neck at base
+ Full measurement description
+
+
+
+
+ Vertical Distance from Crown to Nape
+ Full measurement description
@@ -4096,2234 +4853,1565 @@ Do you want to save your changes?
- center_back_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Center length
- Full measurement name
-
-
-
- Back Neck Center to Back Waist CenterFull measurement description
-
- shoulder_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder length
- Full measurement name
-
-
-
-
+ NeckPoint to ShoulderTipFull measurement description
-
- side_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Side Waist length
- Full measurement name
-
-
-
-
+ Armpit to Waist sideFull measurement description
-
- trunk_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Trunk length
- Full measurement name
-
-
-
-
+ Around Body from middle of Shoulder length to BustPoint to Crotch up back to beginning pointFull measurement description
-
- shoulder_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder girth
- Full measurement name
-
-
-
-
+ Around Arms and Torso, at bicep level parallel to floor, with arms hanging at the sidesFull measurement description
-
- upper_chest_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Upper Chest girth
- Full measurement name
-
-
-
-
+ Around Chest at Armfold level, will be parallel to floor across back, will not be parallel to floor across front chestFull measurement description
-
- bust_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Bust girth
- Full measurement name
-
-
-
-
+ Around fullest part of Bust, parallel to floorFull measurement description
-
- under_bust_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Under Bust girth
- Full measurement name
-
-
-
-
+ Around Chest below the Bust, parallel to floorFull measurement description
-
- waist_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist girth
- Full measurement name
-
-
-
-
+ Tie a string around smallest part of waist, keep string tied while taking meaasurements. Not usually parallel to floor for front waist or back waist.Full measurement description
-
- high_hip_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- HighHip girth
- Full measurement name
-
-
-
-
+ Around HighHip, parallel to floorFull measurement description
-
- hip_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hip girth
- Full measurement name
-
-
-
-
+ Around Hip, parallel to floorFull measurement description
-
- upper_front_chest_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Upper Chest width
- Full measurement name
-
-
-
-
+ Across Front UpperChest, smallest width from armscye to armscyeFull measurement description
-
- front_chest_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Chest width
- Full measurement name
-
-
-
-
+ Across Front Chest, from armfold to armfoldFull measurement description
-
- across_front_shoulder_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Across Shoulder width
- Full measurement name
-
-
-
-
+ From ShoulderTip to ShoulderTip, across FrontFull measurement description
-
- across_back_shoulder_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Across Shoulder width
- Full measurement name
-
-
-
-
+ From ShoulderTip to ShoulderTip, across BackFull measurement description
-
- upper_back_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Upper Chest width
- Full measurement name
-
-
-
-
+ Across Back UpperChest, smallest width from armscye to armscyeFull measurement description
-
- back_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Chest width
- Full measurement name
-
-
-
-
+ Across Back Chest, from armfold to armfoldFull measurement description
-
- bustpoint_to_bustpoint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- BustPoint to BustPoint
- Full measurement name
-
-
-
-
+ Distance between BustPoints, across ChestFull measurement description
-
- halter_bustpoint_to_bustpoint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Halter Bustpoint to Bustpoint
- Full measurement name
-
-
-
-
+ Distance from Bustpoint, behind neck, down to BustpointFull measurement description
-
- neck_to_bustpoint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- NeckPoint to BustPoint
- Full measurement name
-
-
-
-
+ From NeckPoint to BustPointFull measurement description
-
- crotch_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Crotch length
- Full measurement name
-
-
-
-
+ From Front Waist Center, down to crotch, up to Back Waist CenterFull measurement description
-
- rise_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Rise height
- Full measurement name
-
-
-
-
+ Sit on hard chair, measure from side waist straight down to chair bottomFull measurement description
-
- shoulder_drop
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder Drop
- Full measurement name
-
-
-
-
+ Vertical Distance from NeckPoint level to ShoulderTip levelFull measurement description
-
- shoulder_slope_degrees
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder Slope degrees
- Full measurement name
-
-
-
-
+ Degrees of angle from NeckPoint to ShoulderTip – requires goniometerFull measurement description
-
- front_shoulder_slope_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Shoulder Balance
- Full measurement name
-
-
-
-
+ ShoulderTip to Front Waist CenterFull measurement description
-
- back_shoulder_slope_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Shoulder Balance
- Full measurement name
-
-
-
-
+ ShoulderTip to Back Waist CenterFull measurement description
-
- front_shoulder_to_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Full Length
- Full measurement name
-
-
-
-
+ NeckPoint straight down front chest to WaistlineFull measurement description
-
- back_shoulder_to_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Full Length
- Full measurement name
-
-
-
-
+ Back NeckPoint straight down back chest to WaistlineFull measurement description
-
- front_neck_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Neck arc
- Full measurement name
-
-
-
-
+ NeckPoint to NeckPoint through Front Neck CenterFull measurement description
-
- back_neck_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Neck arc
- Full measurement name
-
-
-
-
+ NeckPoint to NeckPoint across NapeFull measurement description
-
- front_upper_chest_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- front_upper-bust_arc
- Full measurement name
-
-
-
-
+ front_upper-bust_arcFull measurement description
-
- back_upper_chest_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back UpperBust arc
- Full measurement name
-
-
-
-
+ Back UpperBust side to sideFull measurement description
-
- front_waist_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Waist arc
- Full measurement name
-
-
-
-
+ Front Waist side to sideFull measurement description
-
- back_waist_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Waist arc
- Full measurement name
-
-
-
-
+ Back Waist side to sideFull measurement description
-
- front_upper_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front UpperHip arc
- Full measurement name
-
-
-
-
+ Front UpperHip side to sideFull measurement description
-
- back_upper_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back UpperHip arc
- Full measurement name
-
-
-
-
+ Back UpperHip side to sideFull measurement description
-
- front_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Hip arc
- Full measurement name
-
-
-
-
+ Front Hip side to sideFull measurement description
-
- back_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Hip arc
- Full measurement name
-
-
-
-
+ Back Hip side to sideFull measurement description
-
- chest_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Chest Balance
- Full measurement name
-
-
-
-
+ NeckPoint to Front ArmfoldPointFull measurement description
-
- back_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Balance
- Full measurement name
-
-
-
-
+ NeckPoint to Back ArmfoldPointFull measurement description
-
- front_waist_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Waist Balance
- Full measurement name
-
-
-
-
+ NeckPoint across Front Chest to Waist sideFull measurement description
-
- back_waist_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Waist Balance
- Full measurement name
-
-
-
-
+ NeckPoint across Back Chest to Waist sideFull measurement description
-
- front_neck_to_upper_chest_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front UpperChest height
- Full measurement name
-
-
-
-
+ Front Neck Center straight down to UpperChest lineFull measurement description
-
- front_neck_to_bust_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Bust height
- Full measurement name
-
-
-
-
+ Front Neck Center straight down to Bust lineFull measurement description
-
- armscye_girth
- Short measurement name. Don't use math symbols in name!!!!
+
+ Front Upper chest waist
+ Full measurement description
-
- Armscye Girth
- Full measurement name
+
+ Front waist to lower breast
+ Full measurement description
-
+
+ Back waist to upper chest
+ Full measurement description
+
+
+
+
+ Strap length
+ Full measurement description
+
+
+
+ Around ArmscyeFull measurement description
-
- elbow_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Elbow Girth
- Full measurement name
-
-
-
-
+ Around Elbow with elbow bentFull measurement description
-
- upper_arm_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Upperarm Girth
- Full measurement name
-
-
-
-
+ Around UpperArmFull measurement description
-
- wrist_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Wrist girth
- Full measurement name
-
-
-
-
+ Around WristFull measurement description
-
- scye_depth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Armscye depth
- Full measurement name
-
-
-
-
+ Nape straight down to UnderBust line (same as Back UpperBust height)Full measurement description
-
- shoulder_and_arm_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder and Arm length
- Full measurement name
-
-
-
-
+ NeckPoint to ShoulderTip to Wrist, with elbow bent and hand on hipFull measurement description
-
- underarm_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Underarm length
- Full measurement name
-
-
-
-
+ Armpit to Wrist, with arm straight and hanging at sideFull measurement description
-
- cervicale_to_wrist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Nape to wrist length
- Full measurement name
-
-
-
-
+ Nape to Wrist, with elbow bent and hand on hipFull measurement description
-
- shoulder_to_elbow_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Elbow length
- Full measurement name
-
-
-
-
+ ShoulderTip to Elbow, with elbow bent and hand on hipFull measurement description
-
- arm_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arm length
- Full measurement name
-
-
-
-
+ ShoulderTip to Wrist, with elbow bent and hand on hipFull measurement description
-
- hand_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand width
- Full measurement name
-
-
-
-
+ Hand side to sideFull measurement description
-
- hand_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand length
- Full measurement name
-
-
-
-
+ Hand Middle Finger tip to wristFull measurement description
-
- hand_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand girth
- Full measurement name
-
-
-
-
+ Around HandFull measurement description
-
- thigh_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Thigh girth
- Full measurement name
-
-
-
-
+ Around ThighFull measurement description
-
- mid_thigh_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Midthigh girth
- Full measurement name
-
-
-
-
+ Around MidThighFull measurement description
-
- knee_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Knee girth
- Full measurement name
-
-
-
-
+ Around KneeFull measurement description
-
- calf_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Calf girth
- Full measurement name
-
-
-
-
+ Around CalfFull measurement description
-
- ankle_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Ankle girth
- Full measurement name
-
-
-
-
+ Around AnkleFull measurement description
-
- knee_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Knee height
- Full measurement name
-
-
-
-
+ Knee to FloorFull measurement description
-
- ankle_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Ankle height
- Full measurement name
-
-
-
-
+ Ankle to FloorFull measurement description
-
- foot_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Foot width
- Full measurement name
-
-
-
-
+ Widest part of Foot side to sideFull measurement description
-
- foot_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Foot length
- Full measurement name
-
-
-
-
+ Tip of Longest Toe straight to back of heelFull measurement description
-
- height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Total Height
- Full measurement name
-
-
-
-
+ Top of head to floorFull measurement description
-
- cervicale_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Nape height
- Full measurement name
-
-
-
-
+ Nape to FloorFull measurement description
-
- cervicale_to_knee_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Nape to knee height
- Full measurement name
-
-
-
-
+ Nape to KneeFull measurement description
-
- waist_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist height
- Full measurement name
-
-
-
-
+ Waist side to floorFull measurement description
-
- high_hip_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- HighHip height
- Full measurement name
-
-
-
-
+ HighHip side to FloorFull measurement description
-
- hip_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hip height
- Full measurement name
-
-
-
-
- Hip side to Floor
- Full measurement description
-
-
-
-
- waist_to_hip_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to Hip height
- Full measurement name
-
-
-
-
+ Waist side to HipFull measurement description
-
- waist_to_knee_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to Knee height
- Full measurement name
-
-
-
-
+ Waist side to KneeFull measurement description
-
- crotch_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Crotch height/Inseam
- Full measurement name
-
-
-
-
+ Crotch to Floor along inside legFull measurement description
-
- size
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Size
- Full measurement name
- Velikost
-
-
-
+ SizeFull measurement descriptionVelikost
-
- height_front_neck_base_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height front neck base point
- Full measurement name
-
-
-
-
+ Height of the point base of the neck in frontFull measurement description
-
- height_base_neck_side_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height base neck side point
- Full measurement name
-
-
-
-
+ Height of the base of the neck side pointFull measurement description
-
- height_shoulder_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height shoulder point
- Full measurement name
-
-
-
-
+ The height of the shoulder pointFull measurement description
-
- height_nipple_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height nipple point
- Full measurement name
-
-
-
-
+ Height nipple pointFull measurement description
-
- height_back_angle_axilla
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height back angle axilla
- Full measurement name
-
-
-
-
+ Height back angle axillaFull measurement description
-
- height_scapular_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height scapular point
- Full measurement name
-
-
-
-
+ Height scapular pointFull measurement description
-
- height_under_buttock_folds
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height under buttock folds
- Full measurement name
-
-
-
-
+ Height under buttock foldsFull measurement description
-
- hips_excluding_protruding_abdomen
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hips excluding protruding abdomen
- Full measurement name
-
-
-
-
+ Hips excluding protruding abdomenFull measurement description
-
- girth_foot_instep
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Girth foot instep
- Full measurement name
-
-
-
-
+ Girth foot instepFull measurement description
-
- side_waist_to_floor
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Side waist to floor
- Full measurement name
-
-
-
-
+ The distance from the side waist to floorFull measurement description
-
- front_waist_to_floor
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front waist to floor
- Full measurement name
-
-
-
-
+ The distance from the front waist to floorFull measurement description
-
- arc_through_groin_area
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc through groin area
- Full measurement name
-
-
-
-
+ Arc through groin areaFull measurement description
-
- waist_to_plane_seat
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to plane seat
- Full measurement name
-
-
-
-
+ The distance from the waist to the plane seatFull measurement description
-
- neck_to_radial_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to radial point
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the side of the radial pointFull measurement description
-
- neck_to_third_finger
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to third finger
- Full measurement name
-
-
-
-
+ Distance from the base of the neck side point to the end of the third fingerFull measurement description
-
- neck_to_first_line_chest_circumference
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to first line chest circumference
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the side of the first line in front of chest circumferenceFull measurement description
-
- front_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front waist length
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the waist side front (waist length in the front)Full measurement description
-
- arc_through_shoulder_joint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc through shoulder joint
- Full measurement name
-
-
-
-
+ Arc through the highest point of the shoulder jointFull measurement description
-
- neck_to_back_line_chest_circumference
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to back line chest circumference
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the back line of chest circumference of the first and the second based on ledge vanesFull measurement description
-
- waist_to_neck_side
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to neck side
- Full measurement name
-
-
-
-
+ The distance from the waist to the back base of the neck side pointFull measurement description
-
- arc_length_upper_body
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc length upper body
- Full measurement name
-
-
-
-
+ Arc length of the upper body through the base of the neck side pointFull measurement description
-
- chest_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Chest width
- Full measurement name
-
-
-
-
+ Chest widthFull measurement description
-
- anteroposterior_diameter_hands
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Anteroposterior diameter hands
- Full measurement name
-
-
-
-
+ Anteroposterior diameter of the handsFull measurement description
-
- height_clavicular_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height clavicular point
- Full measurement name
-
-
-
-
+ Height clavicular pointFull measurement description
-
- height_armhole_slash
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height armhole slash
- Full measurement name
-
-
-
-
+ The distance from the point to the cervical level of the posterior angle of the front armpit (underarm height oblique)Full measurement description
-
- slash_shoulder_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Slash shoulder height
- Full measurement name
-
-
-
-
+ Slash shoulder heightFull measurement description
-
- half_girth_neck
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth neck
- Full measurement name
-
-
-
-
+ Half girth neckFull measurement description
-
- half_girth_neck_for_shirts
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth neck for shirts
- Full measurement name
-
-
-
-
+ Half girth neck for shirtsFull measurement description
-
- half_girth_chest_first
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth chest first
- Full measurement name
-
-
-
-
+ Half girth chest firstFull measurement description
-
- half_girth_chest_second
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth chest second
- Full measurement name
-
-
-
-
+ Half girth chest secondFull measurement description
-
- half_girth_chest_third
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth chest third
- Full measurement name
-
-
-
-
+ Half girth chest thirdFull measurement description
-
- half_girth_waist
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth waist
- Full measurement name
-
-
-
-
+ Half girth waistFull measurement description
-
- half_girth_hips_considering_protruding_abdomen
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth hips considering protruding abdomen
- Full measurement name
-
-
-
-
+ Half girth hips considering protruding abdomenFull measurement description
-
- half_girth_hips_excluding_protruding_abdomen
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth hips excluding protruding abdomen
- Full measurement name
-
-
-
-
+ Half girth hips excluding protruding abdomenFull measurement description
-
- girth_knee_flexed_feet
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Girth knee flexed feet
- Full measurement name
-
-
-
-
+ Girth knee flexed feetFull measurement description
-
- neck_transverse_diameter
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck transverse diameter
- Full measurement name
-
-
-
-
+ Neck transverse diameterFull measurement description
-
- front_slash_shoulder_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front slash shoulder height
- Full measurement name
-
-
-
-
+ Front slash shoulder heightFull measurement description
-
- neck_to_front_waist_line
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to front waist line
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the waist line frontFull measurement description
-
- hand_vertical_diameter
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand vertical diameter
- Full measurement name
-
-
-
-
+ Hand vertical diameterFull measurement description
-
- neck_to_knee_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to knee point
- Full measurement name
-
-
-
-
+ Distance from neck to knee pointFull measurement description
-
- waist_to_knee
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to knee
- Full measurement name
-
-
-
-
+ The distance from the waist to the kneeFull measurement description
-
- shoulder_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder height
- Full measurement name
-
-
-
-
+ Shoulder heightFull measurement description
-
- head_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Head height
- Full measurement name
-
-
-
-
+ Head heightFull measurement description
-
- body_position
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Body position
- Full measurement name
-
-
-
-
+ Body positionFull measurement description
-
- arc_behind_shoulder_girdle
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc behind shoulder girdle
- Full measurement name
-
-
-
-
+ Arc behind the shoulder girdleFull measurement description
-
- neck_to_neck_base
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to neck base
- Full measurement name
-
-
-
-
+ Distance from neck point to point on the base of the neck side neck girth measurement lineFull measurement description
-
- depth_waist_first
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Depth waist first
- Full measurement name
-
-
-
-
+ Depth waist firstFull measurement description
-
- depth_waist_second
- Short measurement name. Don't use math symbols in name!!!!
+
+ Depth waist second
+ Full measurement description
+
+
+ MeasurementsFullNames
-
- Depth waist second
+
+ Head girthFull measurement name
-
+
+ Mid-neck girth
+ Full measurement name
+
+
+
+
+ Neck Base girth
+ Full measurement name
+
+
+
+
+ Head and Neck length
+ Full measurement name
+
+
+
+
+ Front Center length
+ Full measurement name
+
+
+
+
+ Back Center length
+ Full measurement name
+
+
+
+
+ Shoulder length
+ Full measurement name
+
+
+
+
+ Side Waist length
+ Full measurement name
+
+
+
+
+ Trunk length
+ Full measurement name
+
+
+
+
+ Shoulder girth
+ Full measurement name
+
+
+
+
+ Upper Chest girth
+ Full measurement name
+
+
+
+
+ Bust girth
+ Full measurement name
+
+
+
+
+ Under Bust girth
+ Full measurement name
+
+
+
+
+ Waist girth
+ Full measurement name
+
+
+
+
+ HighHip girth
+ Full measurement name
+
+
+
+
+ Hip girth
+ Full measurement name
+
+
+
+
+ Front Upper Chest width
+ Full measurement name
+
+
+
+
+ Front Chest width
+ Full measurement name
+
+
+
+
+ Front Across Shoulder width
+ Full measurement name
+
+
+
+
+ Back Across Shoulder width
+ Full measurement name
+
+
+
+
+ Back Upper Chest width
+ Full measurement name
+
+
+
+
+ Back Chest width
+ Full measurement name
+
+
+
+
+ BustPoint to BustPoint
+ Full measurement name
+
+
+
+
+ Halter Bustpoint to Bustpoint
+ Full measurement name
+
+
+
+
+ NeckPoint to BustPoint
+ Full measurement name
+
+
+
+
+ Crotch length
+ Full measurement name
+
+
+
+
+ Rise height
+ Full measurement name
+
+
+
+
+ Shoulder Drop
+ Full measurement name
+
+
+
+
+ Shoulder Slope degrees
+ Full measurement name
+
+
+
+
+ Front Shoulder Balance
+ Full measurement name
+
+
+
+
+ Back Shoulder Balance
+ Full measurement name
+
+
+
+
+ Front Full Length
+ Full measurement name
+
+
+
+
+ Back Full Length
+ Full measurement name
+
+
+
+
+ Front Neck arc
+ Full measurement name
+
+
+
+
+ Back Neck arc
+ Full measurement name
+
+
+
+
+ front_upper-bust_arc
+ Full measurement name
+
+
+
+
+ Back UpperBust arc
+ Full measurement name
+
+
+
+
+ Front Waist arc
+ Full measurement name
+
+
+
+
+ Back Waist arc
+ Full measurement name
+
+
+
+
+ Front UpperHip arc
+ Full measurement name
+
+
+
+
+ Back UpperHip arc
+ Full measurement name
+
+
+
+
+ Front Hip arc
+ Full measurement name
+
+
+
+
+ Back Hip arc
+ Full measurement name
+
+
+
+
+ Chest Balance
+ Full measurement name
+
+
+
+
+ Back Balance
+ Full measurement name
+
+
+
+
+ Front Waist Balance
+ Full measurement name
+
+
+
+
+ Back Waist Balance
+ Full measurement name
+
+
+
+
+ Front UpperChest height
+ Full measurement name
+
+
+
+
+ Bust height
+ Full measurement name
+
+
+
+
+ Front Upper chest waist
+ Full measurement name
+
+
+
+
+ Front waist to lower breast
+ Full measurement name
+
+
+
+
+ Back waist to upper chest
+ Full measurement name
+
+
+
+
+ Strap length
+ Full measurement name
+
+
+
+
+ Armscye Girth
+ Full measurement name
+
+
+
+
+ Elbow Girth
+ Full measurement name
+
+
+
+
+ Upperarm Girth
+ Full measurement name
+
+
+
+
+ Wrist girth
+ Full measurement name
+
+
+
+
+ Armscye depth
+ Full measurement name
+
+
+
+
+ Shoulder and Arm length
+ Full measurement name
+
+
+
+
+ Underarm length
+ Full measurement name
+
+
+
+
+ Nape to wrist length
+ Full measurement name
+
+
+
+
+ Elbow length
+ Full measurement name
+
+
+
+
+ Arm length
+ Full measurement name
+
+
+
+
+ Hand width
+ Full measurement name
+
+
+
+
+ Hand length
+ Full measurement name
+
+
+
+
+ Hand girth
+ Full measurement name
+
+
+
+
+ Thigh girth
+ Full measurement name
+
+
+
+
+ Midthigh girth
+ Full measurement name
+
+
+
+
+ Knee girth
+ Full measurement name
+
+
+
+
+ Calf girth
+ Full measurement name
+
+
+
+
+ Ankle girth
+ Full measurement name
+
+
+
+
+ Knee height
+ Full measurement name
+
+
+
+
+ Ankle height
+ Full measurement name
+
+
+
+
+ Foot width
+ Full measurement name
+
+
+
+
+ Foot length
+ Full measurement name
+
+
+
+
+ Total Height
+ Full measurement name
+
+
+
+
+ Nape height
+ Full measurement name
+
+
+
+
+ Nape to knee height
+ Full measurement name
+
+
+
+
+ Waist height
+ Full measurement name
+
+
+
+
+ HighHip height
+ Full measurement name
+
+
+
+
+ Hip height
+ Full measurement name
+
+
+
+
+ Waist to Hip height
+ Full measurement name
+
+
+
+
+ Waist to Knee height
+ Full measurement name
+
+
+
+
+ Crotch height/Inseam
+ Full measurement name
+
+
+
+
+ Size
+ Full measurement name
+ Velikost
+
+
+
+ Height front neck base point
+ Full measurement name
+
+
+
+
+ Height base neck side point
+ Full measurement name
+
+
+
+
+ Height shoulder point
+ Full measurement name
+
+
+
+
+ Height nipple point
+ Full measurement name
+
+
+
+
+ Height back angle axilla
+ Full measurement name
+
+
+
+
+ Height scapular point
+ Full measurement name
+
+
+
+
+ Height under buttock folds
+ Full measurement name
+
+
+
+
+ Hips excluding protruding abdomen
+ Full measurement name
+
+
+
+
+ Girth foot instep
+ Full measurement name
+
+
+
+
+ Side waist to floor
+ Full measurement name
+
+
+
+
+ Front waist to floor
+ Full measurement name
+
+
+
+
+ Arc through groin area
+ Full measurement name
+
+
+
+
+ Waist to plane seat
+ Full measurement name
+
+
+
+
+ Neck to radial point
+ Full measurement name
+
+
+
+
+ Neck to third finger
+ Full measurement name
+
+
+
+
+ Neck to first line chest circumference
+ Full measurement name
+
+
+
+
+ Front waist length
+ Full measurement name
+
+
+
+
+ Arc through shoulder joint
+ Full measurement name
+
+
+
+
+ Neck to back line chest circumference
+ Full measurement name
+
+
+
+
+ Waist to neck side
+ Full measurement name
+
+
+
+
+ Arc length upper body
+ Full measurement name
+
+
+
+
+ Chest width
+ Full measurement name
+
+
+
+
+ Anteroposterior diameter hands
+ Full measurement name
+
+
+
+
+ Height clavicular point
+ Full measurement name
+
+
+
+
+ Height armhole slash
+ Full measurement name
+
+
+
+
+ Slash shoulder height
+ Full measurement name
+
+
+
+
+ Half girth neck
+ Full measurement name
+
+
+
+
+ Half girth neck for shirts
+ Full measurement name
+
+
+
+
+ Half girth chest first
+ Full measurement name
+
+
+
+
+ Half girth chest second
+ Full measurement name
+
+
+
+
+ Half girth chest third
+ Full measurement name
+
+
+
+
+ Half girth waist
+ Full measurement name
+
+
+
+
+ Half girth hips considering protruding abdomen
+ Full measurement name
+
+
+
+
+ Half girth hips excluding protruding abdomen
+ Full measurement name
+
+
+
+
+ Girth knee flexed feet
+ Full measurement name
+
+
+
+
+ Neck transverse diameter
+ Full measurement name
+
+
+
+
+ Front slash shoulder height
+ Full measurement name
+
+
+
+
+ Neck to front waist line
+ Full measurement name
+
+
+
+
+ Hand vertical diameter
+ Full measurement name
+
+
+
+
+ Neck to knee point
+ Full measurement name
+
+
+
+
+ Waist to knee
+ Full measurement name
+
+
+
+
+ Shoulder height
+ Full measurement name
+
+
+
+
+ Head height
+ Full measurement name
+
+
+
+
+ Body position
+ Full measurement name
+
+
+
+
+ Arc behind shoulder girdle
+ Full measurement name
+
+
+
+
+ Neck to neck base
+ Full measurement name
+
+
+
+
+ Depth waist first
+ Full measurement name
+
+
+
+ Depth waist second
- Full measurement description
+ Full measurement name
@@ -6430,19 +6518,19 @@ Do you want to save your changes?
PostfixOperators
-
+ cmcentimeter
-
+ mmmillimeter
-
+ ininch
@@ -6466,18 +6554,18 @@ Do you want to save your changes?
-
+ mm
-
-
+
+ cm
-
+ inch
@@ -6733,13 +6821,13 @@ Do you want to save your changes?
-
+ Can't find objectNelze najít předmět
-
+ Can't cast object
@@ -6795,12 +6883,12 @@ Do you want to save your changes?
- Validation error in line %1 column %2
+ Validation error file %3 in line %1 column %2
- Parsing error in line %1 column %2
+ Parsing error file %3 in line %1 column %2
@@ -7132,6 +7220,11 @@ Do you want to save your changes?
This id is not unique.Toto ID není jedinečné.
+
+
+ File error.
+
+ VSplinePath
@@ -7360,31 +7453,31 @@ Do you want to save your changes?
Variables
-
+ Line_Left symbol _ in name
-
+ AngleLine_Left symbol _ in name
-
+ Arc_Left symbol _ in name
-
+ Spl_Left symbol _ in name
-
+ SplPath
@@ -7408,12 +7501,12 @@ Do you want to save your changes?
main
-
+ Pattern making program.
-
+ Pattern file.
diff --git a/src/app/share/translations/valentina_de_DE.ts b/src/app/share/translations/valentina_de_DE.ts
index 3bb3f54ab..8105dc7f7 100644
--- a/src/app/share/translations/valentina_de_DE.ts
+++ b/src/app/share/translations/valentina_de_DE.ts
@@ -3104,151 +3104,151 @@
Functions
-
+ sinsine function
-
+ coscosine function
-
+ tantangens function
-
+ asinarcus sine function
-
+ acosarcus cosine function
-
+ atanarcus tangens function
-
+ sinhhyperbolic sine function
-
+ coshhyperbolic cosine
-
+ tanhhyperbolic tangens function
-
+ asinhhyperbolic arcus sine function
-
+ acoshhyperbolic arcus tangens function
-
+ atanhhyperbolic arcur tangens function
-
+ log2logarithm to the base 2
-
+ log10logarithm to the base 10
-
+ loglogarithm to the base 10
-
+ lnlogarithm to base e (2.71828...)
-
+ expe raised to the power of x
-
+ sqrtsquare root of a value
-
+ signsign function -1 if x<0; 1 if x>0
-
+ rintround to nearest integer
-
+ absabsolute value
-
+ minmin of all arguments
-
+ maxmax of all arguments
-
+ sumsum of all arguments
-
+ avgmean value of all arguments
@@ -3974,42 +3974,42 @@ Do you want to save your changes?
-
+ Wrong units.
-
+ Application doesn't support standard table with inches.
-
+ File error.
-
+ File loaded
-
+ The measurements file <br/><br/> <b>%1</b> <br/><br/> %3
-
+ could not be found. Do you want to update the file location
-
+ Standard measurements (*.vst)
-
+ Individual measurements (*.vit)
@@ -4059,7 +4059,7 @@ Do you want to save your changes?
-
+ Open fileDatei öffnen
@@ -4117,77 +4117,29 @@ Do you want to save your changes?
Measurements
-
+ head_girthShort measurement name. Don't use math symbols in name!!!!
-
- Head girth
- Full measurement name
-
-
-
-
- Around fullest part of Head
- Full measurement description
-
-
-
-
+ mid_neck_girthShort measurement name. Don't use math symbols in name!!!!
-
- Mid-neck girth
- Full measurement name
-
-
-
-
- Around middle part of Neck
- Full measurement description
-
-
-
-
+ neck_base_girthShort measurement name. Don't use math symbols in name!!!!
-
- Neck Base girth
- Full measurement name
-
-
-
-
- Around Neck at base
- Full measurement description
-
-
-
-
+ head_and_neck_lengthShort measurement name. Don't use math symbols in name!!!!
-
-
- Head and Neck length
- Full measurement name
-
-
-
-
- Vertical Distance from Crown to Nape
- Full measurement description
-
- center_front_waist_length
@@ -4195,9 +4147,814 @@ Do you want to save your changes?
-
- Front Center length
+
+ center_back_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ side_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ trunk_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_chest_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ bust_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ under_bust_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ high_hip_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hip_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_front_chest_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_chest_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ across_front_shoulder_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ across_back_shoulder_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_back_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ bustpoint_to_bustpoint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ halter_bustpoint_to_bustpoint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_bustpoint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ crotch_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ rise_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_drop
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_slope_degrees
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_shoulder_slope_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_shoulder_slope_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_shoulder_to_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_shoulder_to_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_neck_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_neck_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_upper_chest_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_upper_chest_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_waist_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_upper_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_upper_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ chest_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_waist_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_neck_to_upper_chest_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_neck_to_bust_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_to_upper_chest
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_to_lower_breast
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_waist_to_upper_chest
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ strap_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ armscye_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ elbow_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_arm_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ wrist_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ scye_depth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_and_arm_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ underarm_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ cervicale_to_wrist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_to_elbow_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arm_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ thigh_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ mid_thigh_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ knee_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ calf_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ ankle_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ knee_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ ankle_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ foot_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ foot_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ cervicale_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ cervicale_to_knee_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ high_hip_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hip_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ Hip side to Floor
+ Full measurement description
+
+
+
+
+ waist_to_hip_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_knee_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ crotch_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ size
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+ SizeFull measurement name
+ Konfektion
+
+
+ Size
+ Full measurement description
+ Konfektion
+
+
+
+ height_front_neck_base_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_base_neck_side_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_shoulder_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_nipple_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_back_angle_axilla
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_scapular_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_under_buttock_folds
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hips_excluding_protruding_abdomen
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ girth_foot_instep
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ side_waist_to_floor
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_to_floor
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_through_groin_area
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_plane_seat
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_radial_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_third_finger
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_first_line_chest_circumference
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_through_shoulder_joint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_back_line_chest_circumference
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_neck_side
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_length_upper_body
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ chest_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ anteroposterior_diameter_hands
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_clavicular_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_armhole_slash
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ slash_shoulder_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_neck
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_neck_for_shirts
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_chest_first
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_chest_second
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_chest_third
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_waist
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_hips_considering_protruding_abdomen
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_hips_excluding_protruding_abdomen
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ girth_knee_flexed_feet
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_transverse_diameter
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_slash_shoulder_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_front_waist_line
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_vertical_diameter
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_knee_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_knee
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ head_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ body_position
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_behind_shoulder_girdle
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_neck_base
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ depth_waist_first
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ depth_waist_second
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ MeasurementsDescriptions
+
+
+ Around fullest part of Head
+ Full measurement description
+
+
+
+
+ Around middle part of Neck
+ Full measurement description
+
+
+
+
+ Around Neck at base
+ Full measurement description
+
+
+
+
+ Vertical Distance from Crown to Nape
+ Full measurement description
@@ -4208,2234 +4965,1565 @@ Do you want to save your changes?
- center_back_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Center length
- Full measurement name
-
-
-
- Back Neck Center to Back Waist CenterFull measurement description
-
- shoulder_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder length
- Full measurement name
-
-
-
-
+ NeckPoint to ShoulderTipFull measurement description
-
- side_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Side Waist length
- Full measurement name
-
-
-
-
+ Armpit to Waist sideFull measurement description
-
- trunk_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Trunk length
- Full measurement name
-
-
-
-
+ Around Body from middle of Shoulder length to BustPoint to Crotch up back to beginning pointFull measurement description
-
- shoulder_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder girth
- Full measurement name
-
-
-
-
+ Around Arms and Torso, at bicep level parallel to floor, with arms hanging at the sidesFull measurement description
-
- upper_chest_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Upper Chest girth
- Full measurement name
-
-
-
-
+ Around Chest at Armfold level, will be parallel to floor across back, will not be parallel to floor across front chestFull measurement description
-
- bust_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Bust girth
- Full measurement name
-
-
-
-
+ Around fullest part of Bust, parallel to floorFull measurement description
-
- under_bust_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Under Bust girth
- Full measurement name
-
-
-
-
+ Around Chest below the Bust, parallel to floorFull measurement description
-
- waist_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist girth
- Full measurement name
-
-
-
-
+ Tie a string around smallest part of waist, keep string tied while taking meaasurements. Not usually parallel to floor for front waist or back waist.Full measurement description
-
- high_hip_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- HighHip girth
- Full measurement name
-
-
-
-
+ Around HighHip, parallel to floorFull measurement description
-
- hip_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hip girth
- Full measurement name
-
-
-
-
+ Around Hip, parallel to floorFull measurement description
-
- upper_front_chest_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Upper Chest width
- Full measurement name
-
-
-
-
+ Across Front UpperChest, smallest width from armscye to armscyeFull measurement description
-
- front_chest_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Chest width
- Full measurement name
-
-
-
-
+ Across Front Chest, from armfold to armfoldFull measurement description
-
- across_front_shoulder_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Across Shoulder width
- Full measurement name
-
-
-
-
+ From ShoulderTip to ShoulderTip, across FrontFull measurement description
-
- across_back_shoulder_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Across Shoulder width
- Full measurement name
-
-
-
-
+ From ShoulderTip to ShoulderTip, across BackFull measurement description
-
- upper_back_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Upper Chest width
- Full measurement name
-
-
-
-
+ Across Back UpperChest, smallest width from armscye to armscyeFull measurement description
-
- back_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Chest width
- Full measurement name
-
-
-
-
+ Across Back Chest, from armfold to armfoldFull measurement description
-
- bustpoint_to_bustpoint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- BustPoint to BustPoint
- Full measurement name
-
-
-
-
+ Distance between BustPoints, across ChestFull measurement description
-
- halter_bustpoint_to_bustpoint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Halter Bustpoint to Bustpoint
- Full measurement name
-
-
-
-
+ Distance from Bustpoint, behind neck, down to BustpointFull measurement description
-
- neck_to_bustpoint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- NeckPoint to BustPoint
- Full measurement name
-
-
-
-
+ From NeckPoint to BustPointFull measurement description
-
- crotch_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Crotch length
- Full measurement name
-
-
-
-
+ From Front Waist Center, down to crotch, up to Back Waist CenterFull measurement description
-
- rise_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Rise height
- Full measurement name
-
-
-
-
+ Sit on hard chair, measure from side waist straight down to chair bottomFull measurement description
-
- shoulder_drop
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder Drop
- Full measurement name
-
-
-
-
+ Vertical Distance from NeckPoint level to ShoulderTip levelFull measurement description
-
- shoulder_slope_degrees
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder Slope degrees
- Full measurement name
-
-
-
-
+ Degrees of angle from NeckPoint to ShoulderTip – requires goniometerFull measurement description
-
- front_shoulder_slope_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Shoulder Balance
- Full measurement name
-
-
-
-
+ ShoulderTip to Front Waist CenterFull measurement description
-
- back_shoulder_slope_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Shoulder Balance
- Full measurement name
-
-
-
-
+ ShoulderTip to Back Waist CenterFull measurement description
-
- front_shoulder_to_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Full Length
- Full measurement name
-
-
-
-
+ NeckPoint straight down front chest to WaistlineFull measurement description
-
- back_shoulder_to_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Full Length
- Full measurement name
-
-
-
-
+ Back NeckPoint straight down back chest to WaistlineFull measurement description
-
- front_neck_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Neck arc
- Full measurement name
-
-
-
-
+ NeckPoint to NeckPoint through Front Neck CenterFull measurement description
-
- back_neck_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Neck arc
- Full measurement name
-
-
-
-
+ NeckPoint to NeckPoint across NapeFull measurement description
-
- front_upper_chest_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- front_upper-bust_arc
- Full measurement name
-
-
-
-
+ front_upper-bust_arcFull measurement description
-
- back_upper_chest_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back UpperBust arc
- Full measurement name
-
-
-
-
+ Back UpperBust side to sideFull measurement description
-
- front_waist_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Waist arc
- Full measurement name
-
-
-
-
+ Front Waist side to sideFull measurement description
-
- back_waist_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Waist arc
- Full measurement name
-
-
-
-
+ Back Waist side to sideFull measurement description
-
- front_upper_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front UpperHip arc
- Full measurement name
-
-
-
-
+ Front UpperHip side to sideFull measurement description
-
- back_upper_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back UpperHip arc
- Full measurement name
-
-
-
-
+ Back UpperHip side to sideFull measurement description
-
- front_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Hip arc
- Full measurement name
-
-
-
-
+ Front Hip side to sideFull measurement description
-
- back_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Hip arc
- Full measurement name
-
-
-
-
+ Back Hip side to sideFull measurement description
-
- chest_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Chest Balance
- Full measurement name
-
-
-
-
+ NeckPoint to Front ArmfoldPointFull measurement description
-
- back_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Balance
- Full measurement name
-
-
-
-
+ NeckPoint to Back ArmfoldPointFull measurement description
-
- front_waist_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Waist Balance
- Full measurement name
-
-
-
-
+ NeckPoint across Front Chest to Waist sideFull measurement description
-
- back_waist_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Waist Balance
- Full measurement name
-
-
-
-
+ NeckPoint across Back Chest to Waist sideFull measurement description
-
- front_neck_to_upper_chest_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front UpperChest height
- Full measurement name
-
-
-
-
+ Front Neck Center straight down to UpperChest lineFull measurement description
-
- front_neck_to_bust_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Bust height
- Full measurement name
-
-
-
-
+ Front Neck Center straight down to Bust lineFull measurement description
-
- armscye_girth
- Short measurement name. Don't use math symbols in name!!!!
+
+ Front Upper chest waist
+ Full measurement description
-
- Armscye Girth
- Full measurement name
+
+ Front waist to lower breast
+ Full measurement description
-
+
+ Back waist to upper chest
+ Full measurement description
+
+
+
+
+ Strap length
+ Full measurement description
+
+
+
+ Around ArmscyeFull measurement description
-
- elbow_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Elbow Girth
- Full measurement name
-
-
-
-
+ Around Elbow with elbow bentFull measurement description
-
- upper_arm_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Upperarm Girth
- Full measurement name
-
-
-
-
+ Around UpperArmFull measurement description
-
- wrist_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Wrist girth
- Full measurement name
-
-
-
-
+ Around WristFull measurement description
-
- scye_depth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Armscye depth
- Full measurement name
-
-
-
-
+ Nape straight down to UnderBust line (same as Back UpperBust height)Full measurement description
-
- shoulder_and_arm_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder and Arm length
- Full measurement name
-
-
-
-
+ NeckPoint to ShoulderTip to Wrist, with elbow bent and hand on hipFull measurement description
-
- underarm_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Underarm length
- Full measurement name
-
-
-
-
+ Armpit to Wrist, with arm straight and hanging at sideFull measurement description
-
- cervicale_to_wrist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Nape to wrist length
- Full measurement name
-
-
-
-
+ Nape to Wrist, with elbow bent and hand on hipFull measurement description
-
- shoulder_to_elbow_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Elbow length
- Full measurement name
-
-
-
-
+ ShoulderTip to Elbow, with elbow bent and hand on hipFull measurement description
-
- arm_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arm length
- Full measurement name
-
-
-
-
+ ShoulderTip to Wrist, with elbow bent and hand on hipFull measurement description
-
- hand_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand width
- Full measurement name
-
-
-
-
+ Hand side to sideFull measurement description
-
- hand_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand length
- Full measurement name
-
-
-
-
+ Hand Middle Finger tip to wristFull measurement description
-
- hand_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand girth
- Full measurement name
-
-
-
-
+ Around HandFull measurement description
-
- thigh_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Thigh girth
- Full measurement name
-
-
-
-
+ Around ThighFull measurement description
-
- mid_thigh_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Midthigh girth
- Full measurement name
-
-
-
-
+ Around MidThighFull measurement description
-
- knee_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Knee girth
- Full measurement name
-
-
-
-
+ Around KneeFull measurement description
-
- calf_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Calf girth
- Full measurement name
-
-
-
-
+ Around CalfFull measurement description
-
- ankle_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Ankle girth
- Full measurement name
-
-
-
-
+ Around AnkleFull measurement description
-
- knee_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Knee height
- Full measurement name
-
-
-
-
+ Knee to FloorFull measurement description
-
- ankle_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Ankle height
- Full measurement name
-
-
-
-
+ Ankle to FloorFull measurement description
-
- foot_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Foot width
- Full measurement name
-
-
-
-
+ Widest part of Foot side to sideFull measurement description
-
- foot_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Foot length
- Full measurement name
-
-
-
-
+ Tip of Longest Toe straight to back of heelFull measurement description
-
- height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Total Height
- Full measurement name
-
-
-
-
+ Top of head to floorFull measurement description
-
- cervicale_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Nape height
- Full measurement name
-
-
-
-
+ Nape to FloorFull measurement description
-
- cervicale_to_knee_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Nape to knee height
- Full measurement name
-
-
-
-
+ Nape to KneeFull measurement description
-
- waist_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist height
- Full measurement name
-
-
-
-
+ Waist side to floorFull measurement description
-
- high_hip_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- HighHip height
- Full measurement name
-
-
-
-
+ HighHip side to FloorFull measurement description
-
- hip_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hip height
- Full measurement name
-
-
-
-
- Hip side to Floor
- Full measurement description
-
-
-
-
- waist_to_hip_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to Hip height
- Full measurement name
-
-
-
-
+ Waist side to HipFull measurement description
-
- waist_to_knee_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to Knee height
- Full measurement name
-
-
-
-
+ Waist side to KneeFull measurement description
-
- crotch_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Crotch height/Inseam
- Full measurement name
-
-
-
-
+ Crotch to Floor along inside legFull measurement description
-
- size
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Size
- Full measurement name
- Konfektion
-
-
-
+ SizeFull measurement descriptionKonfektion
-
- height_front_neck_base_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height front neck base point
- Full measurement name
-
-
-
-
+ Height of the point base of the neck in frontFull measurement description
-
- height_base_neck_side_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height base neck side point
- Full measurement name
-
-
-
-
+ Height of the base of the neck side pointFull measurement description
-
- height_shoulder_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height shoulder point
- Full measurement name
-
-
-
-
+ The height of the shoulder pointFull measurement description
-
- height_nipple_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height nipple point
- Full measurement name
-
-
-
-
+ Height nipple pointFull measurement description
-
- height_back_angle_axilla
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height back angle axilla
- Full measurement name
-
-
-
-
+ Height back angle axillaFull measurement description
-
- height_scapular_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height scapular point
- Full measurement name
-
-
-
-
+ Height scapular pointFull measurement description
-
- height_under_buttock_folds
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height under buttock folds
- Full measurement name
-
-
-
-
+ Height under buttock foldsFull measurement description
-
- hips_excluding_protruding_abdomen
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hips excluding protruding abdomen
- Full measurement name
-
-
-
-
+ Hips excluding protruding abdomenFull measurement description
-
- girth_foot_instep
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Girth foot instep
- Full measurement name
-
-
-
-
+ Girth foot instepFull measurement description
-
- side_waist_to_floor
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Side waist to floor
- Full measurement name
-
-
-
-
+ The distance from the side waist to floorFull measurement description
-
- front_waist_to_floor
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front waist to floor
- Full measurement name
-
-
-
-
+ The distance from the front waist to floorFull measurement description
-
- arc_through_groin_area
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc through groin area
- Full measurement name
-
-
-
-
+ Arc through groin areaFull measurement description
-
- waist_to_plane_seat
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to plane seat
- Full measurement name
-
-
-
-
+ The distance from the waist to the plane seatFull measurement description
-
- neck_to_radial_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to radial point
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the side of the radial pointFull measurement description
-
- neck_to_third_finger
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to third finger
- Full measurement name
-
-
-
-
+ Distance from the base of the neck side point to the end of the third fingerFull measurement description
-
- neck_to_first_line_chest_circumference
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to first line chest circumference
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the side of the first line in front of chest circumferenceFull measurement description
-
- front_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front waist length
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the waist side front (waist length in the front)Full measurement description
-
- arc_through_shoulder_joint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc through shoulder joint
- Full measurement name
-
-
-
-
+ Arc through the highest point of the shoulder jointFull measurement description
-
- neck_to_back_line_chest_circumference
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to back line chest circumference
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the back line of chest circumference of the first and the second based on ledge vanesFull measurement description
-
- waist_to_neck_side
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to neck side
- Full measurement name
-
-
-
-
+ The distance from the waist to the back base of the neck side pointFull measurement description
-
- arc_length_upper_body
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc length upper body
- Full measurement name
-
-
-
-
+ Arc length of the upper body through the base of the neck side pointFull measurement description
-
- chest_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Chest width
- Full measurement name
-
-
-
-
+ Chest widthFull measurement description
-
- anteroposterior_diameter_hands
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Anteroposterior diameter hands
- Full measurement name
-
-
-
-
+ Anteroposterior diameter of the handsFull measurement description
-
- height_clavicular_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height clavicular point
- Full measurement name
-
-
-
-
+ Height clavicular pointFull measurement description
-
- height_armhole_slash
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height armhole slash
- Full measurement name
-
-
-
-
+ The distance from the point to the cervical level of the posterior angle of the front armpit (underarm height oblique)Full measurement description
-
- slash_shoulder_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Slash shoulder height
- Full measurement name
-
-
-
-
+ Slash shoulder heightFull measurement description
-
- half_girth_neck
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth neck
- Full measurement name
-
-
-
-
+ Half girth neckFull measurement description
-
- half_girth_neck_for_shirts
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth neck for shirts
- Full measurement name
-
-
-
-
+ Half girth neck for shirtsFull measurement description
-
- half_girth_chest_first
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth chest first
- Full measurement name
-
-
-
-
+ Half girth chest firstFull measurement description
-
- half_girth_chest_second
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth chest second
- Full measurement name
-
-
-
-
+ Half girth chest secondFull measurement description
-
- half_girth_chest_third
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth chest third
- Full measurement name
-
-
-
-
+ Half girth chest thirdFull measurement description
-
- half_girth_waist
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth waist
- Full measurement name
-
-
-
-
+ Half girth waistFull measurement description
-
- half_girth_hips_considering_protruding_abdomen
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth hips considering protruding abdomen
- Full measurement name
-
-
-
-
+ Half girth hips considering protruding abdomenFull measurement description
-
- half_girth_hips_excluding_protruding_abdomen
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth hips excluding protruding abdomen
- Full measurement name
-
-
-
-
+ Half girth hips excluding protruding abdomenFull measurement description
-
- girth_knee_flexed_feet
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Girth knee flexed feet
- Full measurement name
-
-
-
-
+ Girth knee flexed feetFull measurement description
-
- neck_transverse_diameter
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck transverse diameter
- Full measurement name
-
-
-
-
+ Neck transverse diameterFull measurement description
-
- front_slash_shoulder_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front slash shoulder height
- Full measurement name
-
-
-
-
+ Front slash shoulder heightFull measurement description
-
- neck_to_front_waist_line
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to front waist line
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the waist line frontFull measurement description
-
- hand_vertical_diameter
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand vertical diameter
- Full measurement name
-
-
-
-
+ Hand vertical diameterFull measurement description
-
- neck_to_knee_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to knee point
- Full measurement name
-
-
-
-
+ Distance from neck to knee pointFull measurement description
-
- waist_to_knee
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to knee
- Full measurement name
-
-
-
-
+ The distance from the waist to the kneeFull measurement description
-
- shoulder_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder height
- Full measurement name
-
-
-
-
+ Shoulder heightFull measurement description
-
- head_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Head height
- Full measurement name
-
-
-
-
+ Head heightFull measurement description
-
- body_position
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Body position
- Full measurement name
-
-
-
-
+ Body positionFull measurement description
-
- arc_behind_shoulder_girdle
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc behind shoulder girdle
- Full measurement name
-
-
-
-
+ Arc behind the shoulder girdleFull measurement description
-
- neck_to_neck_base
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to neck base
- Full measurement name
-
-
-
-
+ Distance from neck point to point on the base of the neck side neck girth measurement lineFull measurement description
-
- depth_waist_first
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Depth waist first
- Full measurement name
-
-
-
-
+ Depth waist firstFull measurement description
-
- depth_waist_second
- Short measurement name. Don't use math symbols in name!!!!
+
+ Depth waist second
+ Full measurement description
+
+
+ MeasurementsFullNames
-
- Depth waist second
+
+ Head girthFull measurement name
-
+
+ Mid-neck girth
+ Full measurement name
+
+
+
+
+ Neck Base girth
+ Full measurement name
+
+
+
+
+ Head and Neck length
+ Full measurement name
+
+
+
+
+ Front Center length
+ Full measurement name
+
+
+
+
+ Back Center length
+ Full measurement name
+
+
+
+
+ Shoulder length
+ Full measurement name
+
+
+
+
+ Side Waist length
+ Full measurement name
+
+
+
+
+ Trunk length
+ Full measurement name
+
+
+
+
+ Shoulder girth
+ Full measurement name
+
+
+
+
+ Upper Chest girth
+ Full measurement name
+
+
+
+
+ Bust girth
+ Full measurement name
+
+
+
+
+ Under Bust girth
+ Full measurement name
+
+
+
+
+ Waist girth
+ Full measurement name
+
+
+
+
+ HighHip girth
+ Full measurement name
+
+
+
+
+ Hip girth
+ Full measurement name
+
+
+
+
+ Front Upper Chest width
+ Full measurement name
+
+
+
+
+ Front Chest width
+ Full measurement name
+
+
+
+
+ Front Across Shoulder width
+ Full measurement name
+
+
+
+
+ Back Across Shoulder width
+ Full measurement name
+
+
+
+
+ Back Upper Chest width
+ Full measurement name
+
+
+
+
+ Back Chest width
+ Full measurement name
+
+
+
+
+ BustPoint to BustPoint
+ Full measurement name
+
+
+
+
+ Halter Bustpoint to Bustpoint
+ Full measurement name
+
+
+
+
+ NeckPoint to BustPoint
+ Full measurement name
+
+
+
+
+ Crotch length
+ Full measurement name
+
+
+
+
+ Rise height
+ Full measurement name
+
+
+
+
+ Shoulder Drop
+ Full measurement name
+
+
+
+
+ Shoulder Slope degrees
+ Full measurement name
+
+
+
+
+ Front Shoulder Balance
+ Full measurement name
+
+
+
+
+ Back Shoulder Balance
+ Full measurement name
+
+
+
+
+ Front Full Length
+ Full measurement name
+
+
+
+
+ Back Full Length
+ Full measurement name
+
+
+
+
+ Front Neck arc
+ Full measurement name
+
+
+
+
+ Back Neck arc
+ Full measurement name
+
+
+
+
+ front_upper-bust_arc
+ Full measurement name
+
+
+
+
+ Back UpperBust arc
+ Full measurement name
+
+
+
+
+ Front Waist arc
+ Full measurement name
+
+
+
+
+ Back Waist arc
+ Full measurement name
+
+
+
+
+ Front UpperHip arc
+ Full measurement name
+
+
+
+
+ Back UpperHip arc
+ Full measurement name
+
+
+
+
+ Front Hip arc
+ Full measurement name
+
+
+
+
+ Back Hip arc
+ Full measurement name
+
+
+
+
+ Chest Balance
+ Full measurement name
+
+
+
+
+ Back Balance
+ Full measurement name
+
+
+
+
+ Front Waist Balance
+ Full measurement name
+
+
+
+
+ Back Waist Balance
+ Full measurement name
+
+
+
+
+ Front UpperChest height
+ Full measurement name
+
+
+
+
+ Bust height
+ Full measurement name
+
+
+
+
+ Front Upper chest waist
+ Full measurement name
+
+
+
+
+ Front waist to lower breast
+ Full measurement name
+
+
+
+
+ Back waist to upper chest
+ Full measurement name
+
+
+
+
+ Strap length
+ Full measurement name
+
+
+
+
+ Armscye Girth
+ Full measurement name
+
+
+
+
+ Elbow Girth
+ Full measurement name
+
+
+
+
+ Upperarm Girth
+ Full measurement name
+
+
+
+
+ Wrist girth
+ Full measurement name
+
+
+
+
+ Armscye depth
+ Full measurement name
+
+
+
+
+ Shoulder and Arm length
+ Full measurement name
+
+
+
+
+ Underarm length
+ Full measurement name
+
+
+
+
+ Nape to wrist length
+ Full measurement name
+
+
+
+
+ Elbow length
+ Full measurement name
+
+
+
+
+ Arm length
+ Full measurement name
+
+
+
+
+ Hand width
+ Full measurement name
+
+
+
+
+ Hand length
+ Full measurement name
+
+
+
+
+ Hand girth
+ Full measurement name
+
+
+
+
+ Thigh girth
+ Full measurement name
+
+
+
+
+ Midthigh girth
+ Full measurement name
+
+
+
+
+ Knee girth
+ Full measurement name
+
+
+
+
+ Calf girth
+ Full measurement name
+
+
+
+
+ Ankle girth
+ Full measurement name
+
+
+
+
+ Knee height
+ Full measurement name
+
+
+
+
+ Ankle height
+ Full measurement name
+
+
+
+
+ Foot width
+ Full measurement name
+
+
+
+
+ Foot length
+ Full measurement name
+
+
+
+
+ Total Height
+ Full measurement name
+
+
+
+
+ Nape height
+ Full measurement name
+
+
+
+
+ Nape to knee height
+ Full measurement name
+
+
+
+
+ Waist height
+ Full measurement name
+
+
+
+
+ HighHip height
+ Full measurement name
+
+
+
+
+ Hip height
+ Full measurement name
+
+
+
+
+ Waist to Hip height
+ Full measurement name
+
+
+
+
+ Waist to Knee height
+ Full measurement name
+
+
+
+
+ Crotch height/Inseam
+ Full measurement name
+
+
+
+
+ Size
+ Full measurement name
+ Konfektion
+
+
+
+ Height front neck base point
+ Full measurement name
+
+
+
+
+ Height base neck side point
+ Full measurement name
+
+
+
+
+ Height shoulder point
+ Full measurement name
+
+
+
+
+ Height nipple point
+ Full measurement name
+
+
+
+
+ Height back angle axilla
+ Full measurement name
+
+
+
+
+ Height scapular point
+ Full measurement name
+
+
+
+
+ Height under buttock folds
+ Full measurement name
+
+
+
+
+ Hips excluding protruding abdomen
+ Full measurement name
+
+
+
+
+ Girth foot instep
+ Full measurement name
+
+
+
+
+ Side waist to floor
+ Full measurement name
+
+
+
+
+ Front waist to floor
+ Full measurement name
+
+
+
+
+ Arc through groin area
+ Full measurement name
+
+
+
+
+ Waist to plane seat
+ Full measurement name
+
+
+
+
+ Neck to radial point
+ Full measurement name
+
+
+
+
+ Neck to third finger
+ Full measurement name
+
+
+
+
+ Neck to first line chest circumference
+ Full measurement name
+
+
+
+
+ Front waist length
+ Full measurement name
+
+
+
+
+ Arc through shoulder joint
+ Full measurement name
+
+
+
+
+ Neck to back line chest circumference
+ Full measurement name
+
+
+
+
+ Waist to neck side
+ Full measurement name
+
+
+
+
+ Arc length upper body
+ Full measurement name
+
+
+
+
+ Chest width
+ Full measurement name
+
+
+
+
+ Anteroposterior diameter hands
+ Full measurement name
+
+
+
+
+ Height clavicular point
+ Full measurement name
+
+
+
+
+ Height armhole slash
+ Full measurement name
+
+
+
+
+ Slash shoulder height
+ Full measurement name
+
+
+
+
+ Half girth neck
+ Full measurement name
+
+
+
+
+ Half girth neck for shirts
+ Full measurement name
+
+
+
+
+ Half girth chest first
+ Full measurement name
+
+
+
+
+ Half girth chest second
+ Full measurement name
+
+
+
+
+ Half girth chest third
+ Full measurement name
+
+
+
+
+ Half girth waist
+ Full measurement name
+
+
+
+
+ Half girth hips considering protruding abdomen
+ Full measurement name
+
+
+
+
+ Half girth hips excluding protruding abdomen
+ Full measurement name
+
+
+
+
+ Girth knee flexed feet
+ Full measurement name
+
+
+
+
+ Neck transverse diameter
+ Full measurement name
+
+
+
+
+ Front slash shoulder height
+ Full measurement name
+
+
+
+
+ Neck to front waist line
+ Full measurement name
+
+
+
+
+ Hand vertical diameter
+ Full measurement name
+
+
+
+
+ Neck to knee point
+ Full measurement name
+
+
+
+
+ Waist to knee
+ Full measurement name
+
+
+
+
+ Shoulder height
+ Full measurement name
+
+
+
+
+ Head height
+ Full measurement name
+
+
+
+
+ Body position
+ Full measurement name
+
+
+
+
+ Arc behind shoulder girdle
+ Full measurement name
+
+
+
+
+ Neck to neck base
+ Full measurement name
+
+
+
+
+ Depth waist first
+ Full measurement name
+
+
+
+ Depth waist second
- Full measurement description
+ Full measurement name
@@ -6542,19 +6630,19 @@ Do you want to save your changes?
PostfixOperators
-
+ cmcentimeter
-
+ mmmillimeter
-
+ ininch
@@ -6578,18 +6666,18 @@ Do you want to save your changes?
-
+ mm
-
-
+
+ cm
-
+ inch
@@ -6845,13 +6933,13 @@ Do you want to save your changes?
-
+ Can't find objectObjekt kann nicht gefunden werden
-
+ Can't cast object
@@ -6911,12 +6999,12 @@ Do you want to save your changes?
- Validation error in line %1 column %2
+ Validation error file %3 in line %1 column %2
- Parsing error in line %1 column %2
+ Parsing error file %3 in line %1 column %2
@@ -7264,6 +7352,11 @@ Do you want to save your changes?
This id is not unique.Diese Id ist kein Unikat.
+
+
+ File error.
+
+ VSplinePath
@@ -7499,31 +7592,31 @@ Do you want to save your changes?
Variables
-
+ Line_Left symbol _ in name
-
+ AngleLine_Left symbol _ in name
-
+ Arc_Left symbol _ in name
-
+ Spl_Left symbol _ in name
-
+ SplPath
@@ -7547,12 +7640,12 @@ Do you want to save your changes?
main
-
+ Pattern making program.
-
+ Pattern file.
diff --git a/src/app/share/translations/valentina_fr_FR.ts b/src/app/share/translations/valentina_fr_FR.ts
index 6d9ba957c..1a05cf2d0 100644
--- a/src/app/share/translations/valentina_fr_FR.ts
+++ b/src/app/share/translations/valentina_fr_FR.ts
@@ -3092,151 +3092,151 @@
Functions
-
+ sinsine function
-
+ coscosine function
-
+ tantangens function
-
+ asinarcus sine function
-
+ acosarcus cosine function
-
+ atanarcus tangens function
-
+ sinhhyperbolic sine function
-
+ coshhyperbolic cosine
-
+ tanhhyperbolic tangens function
-
+ asinhhyperbolic arcus sine function
-
+ acoshhyperbolic arcus tangens function
-
+ atanhhyperbolic arcur tangens function
-
+ log2logarithm to the base 2
-
+ log10logarithm to the base 10
-
+ loglogarithm to the base 10
-
+ lnlogarithm to base e (2.71828...)
-
+ expe raised to the power of x
-
+ sqrtsquare root of a value
-
+ signsign function -1 if x<0; 1 if x>0
-
+ rintround to nearest integer
-
+ absabsolute value
-
+ minmin of all arguments
-
+ maxmax of all arguments
-
+ sumsum of all arguments
-
+ avgmean value of all arguments
@@ -3974,42 +3974,42 @@ Do you want to save your changes?
Choisir un arc
-
+ Wrong units.
-
+ Application doesn't support standard table with inches.
-
+ File error.
-
+ File loaded
-
+ The measurements file <br/><br/> <b>%1</b> <br/><br/> %3
-
+ could not be found. Do you want to update the file location
-
+ Standard measurements (*.vst)
-
+ Individual measurements (*.vit)
@@ -4063,7 +4063,7 @@ Do you want to save your changes?
-
+ Open fileOuvrir fichier
@@ -4121,77 +4121,29 @@ Do you want to save your changes?
Measurements
-
+ head_girthShort measurement name. Don't use math symbols in name!!!!
-
- Head girth
- Full measurement name
-
-
-
-
- Around fullest part of Head
- Full measurement description
-
-
-
-
+ mid_neck_girthShort measurement name. Don't use math symbols in name!!!!
-
- Mid-neck girth
- Full measurement name
-
-
-
-
- Around middle part of Neck
- Full measurement description
-
-
-
-
+ neck_base_girthShort measurement name. Don't use math symbols in name!!!!
-
- Neck Base girth
- Full measurement name
-
-
-
-
- Around Neck at base
- Full measurement description
-
-
-
-
+ head_and_neck_lengthShort measurement name. Don't use math symbols in name!!!!
-
-
- Head and Neck length
- Full measurement name
-
-
-
-
- Vertical Distance from Crown to Nape
- Full measurement description
-
- center_front_waist_length
@@ -4199,9 +4151,814 @@ Do you want to save your changes?
-
- Front Center length
+
+ center_back_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ side_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ trunk_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_chest_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ bust_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ under_bust_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ high_hip_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hip_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_front_chest_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_chest_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ across_front_shoulder_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ across_back_shoulder_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_back_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ bustpoint_to_bustpoint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ halter_bustpoint_to_bustpoint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_bustpoint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ crotch_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ rise_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_drop
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_slope_degrees
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_shoulder_slope_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_shoulder_slope_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_shoulder_to_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_shoulder_to_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_neck_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_neck_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_upper_chest_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_upper_chest_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_waist_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_upper_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_upper_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ chest_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_waist_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_neck_to_upper_chest_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_neck_to_bust_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_to_upper_chest
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_to_lower_breast
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_waist_to_upper_chest
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ strap_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ armscye_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ elbow_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_arm_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ wrist_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ scye_depth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_and_arm_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ underarm_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ cervicale_to_wrist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_to_elbow_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arm_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ thigh_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ mid_thigh_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ knee_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ calf_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ ankle_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ knee_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ ankle_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ foot_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ foot_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ cervicale_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ cervicale_to_knee_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ high_hip_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hip_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ Hip side to Floor
+ Full measurement description
+
+
+
+
+ waist_to_hip_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_knee_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ crotch_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ size
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+ SizeFull measurement name
+ Taille
+
+
+ Size
+ Full measurement description
+ Taille
+
+
+
+ height_front_neck_base_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_base_neck_side_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_shoulder_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_nipple_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_back_angle_axilla
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_scapular_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_under_buttock_folds
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hips_excluding_protruding_abdomen
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ girth_foot_instep
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ side_waist_to_floor
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_to_floor
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_through_groin_area
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_plane_seat
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_radial_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_third_finger
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_first_line_chest_circumference
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_through_shoulder_joint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_back_line_chest_circumference
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_neck_side
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_length_upper_body
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ chest_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ anteroposterior_diameter_hands
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_clavicular_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_armhole_slash
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ slash_shoulder_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_neck
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_neck_for_shirts
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_chest_first
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_chest_second
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_chest_third
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_waist
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_hips_considering_protruding_abdomen
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_hips_excluding_protruding_abdomen
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ girth_knee_flexed_feet
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_transverse_diameter
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_slash_shoulder_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_front_waist_line
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_vertical_diameter
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_knee_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_knee
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ head_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ body_position
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_behind_shoulder_girdle
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_neck_base
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ depth_waist_first
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ depth_waist_second
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ MeasurementsDescriptions
+
+
+ Around fullest part of Head
+ Full measurement description
+
+
+
+
+ Around middle part of Neck
+ Full measurement description
+
+
+
+
+ Around Neck at base
+ Full measurement description
+
+
+
+
+ Vertical Distance from Crown to Nape
+ Full measurement description
@@ -4212,2234 +4969,1565 @@ Do you want to save your changes?
- center_back_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Center length
- Full measurement name
-
-
-
- Back Neck Center to Back Waist CenterFull measurement description
-
- shoulder_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder length
- Full measurement name
-
-
-
-
+ NeckPoint to ShoulderTipFull measurement description
-
- side_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Side Waist length
- Full measurement name
-
-
-
-
+ Armpit to Waist sideFull measurement description
-
- trunk_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Trunk length
- Full measurement name
-
-
-
-
+ Around Body from middle of Shoulder length to BustPoint to Crotch up back to beginning pointFull measurement description
-
- shoulder_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder girth
- Full measurement name
-
-
-
-
+ Around Arms and Torso, at bicep level parallel to floor, with arms hanging at the sidesFull measurement description
-
- upper_chest_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Upper Chest girth
- Full measurement name
-
-
-
-
+ Around Chest at Armfold level, will be parallel to floor across back, will not be parallel to floor across front chestFull measurement description
-
- bust_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Bust girth
- Full measurement name
-
-
-
-
+ Around fullest part of Bust, parallel to floorFull measurement description
-
- under_bust_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Under Bust girth
- Full measurement name
-
-
-
-
+ Around Chest below the Bust, parallel to floorFull measurement description
-
- waist_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist girth
- Full measurement name
-
-
-
-
+ Tie a string around smallest part of waist, keep string tied while taking meaasurements. Not usually parallel to floor for front waist or back waist.Full measurement description
-
- high_hip_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- HighHip girth
- Full measurement name
-
-
-
-
+ Around HighHip, parallel to floorFull measurement description
-
- hip_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hip girth
- Full measurement name
-
-
-
-
+ Around Hip, parallel to floorFull measurement description
-
- upper_front_chest_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Upper Chest width
- Full measurement name
-
-
-
-
+ Across Front UpperChest, smallest width from armscye to armscyeFull measurement description
-
- front_chest_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Chest width
- Full measurement name
-
-
-
-
+ Across Front Chest, from armfold to armfoldFull measurement description
-
- across_front_shoulder_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Across Shoulder width
- Full measurement name
-
-
-
-
+ From ShoulderTip to ShoulderTip, across FrontFull measurement description
-
- across_back_shoulder_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Across Shoulder width
- Full measurement name
-
-
-
-
+ From ShoulderTip to ShoulderTip, across BackFull measurement description
-
- upper_back_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Upper Chest width
- Full measurement name
-
-
-
-
+ Across Back UpperChest, smallest width from armscye to armscyeFull measurement description
-
- back_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Chest width
- Full measurement name
-
-
-
-
+ Across Back Chest, from armfold to armfoldFull measurement description
-
- bustpoint_to_bustpoint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- BustPoint to BustPoint
- Full measurement name
-
-
-
-
+ Distance between BustPoints, across ChestFull measurement description
-
- halter_bustpoint_to_bustpoint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Halter Bustpoint to Bustpoint
- Full measurement name
-
-
-
-
+ Distance from Bustpoint, behind neck, down to BustpointFull measurement description
-
- neck_to_bustpoint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- NeckPoint to BustPoint
- Full measurement name
-
-
-
-
+ From NeckPoint to BustPointFull measurement description
-
- crotch_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Crotch length
- Full measurement name
-
-
-
-
+ From Front Waist Center, down to crotch, up to Back Waist CenterFull measurement description
-
- rise_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Rise height
- Full measurement name
-
-
-
-
+ Sit on hard chair, measure from side waist straight down to chair bottomFull measurement description
-
- shoulder_drop
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder Drop
- Full measurement name
-
-
-
-
+ Vertical Distance from NeckPoint level to ShoulderTip levelFull measurement description
-
- shoulder_slope_degrees
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder Slope degrees
- Full measurement name
-
-
-
-
+ Degrees of angle from NeckPoint to ShoulderTip – requires goniometerFull measurement description
-
- front_shoulder_slope_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Shoulder Balance
- Full measurement name
-
-
-
-
+ ShoulderTip to Front Waist CenterFull measurement description
-
- back_shoulder_slope_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Shoulder Balance
- Full measurement name
-
-
-
-
+ ShoulderTip to Back Waist CenterFull measurement description
-
- front_shoulder_to_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Full Length
- Full measurement name
-
-
-
-
+ NeckPoint straight down front chest to WaistlineFull measurement description
-
- back_shoulder_to_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Full Length
- Full measurement name
-
-
-
-
+ Back NeckPoint straight down back chest to WaistlineFull measurement description
-
- front_neck_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Neck arc
- Full measurement name
-
-
-
-
+ NeckPoint to NeckPoint through Front Neck CenterFull measurement description
-
- back_neck_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Neck arc
- Full measurement name
-
-
-
-
+ NeckPoint to NeckPoint across NapeFull measurement description
-
- front_upper_chest_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- front_upper-bust_arc
- Full measurement name
-
-
-
-
+ front_upper-bust_arcFull measurement description
-
- back_upper_chest_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back UpperBust arc
- Full measurement name
-
-
-
-
+ Back UpperBust side to sideFull measurement description
-
- front_waist_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Waist arc
- Full measurement name
-
-
-
-
+ Front Waist side to sideFull measurement description
-
- back_waist_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Waist arc
- Full measurement name
-
-
-
-
+ Back Waist side to sideFull measurement description
-
- front_upper_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front UpperHip arc
- Full measurement name
-
-
-
-
+ Front UpperHip side to sideFull measurement description
-
- back_upper_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back UpperHip arc
- Full measurement name
-
-
-
-
+ Back UpperHip side to sideFull measurement description
-
- front_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Hip arc
- Full measurement name
-
-
-
-
+ Front Hip side to sideFull measurement description
-
- back_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Hip arc
- Full measurement name
-
-
-
-
+ Back Hip side to sideFull measurement description
-
- chest_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Chest Balance
- Full measurement name
-
-
-
-
+ NeckPoint to Front ArmfoldPointFull measurement description
-
- back_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Balance
- Full measurement name
-
-
-
-
+ NeckPoint to Back ArmfoldPointFull measurement description
-
- front_waist_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Waist Balance
- Full measurement name
-
-
-
-
+ NeckPoint across Front Chest to Waist sideFull measurement description
-
- back_waist_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Waist Balance
- Full measurement name
-
-
-
-
+ NeckPoint across Back Chest to Waist sideFull measurement description
-
- front_neck_to_upper_chest_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front UpperChest height
- Full measurement name
-
-
-
-
+ Front Neck Center straight down to UpperChest lineFull measurement description
-
- front_neck_to_bust_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Bust height
- Full measurement name
-
-
-
-
+ Front Neck Center straight down to Bust lineFull measurement description
-
- armscye_girth
- Short measurement name. Don't use math symbols in name!!!!
+
+ Front Upper chest waist
+ Full measurement description
-
- Armscye Girth
- Full measurement name
+
+ Front waist to lower breast
+ Full measurement description
-
+
+ Back waist to upper chest
+ Full measurement description
+
+
+
+
+ Strap length
+ Full measurement description
+
+
+
+ Around ArmscyeFull measurement description
-
- elbow_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Elbow Girth
- Full measurement name
-
-
-
-
+ Around Elbow with elbow bentFull measurement description
-
- upper_arm_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Upperarm Girth
- Full measurement name
-
-
-
-
+ Around UpperArmFull measurement description
-
- wrist_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Wrist girth
- Full measurement name
-
-
-
-
+ Around WristFull measurement description
-
- scye_depth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Armscye depth
- Full measurement name
-
-
-
-
+ Nape straight down to UnderBust line (same as Back UpperBust height)Full measurement description
-
- shoulder_and_arm_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder and Arm length
- Full measurement name
-
-
-
-
+ NeckPoint to ShoulderTip to Wrist, with elbow bent and hand on hipFull measurement description
-
- underarm_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Underarm length
- Full measurement name
-
-
-
-
+ Armpit to Wrist, with arm straight and hanging at sideFull measurement description
-
- cervicale_to_wrist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Nape to wrist length
- Full measurement name
-
-
-
-
+ Nape to Wrist, with elbow bent and hand on hipFull measurement description
-
- shoulder_to_elbow_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Elbow length
- Full measurement name
-
-
-
-
+ ShoulderTip to Elbow, with elbow bent and hand on hipFull measurement description
-
- arm_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arm length
- Full measurement name
-
-
-
-
+ ShoulderTip to Wrist, with elbow bent and hand on hipFull measurement description
-
- hand_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand width
- Full measurement name
-
-
-
-
+ Hand side to sideFull measurement description
-
- hand_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand length
- Full measurement name
-
-
-
-
+ Hand Middle Finger tip to wristFull measurement description
-
- hand_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand girth
- Full measurement name
-
-
-
-
+ Around HandFull measurement description
-
- thigh_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Thigh girth
- Full measurement name
-
-
-
-
+ Around ThighFull measurement description
-
- mid_thigh_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Midthigh girth
- Full measurement name
-
-
-
-
+ Around MidThighFull measurement description
-
- knee_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Knee girth
- Full measurement name
-
-
-
-
+ Around KneeFull measurement description
-
- calf_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Calf girth
- Full measurement name
-
-
-
-
+ Around CalfFull measurement description
-
- ankle_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Ankle girth
- Full measurement name
-
-
-
-
+ Around AnkleFull measurement description
-
- knee_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Knee height
- Full measurement name
-
-
-
-
+ Knee to FloorFull measurement description
-
- ankle_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Ankle height
- Full measurement name
-
-
-
-
+ Ankle to FloorFull measurement description
-
- foot_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Foot width
- Full measurement name
-
-
-
-
+ Widest part of Foot side to sideFull measurement description
-
- foot_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Foot length
- Full measurement name
-
-
-
-
+ Tip of Longest Toe straight to back of heelFull measurement description
-
- height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Total Height
- Full measurement name
-
-
-
-
+ Top of head to floorFull measurement description
-
- cervicale_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Nape height
- Full measurement name
-
-
-
-
+ Nape to FloorFull measurement description
-
- cervicale_to_knee_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Nape to knee height
- Full measurement name
-
-
-
-
+ Nape to KneeFull measurement description
-
- waist_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist height
- Full measurement name
-
-
-
-
+ Waist side to floorFull measurement description
-
- high_hip_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- HighHip height
- Full measurement name
-
-
-
-
+ HighHip side to FloorFull measurement description
-
- hip_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hip height
- Full measurement name
-
-
-
-
- Hip side to Floor
- Full measurement description
-
-
-
-
- waist_to_hip_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to Hip height
- Full measurement name
-
-
-
-
+ Waist side to HipFull measurement description
-
- waist_to_knee_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to Knee height
- Full measurement name
-
-
-
-
+ Waist side to KneeFull measurement description
-
- crotch_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Crotch height/Inseam
- Full measurement name
-
-
-
-
+ Crotch to Floor along inside legFull measurement description
-
- size
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Size
- Full measurement name
- Taille
-
-
-
+ SizeFull measurement descriptionTaille
-
- height_front_neck_base_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height front neck base point
- Full measurement name
-
-
-
-
+ Height of the point base of the neck in frontFull measurement description
-
- height_base_neck_side_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height base neck side point
- Full measurement name
-
-
-
-
+ Height of the base of the neck side pointFull measurement description
-
- height_shoulder_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height shoulder point
- Full measurement name
-
-
-
-
+ The height of the shoulder pointFull measurement description
-
- height_nipple_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height nipple point
- Full measurement name
-
-
-
-
+ Height nipple pointFull measurement description
-
- height_back_angle_axilla
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height back angle axilla
- Full measurement name
-
-
-
-
+ Height back angle axillaFull measurement description
-
- height_scapular_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height scapular point
- Full measurement name
-
-
-
-
+ Height scapular pointFull measurement description
-
- height_under_buttock_folds
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height under buttock folds
- Full measurement name
-
-
-
-
+ Height under buttock foldsFull measurement description
-
- hips_excluding_protruding_abdomen
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hips excluding protruding abdomen
- Full measurement name
-
-
-
-
+ Hips excluding protruding abdomenFull measurement description
-
- girth_foot_instep
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Girth foot instep
- Full measurement name
-
-
-
-
+ Girth foot instepFull measurement description
-
- side_waist_to_floor
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Side waist to floor
- Full measurement name
-
-
-
-
+ The distance from the side waist to floorFull measurement description
-
- front_waist_to_floor
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front waist to floor
- Full measurement name
-
-
-
-
+ The distance from the front waist to floorFull measurement description
-
- arc_through_groin_area
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc through groin area
- Full measurement name
-
-
-
-
+ Arc through groin areaFull measurement description
-
- waist_to_plane_seat
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to plane seat
- Full measurement name
-
-
-
-
+ The distance from the waist to the plane seatFull measurement description
-
- neck_to_radial_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to radial point
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the side of the radial pointFull measurement description
-
- neck_to_third_finger
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to third finger
- Full measurement name
-
-
-
-
+ Distance from the base of the neck side point to the end of the third fingerFull measurement description
-
- neck_to_first_line_chest_circumference
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to first line chest circumference
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the side of the first line in front of chest circumferenceFull measurement description
-
- front_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front waist length
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the waist side front (waist length in the front)Full measurement description
-
- arc_through_shoulder_joint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc through shoulder joint
- Full measurement name
-
-
-
-
+ Arc through the highest point of the shoulder jointFull measurement description
-
- neck_to_back_line_chest_circumference
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to back line chest circumference
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the back line of chest circumference of the first and the second based on ledge vanesFull measurement description
-
- waist_to_neck_side
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to neck side
- Full measurement name
-
-
-
-
+ The distance from the waist to the back base of the neck side pointFull measurement description
-
- arc_length_upper_body
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc length upper body
- Full measurement name
-
-
-
-
+ Arc length of the upper body through the base of the neck side pointFull measurement description
-
- chest_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Chest width
- Full measurement name
-
-
-
-
+ Chest widthFull measurement description
-
- anteroposterior_diameter_hands
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Anteroposterior diameter hands
- Full measurement name
-
-
-
-
+ Anteroposterior diameter of the handsFull measurement description
-
- height_clavicular_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height clavicular point
- Full measurement name
-
-
-
-
+ Height clavicular pointFull measurement description
-
- height_armhole_slash
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height armhole slash
- Full measurement name
-
-
-
-
+ The distance from the point to the cervical level of the posterior angle of the front armpit (underarm height oblique)Full measurement description
-
- slash_shoulder_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Slash shoulder height
- Full measurement name
-
-
-
-
+ Slash shoulder heightFull measurement description
-
- half_girth_neck
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth neck
- Full measurement name
-
-
-
-
+ Half girth neckFull measurement description
-
- half_girth_neck_for_shirts
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth neck for shirts
- Full measurement name
-
-
-
-
+ Half girth neck for shirtsFull measurement description
-
- half_girth_chest_first
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth chest first
- Full measurement name
-
-
-
-
+ Half girth chest firstFull measurement description
-
- half_girth_chest_second
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth chest second
- Full measurement name
-
-
-
-
+ Half girth chest secondFull measurement description
-
- half_girth_chest_third
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth chest third
- Full measurement name
-
-
-
-
+ Half girth chest thirdFull measurement description
-
- half_girth_waist
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth waist
- Full measurement name
-
-
-
-
+ Half girth waistFull measurement description
-
- half_girth_hips_considering_protruding_abdomen
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth hips considering protruding abdomen
- Full measurement name
-
-
-
-
+ Half girth hips considering protruding abdomenFull measurement description
-
- half_girth_hips_excluding_protruding_abdomen
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth hips excluding protruding abdomen
- Full measurement name
-
-
-
-
+ Half girth hips excluding protruding abdomenFull measurement description
-
- girth_knee_flexed_feet
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Girth knee flexed feet
- Full measurement name
-
-
-
-
+ Girth knee flexed feetFull measurement description
-
- neck_transverse_diameter
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck transverse diameter
- Full measurement name
-
-
-
-
+ Neck transverse diameterFull measurement description
-
- front_slash_shoulder_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front slash shoulder height
- Full measurement name
-
-
-
-
+ Front slash shoulder heightFull measurement description
-
- neck_to_front_waist_line
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to front waist line
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the waist line frontFull measurement description
-
- hand_vertical_diameter
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand vertical diameter
- Full measurement name
-
-
-
-
+ Hand vertical diameterFull measurement description
-
- neck_to_knee_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to knee point
- Full measurement name
-
-
-
-
+ Distance from neck to knee pointFull measurement description
-
- waist_to_knee
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to knee
- Full measurement name
-
-
-
-
+ The distance from the waist to the kneeFull measurement description
-
- shoulder_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder height
- Full measurement name
-
-
-
-
+ Shoulder heightFull measurement description
-
- head_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Head height
- Full measurement name
-
-
-
-
+ Head heightFull measurement description
-
- body_position
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Body position
- Full measurement name
-
-
-
-
+ Body positionFull measurement description
-
- arc_behind_shoulder_girdle
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc behind shoulder girdle
- Full measurement name
-
-
-
-
+ Arc behind the shoulder girdleFull measurement description
-
- neck_to_neck_base
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to neck base
- Full measurement name
-
-
-
-
+ Distance from neck point to point on the base of the neck side neck girth measurement lineFull measurement description
-
- depth_waist_first
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Depth waist first
- Full measurement name
-
-
-
-
+ Depth waist firstFull measurement description
-
- depth_waist_second
- Short measurement name. Don't use math symbols in name!!!!
+
+ Depth waist second
+ Full measurement description
+
+
+ MeasurementsFullNames
-
- Depth waist second
+
+ Head girthFull measurement name
-
+
+ Mid-neck girth
+ Full measurement name
+
+
+
+
+ Neck Base girth
+ Full measurement name
+
+
+
+
+ Head and Neck length
+ Full measurement name
+
+
+
+
+ Front Center length
+ Full measurement name
+
+
+
+
+ Back Center length
+ Full measurement name
+
+
+
+
+ Shoulder length
+ Full measurement name
+
+
+
+
+ Side Waist length
+ Full measurement name
+
+
+
+
+ Trunk length
+ Full measurement name
+
+
+
+
+ Shoulder girth
+ Full measurement name
+
+
+
+
+ Upper Chest girth
+ Full measurement name
+
+
+
+
+ Bust girth
+ Full measurement name
+
+
+
+
+ Under Bust girth
+ Full measurement name
+
+
+
+
+ Waist girth
+ Full measurement name
+
+
+
+
+ HighHip girth
+ Full measurement name
+
+
+
+
+ Hip girth
+ Full measurement name
+
+
+
+
+ Front Upper Chest width
+ Full measurement name
+
+
+
+
+ Front Chest width
+ Full measurement name
+
+
+
+
+ Front Across Shoulder width
+ Full measurement name
+
+
+
+
+ Back Across Shoulder width
+ Full measurement name
+
+
+
+
+ Back Upper Chest width
+ Full measurement name
+
+
+
+
+ Back Chest width
+ Full measurement name
+
+
+
+
+ BustPoint to BustPoint
+ Full measurement name
+
+
+
+
+ Halter Bustpoint to Bustpoint
+ Full measurement name
+
+
+
+
+ NeckPoint to BustPoint
+ Full measurement name
+
+
+
+
+ Crotch length
+ Full measurement name
+
+
+
+
+ Rise height
+ Full measurement name
+
+
+
+
+ Shoulder Drop
+ Full measurement name
+
+
+
+
+ Shoulder Slope degrees
+ Full measurement name
+
+
+
+
+ Front Shoulder Balance
+ Full measurement name
+
+
+
+
+ Back Shoulder Balance
+ Full measurement name
+
+
+
+
+ Front Full Length
+ Full measurement name
+
+
+
+
+ Back Full Length
+ Full measurement name
+
+
+
+
+ Front Neck arc
+ Full measurement name
+
+
+
+
+ Back Neck arc
+ Full measurement name
+
+
+
+
+ front_upper-bust_arc
+ Full measurement name
+
+
+
+
+ Back UpperBust arc
+ Full measurement name
+
+
+
+
+ Front Waist arc
+ Full measurement name
+
+
+
+
+ Back Waist arc
+ Full measurement name
+
+
+
+
+ Front UpperHip arc
+ Full measurement name
+
+
+
+
+ Back UpperHip arc
+ Full measurement name
+
+
+
+
+ Front Hip arc
+ Full measurement name
+
+
+
+
+ Back Hip arc
+ Full measurement name
+
+
+
+
+ Chest Balance
+ Full measurement name
+
+
+
+
+ Back Balance
+ Full measurement name
+
+
+
+
+ Front Waist Balance
+ Full measurement name
+
+
+
+
+ Back Waist Balance
+ Full measurement name
+
+
+
+
+ Front UpperChest height
+ Full measurement name
+
+
+
+
+ Bust height
+ Full measurement name
+
+
+
+
+ Front Upper chest waist
+ Full measurement name
+
+
+
+
+ Front waist to lower breast
+ Full measurement name
+
+
+
+
+ Back waist to upper chest
+ Full measurement name
+
+
+
+
+ Strap length
+ Full measurement name
+
+
+
+
+ Armscye Girth
+ Full measurement name
+
+
+
+
+ Elbow Girth
+ Full measurement name
+
+
+
+
+ Upperarm Girth
+ Full measurement name
+
+
+
+
+ Wrist girth
+ Full measurement name
+
+
+
+
+ Armscye depth
+ Full measurement name
+
+
+
+
+ Shoulder and Arm length
+ Full measurement name
+
+
+
+
+ Underarm length
+ Full measurement name
+
+
+
+
+ Nape to wrist length
+ Full measurement name
+
+
+
+
+ Elbow length
+ Full measurement name
+
+
+
+
+ Arm length
+ Full measurement name
+
+
+
+
+ Hand width
+ Full measurement name
+
+
+
+
+ Hand length
+ Full measurement name
+
+
+
+
+ Hand girth
+ Full measurement name
+
+
+
+
+ Thigh girth
+ Full measurement name
+
+
+
+
+ Midthigh girth
+ Full measurement name
+
+
+
+
+ Knee girth
+ Full measurement name
+
+
+
+
+ Calf girth
+ Full measurement name
+
+
+
+
+ Ankle girth
+ Full measurement name
+
+
+
+
+ Knee height
+ Full measurement name
+
+
+
+
+ Ankle height
+ Full measurement name
+
+
+
+
+ Foot width
+ Full measurement name
+
+
+
+
+ Foot length
+ Full measurement name
+
+
+
+
+ Total Height
+ Full measurement name
+
+
+
+
+ Nape height
+ Full measurement name
+
+
+
+
+ Nape to knee height
+ Full measurement name
+
+
+
+
+ Waist height
+ Full measurement name
+
+
+
+
+ HighHip height
+ Full measurement name
+
+
+
+
+ Hip height
+ Full measurement name
+
+
+
+
+ Waist to Hip height
+ Full measurement name
+
+
+
+
+ Waist to Knee height
+ Full measurement name
+
+
+
+
+ Crotch height/Inseam
+ Full measurement name
+
+
+
+
+ Size
+ Full measurement name
+ Taille
+
+
+
+ Height front neck base point
+ Full measurement name
+
+
+
+
+ Height base neck side point
+ Full measurement name
+
+
+
+
+ Height shoulder point
+ Full measurement name
+
+
+
+
+ Height nipple point
+ Full measurement name
+
+
+
+
+ Height back angle axilla
+ Full measurement name
+
+
+
+
+ Height scapular point
+ Full measurement name
+
+
+
+
+ Height under buttock folds
+ Full measurement name
+
+
+
+
+ Hips excluding protruding abdomen
+ Full measurement name
+
+
+
+
+ Girth foot instep
+ Full measurement name
+
+
+
+
+ Side waist to floor
+ Full measurement name
+
+
+
+
+ Front waist to floor
+ Full measurement name
+
+
+
+
+ Arc through groin area
+ Full measurement name
+
+
+
+
+ Waist to plane seat
+ Full measurement name
+
+
+
+
+ Neck to radial point
+ Full measurement name
+
+
+
+
+ Neck to third finger
+ Full measurement name
+
+
+
+
+ Neck to first line chest circumference
+ Full measurement name
+
+
+
+
+ Front waist length
+ Full measurement name
+
+
+
+
+ Arc through shoulder joint
+ Full measurement name
+
+
+
+
+ Neck to back line chest circumference
+ Full measurement name
+
+
+
+
+ Waist to neck side
+ Full measurement name
+
+
+
+
+ Arc length upper body
+ Full measurement name
+
+
+
+
+ Chest width
+ Full measurement name
+
+
+
+
+ Anteroposterior diameter hands
+ Full measurement name
+
+
+
+
+ Height clavicular point
+ Full measurement name
+
+
+
+
+ Height armhole slash
+ Full measurement name
+
+
+
+
+ Slash shoulder height
+ Full measurement name
+
+
+
+
+ Half girth neck
+ Full measurement name
+
+
+
+
+ Half girth neck for shirts
+ Full measurement name
+
+
+
+
+ Half girth chest first
+ Full measurement name
+
+
+
+
+ Half girth chest second
+ Full measurement name
+
+
+
+
+ Half girth chest third
+ Full measurement name
+
+
+
+
+ Half girth waist
+ Full measurement name
+
+
+
+
+ Half girth hips considering protruding abdomen
+ Full measurement name
+
+
+
+
+ Half girth hips excluding protruding abdomen
+ Full measurement name
+
+
+
+
+ Girth knee flexed feet
+ Full measurement name
+
+
+
+
+ Neck transverse diameter
+ Full measurement name
+
+
+
+
+ Front slash shoulder height
+ Full measurement name
+
+
+
+
+ Neck to front waist line
+ Full measurement name
+
+
+
+
+ Hand vertical diameter
+ Full measurement name
+
+
+
+
+ Neck to knee point
+ Full measurement name
+
+
+
+
+ Waist to knee
+ Full measurement name
+
+
+
+
+ Shoulder height
+ Full measurement name
+
+
+
+
+ Head height
+ Full measurement name
+
+
+
+
+ Body position
+ Full measurement name
+
+
+
+
+ Arc behind shoulder girdle
+ Full measurement name
+
+
+
+
+ Neck to neck base
+ Full measurement name
+
+
+
+
+ Depth waist first
+ Full measurement name
+
+
+
+ Depth waist second
- Full measurement description
+ Full measurement name
@@ -6546,19 +6634,19 @@ Do you want to save your changes?
PostfixOperators
-
+ cmcentimeter
-
+ mmmillimeter
-
+ ininch
@@ -6582,18 +6670,18 @@ Do you want to save your changes?
-
+ mm
-
-
+
+ cm
-
+ inch
@@ -6849,13 +6937,13 @@ Do you want to save your changes?
-
+ Can't find objectObjet non trouvé
-
+ Can't cast object
@@ -6915,12 +7003,12 @@ Do you want to save your changes?
- Validation error in line %1 column %2
+ Validation error file %3 in line %1 column %2
- Parsing error in line %1 column %2
+ Parsing error file %3 in line %1 column %2
@@ -7172,6 +7260,11 @@ Do you want to save your changes?
This id is not unique.Cet idientifiant n'est pas unique.
+
+
+ File error.
+
+ VSplinePath
@@ -7393,31 +7486,31 @@ Do you want to save your changes?
Variables
-
+ Line_Left symbol _ in name
-
+ AngleLine_Left symbol _ in name
-
+ Arc_Left symbol _ in name
-
+ Spl_Left symbol _ in name
-
+ SplPath
@@ -7441,12 +7534,12 @@ Do you want to save your changes?
main
-
+ Pattern making program.
-
+ Pattern file.
diff --git a/src/app/share/translations/valentina_he_IL.ts b/src/app/share/translations/valentina_he_IL.ts
index 5b3665564..8ef99a706 100644
--- a/src/app/share/translations/valentina_he_IL.ts
+++ b/src/app/share/translations/valentina_he_IL.ts
@@ -2972,151 +2972,151 @@
Functions
-
+ sinsine function
-
+ coscosine function
-
+ tantangens function
-
+ asinarcus sine function
-
+ acosarcus cosine function
-
+ atanarcus tangens function
-
+ sinhhyperbolic sine function
-
+ coshhyperbolic cosine
-
+ tanhhyperbolic tangens function
-
+ asinhhyperbolic arcus sine function
-
+ acoshhyperbolic arcus tangens function
-
+ atanhhyperbolic arcur tangens function
-
+ log2logarithm to the base 2
-
+ log10logarithm to the base 10
-
+ loglogarithm to the base 10
-
+ lnlogarithm to base e (2.71828...)
-
+ expe raised to the power of x
-
+ sqrtsquare root of a value
-
+ signsign function -1 if x<0; 1 if x>0
-
+ rintround to nearest integer
-
+ absabsolute value
-
+ minmin of all arguments
-
+ maxmax of all arguments
-
+ sumsum of all arguments
-
+ avgmean value of all arguments
@@ -3766,42 +3766,42 @@ Do you want to save your changes?
-
+ Wrong units.
-
+ Application doesn't support standard table with inches.
-
+ File error.
-
+ File loaded
-
+ The measurements file <br/><br/> <b>%1</b> <br/><br/> %3
-
+ could not be found. Do you want to update the file location
-
+ Standard measurements (*.vst)
-
+ Individual measurements (*.vit)
@@ -3827,7 +3827,7 @@ Do you want to save your changes?
-
+ Open file
@@ -3857,77 +3857,29 @@ Do you want to save your changes?
Measurements
-
+ head_girthShort measurement name. Don't use math symbols in name!!!!
-
- Head girth
- Full measurement name
-
-
-
-
- Around fullest part of Head
- Full measurement description
-
-
-
-
+ mid_neck_girthShort measurement name. Don't use math symbols in name!!!!
-
- Mid-neck girth
- Full measurement name
-
-
-
-
- Around middle part of Neck
- Full measurement description
-
-
-
-
+ neck_base_girthShort measurement name. Don't use math symbols in name!!!!
-
- Neck Base girth
- Full measurement name
-
-
-
-
- Around Neck at base
- Full measurement description
-
-
-
-
+ head_and_neck_lengthShort measurement name. Don't use math symbols in name!!!!
-
-
- Head and Neck length
- Full measurement name
-
-
-
-
- Vertical Distance from Crown to Nape
- Full measurement description
-
- center_front_waist_length
@@ -3935,9 +3887,804 @@ Do you want to save your changes?
-
- Front Center length
- Full measurement name
+
+ center_back_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ side_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ trunk_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_chest_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ bust_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ under_bust_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ high_hip_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hip_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_front_chest_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_chest_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ across_front_shoulder_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ across_back_shoulder_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_back_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ bustpoint_to_bustpoint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ halter_bustpoint_to_bustpoint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_bustpoint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ crotch_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ rise_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_drop
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_slope_degrees
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_shoulder_slope_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_shoulder_slope_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_shoulder_to_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_shoulder_to_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_neck_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_neck_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_upper_chest_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_upper_chest_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_waist_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_upper_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_upper_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ chest_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_waist_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_neck_to_upper_chest_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_neck_to_bust_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_to_upper_chest
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_to_lower_breast
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_waist_to_upper_chest
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ strap_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ armscye_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ elbow_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_arm_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ wrist_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ scye_depth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_and_arm_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ underarm_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ cervicale_to_wrist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_to_elbow_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arm_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ thigh_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ mid_thigh_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ knee_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ calf_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ ankle_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ knee_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ ankle_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ foot_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ foot_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ cervicale_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ cervicale_to_knee_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ high_hip_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hip_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ Hip side to Floor
+ Full measurement description
+
+
+
+
+ waist_to_hip_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_knee_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ crotch_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ size
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_front_neck_base_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_base_neck_side_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_shoulder_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_nipple_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_back_angle_axilla
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_scapular_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_under_buttock_folds
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hips_excluding_protruding_abdomen
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ girth_foot_instep
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ side_waist_to_floor
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_to_floor
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_through_groin_area
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_plane_seat
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_radial_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_third_finger
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_first_line_chest_circumference
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_through_shoulder_joint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_back_line_chest_circumference
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_neck_side
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_length_upper_body
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ chest_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ anteroposterior_diameter_hands
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_clavicular_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_armhole_slash
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ slash_shoulder_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_neck
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_neck_for_shirts
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_chest_first
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_chest_second
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_chest_third
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_waist
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_hips_considering_protruding_abdomen
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_hips_excluding_protruding_abdomen
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ girth_knee_flexed_feet
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_transverse_diameter
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_slash_shoulder_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_front_waist_line
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_vertical_diameter
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_knee_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_knee
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ head_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ body_position
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_behind_shoulder_girdle
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_neck_base
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ depth_waist_first
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ depth_waist_second
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ MeasurementsDescriptions
+
+
+ Around fullest part of Head
+ Full measurement description
+
+
+
+
+ Around middle part of Neck
+ Full measurement description
+
+
+
+
+ Around Neck at base
+ Full measurement description
+
+
+
+
+ Vertical Distance from Crown to Nape
+ Full measurement description
@@ -3948,2234 +4695,1565 @@ Do you want to save your changes?
- center_back_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Center length
- Full measurement name
-
-
-
- Back Neck Center to Back Waist CenterFull measurement description
-
- shoulder_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder length
- Full measurement name
-
-
-
-
+ NeckPoint to ShoulderTipFull measurement description
-
- side_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Side Waist length
- Full measurement name
-
-
-
-
+ Armpit to Waist sideFull measurement description
-
- trunk_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Trunk length
- Full measurement name
-
-
-
-
+ Around Body from middle of Shoulder length to BustPoint to Crotch up back to beginning pointFull measurement description
-
- shoulder_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder girth
- Full measurement name
-
-
-
-
+ Around Arms and Torso, at bicep level parallel to floor, with arms hanging at the sidesFull measurement description
-
- upper_chest_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Upper Chest girth
- Full measurement name
-
-
-
-
+ Around Chest at Armfold level, will be parallel to floor across back, will not be parallel to floor across front chestFull measurement description
-
- bust_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Bust girth
- Full measurement name
-
-
-
-
+ Around fullest part of Bust, parallel to floorFull measurement description
-
- under_bust_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Under Bust girth
- Full measurement name
-
-
-
-
+ Around Chest below the Bust, parallel to floorFull measurement description
-
- waist_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist girth
- Full measurement name
-
-
-
-
+ Tie a string around smallest part of waist, keep string tied while taking meaasurements. Not usually parallel to floor for front waist or back waist.Full measurement description
-
- high_hip_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- HighHip girth
- Full measurement name
-
-
-
-
+ Around HighHip, parallel to floorFull measurement description
-
- hip_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hip girth
- Full measurement name
-
-
-
-
+ Around Hip, parallel to floorFull measurement description
-
- upper_front_chest_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Upper Chest width
- Full measurement name
-
-
-
-
+ Across Front UpperChest, smallest width from armscye to armscyeFull measurement description
-
- front_chest_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Chest width
- Full measurement name
-
-
-
-
+ Across Front Chest, from armfold to armfoldFull measurement description
-
- across_front_shoulder_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Across Shoulder width
- Full measurement name
-
-
-
-
+ From ShoulderTip to ShoulderTip, across FrontFull measurement description
-
- across_back_shoulder_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Across Shoulder width
- Full measurement name
-
-
-
-
+ From ShoulderTip to ShoulderTip, across BackFull measurement description
-
- upper_back_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Upper Chest width
- Full measurement name
-
-
-
-
+ Across Back UpperChest, smallest width from armscye to armscyeFull measurement description
-
- back_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Chest width
- Full measurement name
-
-
-
-
+ Across Back Chest, from armfold to armfoldFull measurement description
-
- bustpoint_to_bustpoint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- BustPoint to BustPoint
- Full measurement name
-
-
-
-
+ Distance between BustPoints, across ChestFull measurement description
-
- halter_bustpoint_to_bustpoint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Halter Bustpoint to Bustpoint
- Full measurement name
-
-
-
-
+ Distance from Bustpoint, behind neck, down to BustpointFull measurement description
-
- neck_to_bustpoint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- NeckPoint to BustPoint
- Full measurement name
-
-
-
-
+ From NeckPoint to BustPointFull measurement description
-
- crotch_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Crotch length
- Full measurement name
-
-
-
-
+ From Front Waist Center, down to crotch, up to Back Waist CenterFull measurement description
-
- rise_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Rise height
- Full measurement name
-
-
-
-
+ Sit on hard chair, measure from side waist straight down to chair bottomFull measurement description
-
- shoulder_drop
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder Drop
- Full measurement name
-
-
-
-
+ Vertical Distance from NeckPoint level to ShoulderTip levelFull measurement description
-
- shoulder_slope_degrees
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder Slope degrees
- Full measurement name
-
-
-
-
+ Degrees of angle from NeckPoint to ShoulderTip – requires goniometerFull measurement description
-
- front_shoulder_slope_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Shoulder Balance
- Full measurement name
-
-
-
-
+ ShoulderTip to Front Waist CenterFull measurement description
-
- back_shoulder_slope_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Shoulder Balance
- Full measurement name
-
-
-
-
+ ShoulderTip to Back Waist CenterFull measurement description
-
- front_shoulder_to_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Full Length
- Full measurement name
-
-
-
-
+ NeckPoint straight down front chest to WaistlineFull measurement description
-
- back_shoulder_to_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Full Length
- Full measurement name
-
-
-
-
+ Back NeckPoint straight down back chest to WaistlineFull measurement description
-
- front_neck_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Neck arc
- Full measurement name
-
-
-
-
+ NeckPoint to NeckPoint through Front Neck CenterFull measurement description
-
- back_neck_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Neck arc
- Full measurement name
-
-
-
-
+ NeckPoint to NeckPoint across NapeFull measurement description
-
- front_upper_chest_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- front_upper-bust_arc
- Full measurement name
-
-
-
-
+ front_upper-bust_arcFull measurement description
-
- back_upper_chest_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back UpperBust arc
- Full measurement name
-
-
-
-
+ Back UpperBust side to sideFull measurement description
-
- front_waist_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Waist arc
- Full measurement name
-
-
-
-
+ Front Waist side to sideFull measurement description
-
- back_waist_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Waist arc
- Full measurement name
-
-
-
-
+ Back Waist side to sideFull measurement description
-
- front_upper_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front UpperHip arc
- Full measurement name
-
-
-
-
+ Front UpperHip side to sideFull measurement description
-
- back_upper_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back UpperHip arc
- Full measurement name
-
-
-
-
+ Back UpperHip side to sideFull measurement description
-
- front_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Hip arc
- Full measurement name
-
-
-
-
+ Front Hip side to sideFull measurement description
-
- back_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Hip arc
- Full measurement name
-
-
-
-
+ Back Hip side to sideFull measurement description
-
- chest_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Chest Balance
- Full measurement name
-
-
-
-
+ NeckPoint to Front ArmfoldPointFull measurement description
-
- back_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Balance
- Full measurement name
-
-
-
-
+ NeckPoint to Back ArmfoldPointFull measurement description
-
- front_waist_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Waist Balance
- Full measurement name
-
-
-
-
+ NeckPoint across Front Chest to Waist sideFull measurement description
-
- back_waist_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Waist Balance
- Full measurement name
-
-
-
-
+ NeckPoint across Back Chest to Waist sideFull measurement description
-
- front_neck_to_upper_chest_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front UpperChest height
- Full measurement name
-
-
-
-
+ Front Neck Center straight down to UpperChest lineFull measurement description
-
- front_neck_to_bust_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Bust height
- Full measurement name
-
-
-
-
+ Front Neck Center straight down to Bust lineFull measurement description
-
- armscye_girth
- Short measurement name. Don't use math symbols in name!!!!
+
+ Front Upper chest waist
+ Full measurement description
-
- Armscye Girth
- Full measurement name
+
+ Front waist to lower breast
+ Full measurement description
-
+
+ Back waist to upper chest
+ Full measurement description
+
+
+
+
+ Strap length
+ Full measurement description
+
+
+
+ Around ArmscyeFull measurement description
-
- elbow_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Elbow Girth
- Full measurement name
-
-
-
-
+ Around Elbow with elbow bentFull measurement description
-
- upper_arm_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Upperarm Girth
- Full measurement name
-
-
-
-
+ Around UpperArmFull measurement description
-
- wrist_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Wrist girth
- Full measurement name
-
-
-
-
+ Around WristFull measurement description
-
- scye_depth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Armscye depth
- Full measurement name
-
-
-
-
+ Nape straight down to UnderBust line (same as Back UpperBust height)Full measurement description
-
- shoulder_and_arm_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder and Arm length
- Full measurement name
-
-
-
-
+ NeckPoint to ShoulderTip to Wrist, with elbow bent and hand on hipFull measurement description
-
- underarm_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Underarm length
- Full measurement name
-
-
-
-
+ Armpit to Wrist, with arm straight and hanging at sideFull measurement description
-
- cervicale_to_wrist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Nape to wrist length
- Full measurement name
-
-
-
-
+ Nape to Wrist, with elbow bent and hand on hipFull measurement description
-
- shoulder_to_elbow_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Elbow length
- Full measurement name
-
-
-
-
+ ShoulderTip to Elbow, with elbow bent and hand on hipFull measurement description
-
- arm_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arm length
- Full measurement name
-
-
-
-
+ ShoulderTip to Wrist, with elbow bent and hand on hipFull measurement description
-
- hand_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand width
- Full measurement name
-
-
-
-
+ Hand side to sideFull measurement description
-
- hand_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand length
- Full measurement name
-
-
-
-
+ Hand Middle Finger tip to wristFull measurement description
-
- hand_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand girth
- Full measurement name
-
-
-
-
+ Around HandFull measurement description
-
- thigh_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Thigh girth
- Full measurement name
-
-
-
-
+ Around ThighFull measurement description
-
- mid_thigh_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Midthigh girth
- Full measurement name
-
-
-
-
+ Around MidThighFull measurement description
-
- knee_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Knee girth
- Full measurement name
-
-
-
-
+ Around KneeFull measurement description
-
- calf_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Calf girth
- Full measurement name
-
-
-
-
+ Around CalfFull measurement description
-
- ankle_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Ankle girth
- Full measurement name
-
-
-
-
+ Around AnkleFull measurement description
-
- knee_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Knee height
- Full measurement name
-
-
-
-
+ Knee to FloorFull measurement description
-
- ankle_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Ankle height
- Full measurement name
-
-
-
-
+ Ankle to FloorFull measurement description
-
- foot_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Foot width
- Full measurement name
-
-
-
-
+ Widest part of Foot side to sideFull measurement description
-
- foot_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Foot length
- Full measurement name
-
-
-
-
+ Tip of Longest Toe straight to back of heelFull measurement description
-
- height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Total Height
- Full measurement name
-
-
-
-
+ Top of head to floorFull measurement description
-
- cervicale_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Nape height
- Full measurement name
-
-
-
-
+ Nape to FloorFull measurement description
-
- cervicale_to_knee_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Nape to knee height
- Full measurement name
-
-
-
-
+ Nape to KneeFull measurement description
-
- waist_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist height
- Full measurement name
-
-
-
-
+ Waist side to floorFull measurement description
-
- high_hip_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- HighHip height
- Full measurement name
-
-
-
-
+ HighHip side to FloorFull measurement description
-
- hip_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hip height
- Full measurement name
-
-
-
-
- Hip side to Floor
- Full measurement description
-
-
-
-
- waist_to_hip_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to Hip height
- Full measurement name
-
-
-
-
+ Waist side to HipFull measurement description
-
- waist_to_knee_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to Knee height
- Full measurement name
-
-
-
-
+ Waist side to KneeFull measurement description
-
- crotch_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Crotch height/Inseam
- Full measurement name
-
-
-
-
+ Crotch to Floor along inside legFull measurement description
-
- size
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Size
- Full measurement name
-
-
-
-
+ SizeFull measurement description
-
- height_front_neck_base_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height front neck base point
- Full measurement name
-
-
-
-
+ Height of the point base of the neck in frontFull measurement description
-
- height_base_neck_side_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height base neck side point
- Full measurement name
-
-
-
-
+ Height of the base of the neck side pointFull measurement description
-
- height_shoulder_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height shoulder point
- Full measurement name
-
-
-
-
+ The height of the shoulder pointFull measurement description
-
- height_nipple_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height nipple point
- Full measurement name
-
-
-
-
+ Height nipple pointFull measurement description
-
- height_back_angle_axilla
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height back angle axilla
- Full measurement name
-
-
-
-
+ Height back angle axillaFull measurement description
-
- height_scapular_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height scapular point
- Full measurement name
-
-
-
-
+ Height scapular pointFull measurement description
-
- height_under_buttock_folds
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height under buttock folds
- Full measurement name
-
-
-
-
+ Height under buttock foldsFull measurement description
-
- hips_excluding_protruding_abdomen
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hips excluding protruding abdomen
- Full measurement name
-
-
-
-
+ Hips excluding protruding abdomenFull measurement description
-
- girth_foot_instep
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Girth foot instep
- Full measurement name
-
-
-
-
+ Girth foot instepFull measurement description
-
- side_waist_to_floor
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Side waist to floor
- Full measurement name
-
-
-
-
+ The distance from the side waist to floorFull measurement description
-
- front_waist_to_floor
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front waist to floor
- Full measurement name
-
-
-
-
+ The distance from the front waist to floorFull measurement description
-
- arc_through_groin_area
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc through groin area
- Full measurement name
-
-
-
-
+ Arc through groin areaFull measurement description
-
- waist_to_plane_seat
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to plane seat
- Full measurement name
-
-
-
-
+ The distance from the waist to the plane seatFull measurement description
-
- neck_to_radial_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to radial point
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the side of the radial pointFull measurement description
-
- neck_to_third_finger
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to third finger
- Full measurement name
-
-
-
-
+ Distance from the base of the neck side point to the end of the third fingerFull measurement description
-
- neck_to_first_line_chest_circumference
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to first line chest circumference
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the side of the first line in front of chest circumferenceFull measurement description
-
- front_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front waist length
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the waist side front (waist length in the front)Full measurement description
-
- arc_through_shoulder_joint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc through shoulder joint
- Full measurement name
-
-
-
-
+ Arc through the highest point of the shoulder jointFull measurement description
-
- neck_to_back_line_chest_circumference
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to back line chest circumference
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the back line of chest circumference of the first and the second based on ledge vanesFull measurement description
-
- waist_to_neck_side
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to neck side
- Full measurement name
-
-
-
-
+ The distance from the waist to the back base of the neck side pointFull measurement description
-
- arc_length_upper_body
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc length upper body
- Full measurement name
-
-
-
-
+ Arc length of the upper body through the base of the neck side pointFull measurement description
-
- chest_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Chest width
- Full measurement name
-
-
-
-
+ Chest widthFull measurement description
-
- anteroposterior_diameter_hands
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Anteroposterior diameter hands
- Full measurement name
-
-
-
-
+ Anteroposterior diameter of the handsFull measurement description
-
- height_clavicular_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height clavicular point
- Full measurement name
-
-
-
-
+ Height clavicular pointFull measurement description
-
- height_armhole_slash
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height armhole slash
- Full measurement name
-
-
-
-
+ The distance from the point to the cervical level of the posterior angle of the front armpit (underarm height oblique)Full measurement description
-
- slash_shoulder_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Slash shoulder height
- Full measurement name
-
-
-
-
+ Slash shoulder heightFull measurement description
-
- half_girth_neck
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth neck
- Full measurement name
-
-
-
-
+ Half girth neckFull measurement description
-
- half_girth_neck_for_shirts
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth neck for shirts
- Full measurement name
-
-
-
-
+ Half girth neck for shirtsFull measurement description
-
- half_girth_chest_first
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth chest first
- Full measurement name
-
-
-
-
+ Half girth chest firstFull measurement description
-
- half_girth_chest_second
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth chest second
- Full measurement name
-
-
-
-
+ Half girth chest secondFull measurement description
-
- half_girth_chest_third
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth chest third
- Full measurement name
-
-
-
-
+ Half girth chest thirdFull measurement description
-
- half_girth_waist
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth waist
- Full measurement name
-
-
-
-
+ Half girth waistFull measurement description
-
- half_girth_hips_considering_protruding_abdomen
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth hips considering protruding abdomen
- Full measurement name
-
-
-
-
+ Half girth hips considering protruding abdomenFull measurement description
-
- half_girth_hips_excluding_protruding_abdomen
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth hips excluding protruding abdomen
- Full measurement name
-
-
-
-
+ Half girth hips excluding protruding abdomenFull measurement description
-
- girth_knee_flexed_feet
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Girth knee flexed feet
- Full measurement name
-
-
-
-
+ Girth knee flexed feetFull measurement description
-
- neck_transverse_diameter
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck transverse diameter
- Full measurement name
-
-
-
-
+ Neck transverse diameterFull measurement description
-
- front_slash_shoulder_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front slash shoulder height
- Full measurement name
-
-
-
-
+ Front slash shoulder heightFull measurement description
-
- neck_to_front_waist_line
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to front waist line
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the waist line frontFull measurement description
-
- hand_vertical_diameter
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand vertical diameter
- Full measurement name
-
-
-
-
+ Hand vertical diameterFull measurement description
-
- neck_to_knee_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to knee point
- Full measurement name
-
-
-
-
+ Distance from neck to knee pointFull measurement description
-
- waist_to_knee
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to knee
- Full measurement name
-
-
-
-
+ The distance from the waist to the kneeFull measurement description
-
- shoulder_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder height
- Full measurement name
-
-
-
-
+ Shoulder heightFull measurement description
-
- head_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Head height
- Full measurement name
-
-
-
-
+ Head heightFull measurement description
-
- body_position
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Body position
- Full measurement name
-
-
-
-
+ Body positionFull measurement description
-
- arc_behind_shoulder_girdle
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc behind shoulder girdle
- Full measurement name
-
-
-
-
+ Arc behind the shoulder girdleFull measurement description
-
- neck_to_neck_base
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to neck base
- Full measurement name
-
-
-
-
+ Distance from neck point to point on the base of the neck side neck girth measurement lineFull measurement description
-
- depth_waist_first
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Depth waist first
- Full measurement name
-
-
-
-
+ Depth waist firstFull measurement description
-
- depth_waist_second
- Short measurement name. Don't use math symbols in name!!!!
+
+ Depth waist second
+ Full measurement description
+
+
+ MeasurementsFullNames
-
- Depth waist second
+
+ Head girthFull measurement name
-
+
+ Mid-neck girth
+ Full measurement name
+
+
+
+
+ Neck Base girth
+ Full measurement name
+
+
+
+
+ Head and Neck length
+ Full measurement name
+
+
+
+
+ Front Center length
+ Full measurement name
+
+
+
+
+ Back Center length
+ Full measurement name
+
+
+
+
+ Shoulder length
+ Full measurement name
+
+
+
+
+ Side Waist length
+ Full measurement name
+
+
+
+
+ Trunk length
+ Full measurement name
+
+
+
+
+ Shoulder girth
+ Full measurement name
+
+
+
+
+ Upper Chest girth
+ Full measurement name
+
+
+
+
+ Bust girth
+ Full measurement name
+
+
+
+
+ Under Bust girth
+ Full measurement name
+
+
+
+
+ Waist girth
+ Full measurement name
+
+
+
+
+ HighHip girth
+ Full measurement name
+
+
+
+
+ Hip girth
+ Full measurement name
+
+
+
+
+ Front Upper Chest width
+ Full measurement name
+
+
+
+
+ Front Chest width
+ Full measurement name
+
+
+
+
+ Front Across Shoulder width
+ Full measurement name
+
+
+
+
+ Back Across Shoulder width
+ Full measurement name
+
+
+
+
+ Back Upper Chest width
+ Full measurement name
+
+
+
+
+ Back Chest width
+ Full measurement name
+
+
+
+
+ BustPoint to BustPoint
+ Full measurement name
+
+
+
+
+ Halter Bustpoint to Bustpoint
+ Full measurement name
+
+
+
+
+ NeckPoint to BustPoint
+ Full measurement name
+
+
+
+
+ Crotch length
+ Full measurement name
+
+
+
+
+ Rise height
+ Full measurement name
+
+
+
+
+ Shoulder Drop
+ Full measurement name
+
+
+
+
+ Shoulder Slope degrees
+ Full measurement name
+
+
+
+
+ Front Shoulder Balance
+ Full measurement name
+
+
+
+
+ Back Shoulder Balance
+ Full measurement name
+
+
+
+
+ Front Full Length
+ Full measurement name
+
+
+
+
+ Back Full Length
+ Full measurement name
+
+
+
+
+ Front Neck arc
+ Full measurement name
+
+
+
+
+ Back Neck arc
+ Full measurement name
+
+
+
+
+ front_upper-bust_arc
+ Full measurement name
+
+
+
+
+ Back UpperBust arc
+ Full measurement name
+
+
+
+
+ Front Waist arc
+ Full measurement name
+
+
+
+
+ Back Waist arc
+ Full measurement name
+
+
+
+
+ Front UpperHip arc
+ Full measurement name
+
+
+
+
+ Back UpperHip arc
+ Full measurement name
+
+
+
+
+ Front Hip arc
+ Full measurement name
+
+
+
+
+ Back Hip arc
+ Full measurement name
+
+
+
+
+ Chest Balance
+ Full measurement name
+
+
+
+
+ Back Balance
+ Full measurement name
+
+
+
+
+ Front Waist Balance
+ Full measurement name
+
+
+
+
+ Back Waist Balance
+ Full measurement name
+
+
+
+
+ Front UpperChest height
+ Full measurement name
+
+
+
+
+ Bust height
+ Full measurement name
+
+
+
+
+ Front Upper chest waist
+ Full measurement name
+
+
+
+
+ Front waist to lower breast
+ Full measurement name
+
+
+
+
+ Back waist to upper chest
+ Full measurement name
+
+
+
+
+ Strap length
+ Full measurement name
+
+
+
+
+ Armscye Girth
+ Full measurement name
+
+
+
+
+ Elbow Girth
+ Full measurement name
+
+
+
+
+ Upperarm Girth
+ Full measurement name
+
+
+
+
+ Wrist girth
+ Full measurement name
+
+
+
+
+ Armscye depth
+ Full measurement name
+
+
+
+
+ Shoulder and Arm length
+ Full measurement name
+
+
+
+
+ Underarm length
+ Full measurement name
+
+
+
+
+ Nape to wrist length
+ Full measurement name
+
+
+
+
+ Elbow length
+ Full measurement name
+
+
+
+
+ Arm length
+ Full measurement name
+
+
+
+
+ Hand width
+ Full measurement name
+
+
+
+
+ Hand length
+ Full measurement name
+
+
+
+
+ Hand girth
+ Full measurement name
+
+
+
+
+ Thigh girth
+ Full measurement name
+
+
+
+
+ Midthigh girth
+ Full measurement name
+
+
+
+
+ Knee girth
+ Full measurement name
+
+
+
+
+ Calf girth
+ Full measurement name
+
+
+
+
+ Ankle girth
+ Full measurement name
+
+
+
+
+ Knee height
+ Full measurement name
+
+
+
+
+ Ankle height
+ Full measurement name
+
+
+
+
+ Foot width
+ Full measurement name
+
+
+
+
+ Foot length
+ Full measurement name
+
+
+
+
+ Total Height
+ Full measurement name
+
+
+
+
+ Nape height
+ Full measurement name
+
+
+
+
+ Nape to knee height
+ Full measurement name
+
+
+
+
+ Waist height
+ Full measurement name
+
+
+
+
+ HighHip height
+ Full measurement name
+
+
+
+
+ Hip height
+ Full measurement name
+
+
+
+
+ Waist to Hip height
+ Full measurement name
+
+
+
+
+ Waist to Knee height
+ Full measurement name
+
+
+
+
+ Crotch height/Inseam
+ Full measurement name
+
+
+
+
+ Size
+ Full measurement name
+
+
+
+
+ Height front neck base point
+ Full measurement name
+
+
+
+
+ Height base neck side point
+ Full measurement name
+
+
+
+
+ Height shoulder point
+ Full measurement name
+
+
+
+
+ Height nipple point
+ Full measurement name
+
+
+
+
+ Height back angle axilla
+ Full measurement name
+
+
+
+
+ Height scapular point
+ Full measurement name
+
+
+
+
+ Height under buttock folds
+ Full measurement name
+
+
+
+
+ Hips excluding protruding abdomen
+ Full measurement name
+
+
+
+
+ Girth foot instep
+ Full measurement name
+
+
+
+
+ Side waist to floor
+ Full measurement name
+
+
+
+
+ Front waist to floor
+ Full measurement name
+
+
+
+
+ Arc through groin area
+ Full measurement name
+
+
+
+
+ Waist to plane seat
+ Full measurement name
+
+
+
+
+ Neck to radial point
+ Full measurement name
+
+
+
+
+ Neck to third finger
+ Full measurement name
+
+
+
+
+ Neck to first line chest circumference
+ Full measurement name
+
+
+
+
+ Front waist length
+ Full measurement name
+
+
+
+
+ Arc through shoulder joint
+ Full measurement name
+
+
+
+
+ Neck to back line chest circumference
+ Full measurement name
+
+
+
+
+ Waist to neck side
+ Full measurement name
+
+
+
+
+ Arc length upper body
+ Full measurement name
+
+
+
+
+ Chest width
+ Full measurement name
+
+
+
+
+ Anteroposterior diameter hands
+ Full measurement name
+
+
+
+
+ Height clavicular point
+ Full measurement name
+
+
+
+
+ Height armhole slash
+ Full measurement name
+
+
+
+
+ Slash shoulder height
+ Full measurement name
+
+
+
+
+ Half girth neck
+ Full measurement name
+
+
+
+
+ Half girth neck for shirts
+ Full measurement name
+
+
+
+
+ Half girth chest first
+ Full measurement name
+
+
+
+
+ Half girth chest second
+ Full measurement name
+
+
+
+
+ Half girth chest third
+ Full measurement name
+
+
+
+
+ Half girth waist
+ Full measurement name
+
+
+
+
+ Half girth hips considering protruding abdomen
+ Full measurement name
+
+
+
+
+ Half girth hips excluding protruding abdomen
+ Full measurement name
+
+
+
+
+ Girth knee flexed feet
+ Full measurement name
+
+
+
+
+ Neck transverse diameter
+ Full measurement name
+
+
+
+
+ Front slash shoulder height
+ Full measurement name
+
+
+
+
+ Neck to front waist line
+ Full measurement name
+
+
+
+
+ Hand vertical diameter
+ Full measurement name
+
+
+
+
+ Neck to knee point
+ Full measurement name
+
+
+
+
+ Waist to knee
+ Full measurement name
+
+
+
+
+ Shoulder height
+ Full measurement name
+
+
+
+
+ Head height
+ Full measurement name
+
+
+
+
+ Body position
+ Full measurement name
+
+
+
+
+ Arc behind shoulder girdle
+ Full measurement name
+
+
+
+
+ Neck to neck base
+ Full measurement name
+
+
+
+
+ Depth waist first
+ Full measurement name
+
+
+
+ Depth waist second
- Full measurement description
+ Full measurement name
@@ -6282,19 +6360,19 @@ Do you want to save your changes?
PostfixOperators
-
+ cmcentimeter
-
+ mmmillimeter
-
+ ininch
@@ -6318,18 +6396,18 @@ Do you want to save your changes?
-
+ mm
-
-
+
+ cm
-
+ inch
@@ -6562,13 +6640,13 @@ Do you want to save your changes?
-
+ Can't find object
-
+ Can't cast object
@@ -6616,12 +6694,12 @@ Do you want to save your changes?
- Validation error in line %1 column %2
+ Validation error file %3 in line %1 column %2
- Parsing error in line %1 column %2
+ Parsing error file %3 in line %1 column %2
@@ -6853,6 +6931,11 @@ Do you want to save your changes?
This id is not unique.
+
+
+ File error.
+
+ VSplinePath
@@ -7074,31 +7157,31 @@ Do you want to save your changes?
Variables
-
+ Line_Left symbol _ in name
-
+ AngleLine_Left symbol _ in name
-
+ Arc_Left symbol _ in name
-
+ Spl_Left symbol _ in name
-
+ SplPath
@@ -7122,12 +7205,12 @@ Do you want to save your changes?
main
-
+ Pattern making program.
-
+ Pattern file.
diff --git a/src/app/share/translations/valentina_it_IT.ts b/src/app/share/translations/valentina_it_IT.ts
index 460540862..abe86d87a 100644
--- a/src/app/share/translations/valentina_it_IT.ts
+++ b/src/app/share/translations/valentina_it_IT.ts
@@ -2968,151 +2968,151 @@
Functions
-
+ sinsine function
-
+ coscosine function
-
+ tantangens function
-
+ asinarcus sine function
-
+ acosarcus cosine function
-
+ atanarcus tangens function
-
+ sinhhyperbolic sine function
-
+ coshhyperbolic cosine
-
+ tanhhyperbolic tangens function
-
+ asinhhyperbolic arcus sine function
-
+ acoshhyperbolic arcus tangens function
-
+ atanhhyperbolic arcur tangens function
-
+ log2logarithm to the base 2
-
+ log10logarithm to the base 10
-
+ loglogarithm to the base 10
-
+ lnlogarithm to base e (2.71828...)
-
+ expe raised to the power of x
-
+ sqrtsquare root of a value
-
+ signsign function -1 if x<0; 1 if x>0
-
+ rintround to nearest integer
-
+ absabsolute value
-
+ minmin of all arguments
-
+ maxmax of all arguments
-
+ sumsum of all arguments
-
+ avgmean value of all arguments
@@ -3754,42 +3754,42 @@ Do you want to save your changes?
-
+ Wrong units.
-
+ Application doesn't support standard table with inches.
-
+ File error.
-
+ File loaded
-
+ The measurements file <br/><br/> <b>%1</b> <br/><br/> %3
-
+ could not be found. Do you want to update the file location
-
+ Standard measurements (*.vst)
-
+ Individual measurements (*.vit)
@@ -3815,7 +3815,7 @@ Do you want to save your changes?
-
+ Open file
@@ -3845,77 +3845,29 @@ Do you want to save your changes?
Measurements
-
+ head_girthShort measurement name. Don't use math symbols in name!!!!
-
- Head girth
- Full measurement name
-
-
-
-
- Around fullest part of Head
- Full measurement description
-
-
-
-
+ mid_neck_girthShort measurement name. Don't use math symbols in name!!!!
-
- Mid-neck girth
- Full measurement name
-
-
-
-
- Around middle part of Neck
- Full measurement description
-
-
-
-
+ neck_base_girthShort measurement name. Don't use math symbols in name!!!!
-
- Neck Base girth
- Full measurement name
-
-
-
-
- Around Neck at base
- Full measurement description
-
-
-
-
+ head_and_neck_lengthShort measurement name. Don't use math symbols in name!!!!
-
-
- Head and Neck length
- Full measurement name
-
-
-
-
- Vertical Distance from Crown to Nape
- Full measurement description
-
- center_front_waist_length
@@ -3923,9 +3875,804 @@ Do you want to save your changes?
-
- Front Center length
- Full measurement name
+
+ center_back_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ side_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ trunk_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_chest_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ bust_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ under_bust_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ high_hip_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hip_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_front_chest_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_chest_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ across_front_shoulder_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ across_back_shoulder_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_back_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ bustpoint_to_bustpoint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ halter_bustpoint_to_bustpoint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_bustpoint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ crotch_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ rise_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_drop
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_slope_degrees
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_shoulder_slope_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_shoulder_slope_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_shoulder_to_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_shoulder_to_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_neck_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_neck_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_upper_chest_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_upper_chest_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_waist_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_upper_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_upper_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ chest_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_waist_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_neck_to_upper_chest_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_neck_to_bust_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_to_upper_chest
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_to_lower_breast
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_waist_to_upper_chest
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ strap_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ armscye_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ elbow_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_arm_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ wrist_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ scye_depth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_and_arm_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ underarm_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ cervicale_to_wrist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_to_elbow_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arm_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ thigh_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ mid_thigh_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ knee_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ calf_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ ankle_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ knee_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ ankle_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ foot_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ foot_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ cervicale_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ cervicale_to_knee_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ high_hip_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hip_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ Hip side to Floor
+ Full measurement description
+
+
+
+
+ waist_to_hip_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_knee_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ crotch_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ size
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_front_neck_base_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_base_neck_side_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_shoulder_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_nipple_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_back_angle_axilla
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_scapular_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_under_buttock_folds
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hips_excluding_protruding_abdomen
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ girth_foot_instep
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ side_waist_to_floor
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_to_floor
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_through_groin_area
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_plane_seat
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_radial_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_third_finger
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_first_line_chest_circumference
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_through_shoulder_joint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_back_line_chest_circumference
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_neck_side
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_length_upper_body
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ chest_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ anteroposterior_diameter_hands
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_clavicular_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_armhole_slash
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ slash_shoulder_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_neck
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_neck_for_shirts
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_chest_first
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_chest_second
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_chest_third
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_waist
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_hips_considering_protruding_abdomen
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_hips_excluding_protruding_abdomen
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ girth_knee_flexed_feet
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_transverse_diameter
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_slash_shoulder_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_front_waist_line
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_vertical_diameter
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_knee_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_knee
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ head_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ body_position
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_behind_shoulder_girdle
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_neck_base
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ depth_waist_first
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ depth_waist_second
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ MeasurementsDescriptions
+
+
+ Around fullest part of Head
+ Full measurement description
+
+
+
+
+ Around middle part of Neck
+ Full measurement description
+
+
+
+
+ Around Neck at base
+ Full measurement description
+
+
+
+
+ Vertical Distance from Crown to Nape
+ Full measurement description
@@ -3936,2234 +4683,1565 @@ Do you want to save your changes?
- center_back_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Center length
- Full measurement name
-
-
-
- Back Neck Center to Back Waist CenterFull measurement description
-
- shoulder_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder length
- Full measurement name
-
-
-
-
+ NeckPoint to ShoulderTipFull measurement description
-
- side_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Side Waist length
- Full measurement name
-
-
-
-
+ Armpit to Waist sideFull measurement description
-
- trunk_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Trunk length
- Full measurement name
-
-
-
-
+ Around Body from middle of Shoulder length to BustPoint to Crotch up back to beginning pointFull measurement description
-
- shoulder_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder girth
- Full measurement name
-
-
-
-
+ Around Arms and Torso, at bicep level parallel to floor, with arms hanging at the sidesFull measurement description
-
- upper_chest_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Upper Chest girth
- Full measurement name
-
-
-
-
+ Around Chest at Armfold level, will be parallel to floor across back, will not be parallel to floor across front chestFull measurement description
-
- bust_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Bust girth
- Full measurement name
-
-
-
-
+ Around fullest part of Bust, parallel to floorFull measurement description
-
- under_bust_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Under Bust girth
- Full measurement name
-
-
-
-
+ Around Chest below the Bust, parallel to floorFull measurement description
-
- waist_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist girth
- Full measurement name
-
-
-
-
+ Tie a string around smallest part of waist, keep string tied while taking meaasurements. Not usually parallel to floor for front waist or back waist.Full measurement description
-
- high_hip_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- HighHip girth
- Full measurement name
-
-
-
-
+ Around HighHip, parallel to floorFull measurement description
-
- hip_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hip girth
- Full measurement name
-
-
-
-
+ Around Hip, parallel to floorFull measurement description
-
- upper_front_chest_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Upper Chest width
- Full measurement name
-
-
-
-
+ Across Front UpperChest, smallest width from armscye to armscyeFull measurement description
-
- front_chest_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Chest width
- Full measurement name
-
-
-
-
+ Across Front Chest, from armfold to armfoldFull measurement description
-
- across_front_shoulder_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Across Shoulder width
- Full measurement name
-
-
-
-
+ From ShoulderTip to ShoulderTip, across FrontFull measurement description
-
- across_back_shoulder_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Across Shoulder width
- Full measurement name
-
-
-
-
+ From ShoulderTip to ShoulderTip, across BackFull measurement description
-
- upper_back_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Upper Chest width
- Full measurement name
-
-
-
-
+ Across Back UpperChest, smallest width from armscye to armscyeFull measurement description
-
- back_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Chest width
- Full measurement name
-
-
-
-
+ Across Back Chest, from armfold to armfoldFull measurement description
-
- bustpoint_to_bustpoint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- BustPoint to BustPoint
- Full measurement name
-
-
-
-
+ Distance between BustPoints, across ChestFull measurement description
-
- halter_bustpoint_to_bustpoint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Halter Bustpoint to Bustpoint
- Full measurement name
-
-
-
-
+ Distance from Bustpoint, behind neck, down to BustpointFull measurement description
-
- neck_to_bustpoint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- NeckPoint to BustPoint
- Full measurement name
-
-
-
-
+ From NeckPoint to BustPointFull measurement description
-
- crotch_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Crotch length
- Full measurement name
-
-
-
-
+ From Front Waist Center, down to crotch, up to Back Waist CenterFull measurement description
-
- rise_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Rise height
- Full measurement name
-
-
-
-
+ Sit on hard chair, measure from side waist straight down to chair bottomFull measurement description
-
- shoulder_drop
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder Drop
- Full measurement name
-
-
-
-
+ Vertical Distance from NeckPoint level to ShoulderTip levelFull measurement description
-
- shoulder_slope_degrees
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder Slope degrees
- Full measurement name
-
-
-
-
+ Degrees of angle from NeckPoint to ShoulderTip – requires goniometerFull measurement description
-
- front_shoulder_slope_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Shoulder Balance
- Full measurement name
-
-
-
-
+ ShoulderTip to Front Waist CenterFull measurement description
-
- back_shoulder_slope_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Shoulder Balance
- Full measurement name
-
-
-
-
+ ShoulderTip to Back Waist CenterFull measurement description
-
- front_shoulder_to_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Full Length
- Full measurement name
-
-
-
-
+ NeckPoint straight down front chest to WaistlineFull measurement description
-
- back_shoulder_to_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Full Length
- Full measurement name
-
-
-
-
+ Back NeckPoint straight down back chest to WaistlineFull measurement description
-
- front_neck_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Neck arc
- Full measurement name
-
-
-
-
+ NeckPoint to NeckPoint through Front Neck CenterFull measurement description
-
- back_neck_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Neck arc
- Full measurement name
-
-
-
-
+ NeckPoint to NeckPoint across NapeFull measurement description
-
- front_upper_chest_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- front_upper-bust_arc
- Full measurement name
-
-
-
-
+ front_upper-bust_arcFull measurement description
-
- back_upper_chest_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back UpperBust arc
- Full measurement name
-
-
-
-
+ Back UpperBust side to sideFull measurement description
-
- front_waist_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Waist arc
- Full measurement name
-
-
-
-
+ Front Waist side to sideFull measurement description
-
- back_waist_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Waist arc
- Full measurement name
-
-
-
-
+ Back Waist side to sideFull measurement description
-
- front_upper_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front UpperHip arc
- Full measurement name
-
-
-
-
+ Front UpperHip side to sideFull measurement description
-
- back_upper_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back UpperHip arc
- Full measurement name
-
-
-
-
+ Back UpperHip side to sideFull measurement description
-
- front_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Hip arc
- Full measurement name
-
-
-
-
+ Front Hip side to sideFull measurement description
-
- back_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Hip arc
- Full measurement name
-
-
-
-
+ Back Hip side to sideFull measurement description
-
- chest_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Chest Balance
- Full measurement name
-
-
-
-
+ NeckPoint to Front ArmfoldPointFull measurement description
-
- back_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Balance
- Full measurement name
-
-
-
-
+ NeckPoint to Back ArmfoldPointFull measurement description
-
- front_waist_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Waist Balance
- Full measurement name
-
-
-
-
+ NeckPoint across Front Chest to Waist sideFull measurement description
-
- back_waist_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Waist Balance
- Full measurement name
-
-
-
-
+ NeckPoint across Back Chest to Waist sideFull measurement description
-
- front_neck_to_upper_chest_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front UpperChest height
- Full measurement name
-
-
-
-
+ Front Neck Center straight down to UpperChest lineFull measurement description
-
- front_neck_to_bust_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Bust height
- Full measurement name
-
-
-
-
+ Front Neck Center straight down to Bust lineFull measurement description
-
- armscye_girth
- Short measurement name. Don't use math symbols in name!!!!
+
+ Front Upper chest waist
+ Full measurement description
-
- Armscye Girth
- Full measurement name
+
+ Front waist to lower breast
+ Full measurement description
-
+
+ Back waist to upper chest
+ Full measurement description
+
+
+
+
+ Strap length
+ Full measurement description
+
+
+
+ Around ArmscyeFull measurement description
-
- elbow_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Elbow Girth
- Full measurement name
-
-
-
-
+ Around Elbow with elbow bentFull measurement description
-
- upper_arm_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Upperarm Girth
- Full measurement name
-
-
-
-
+ Around UpperArmFull measurement description
-
- wrist_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Wrist girth
- Full measurement name
-
-
-
-
+ Around WristFull measurement description
-
- scye_depth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Armscye depth
- Full measurement name
-
-
-
-
+ Nape straight down to UnderBust line (same as Back UpperBust height)Full measurement description
-
- shoulder_and_arm_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder and Arm length
- Full measurement name
-
-
-
-
+ NeckPoint to ShoulderTip to Wrist, with elbow bent and hand on hipFull measurement description
-
- underarm_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Underarm length
- Full measurement name
-
-
-
-
+ Armpit to Wrist, with arm straight and hanging at sideFull measurement description
-
- cervicale_to_wrist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Nape to wrist length
- Full measurement name
-
-
-
-
+ Nape to Wrist, with elbow bent and hand on hipFull measurement description
-
- shoulder_to_elbow_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Elbow length
- Full measurement name
-
-
-
-
+ ShoulderTip to Elbow, with elbow bent and hand on hipFull measurement description
-
- arm_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arm length
- Full measurement name
-
-
-
-
+ ShoulderTip to Wrist, with elbow bent and hand on hipFull measurement description
-
- hand_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand width
- Full measurement name
-
-
-
-
+ Hand side to sideFull measurement description
-
- hand_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand length
- Full measurement name
-
-
-
-
+ Hand Middle Finger tip to wristFull measurement description
-
- hand_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand girth
- Full measurement name
-
-
-
-
+ Around HandFull measurement description
-
- thigh_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Thigh girth
- Full measurement name
-
-
-
-
+ Around ThighFull measurement description
-
- mid_thigh_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Midthigh girth
- Full measurement name
-
-
-
-
+ Around MidThighFull measurement description
-
- knee_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Knee girth
- Full measurement name
-
-
-
-
+ Around KneeFull measurement description
-
- calf_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Calf girth
- Full measurement name
-
-
-
-
+ Around CalfFull measurement description
-
- ankle_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Ankle girth
- Full measurement name
-
-
-
-
+ Around AnkleFull measurement description
-
- knee_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Knee height
- Full measurement name
-
-
-
-
+ Knee to FloorFull measurement description
-
- ankle_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Ankle height
- Full measurement name
-
-
-
-
+ Ankle to FloorFull measurement description
-
- foot_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Foot width
- Full measurement name
-
-
-
-
+ Widest part of Foot side to sideFull measurement description
-
- foot_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Foot length
- Full measurement name
-
-
-
-
+ Tip of Longest Toe straight to back of heelFull measurement description
-
- height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Total Height
- Full measurement name
-
-
-
-
+ Top of head to floorFull measurement description
-
- cervicale_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Nape height
- Full measurement name
-
-
-
-
+ Nape to FloorFull measurement description
-
- cervicale_to_knee_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Nape to knee height
- Full measurement name
-
-
-
-
+ Nape to KneeFull measurement description
-
- waist_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist height
- Full measurement name
-
-
-
-
+ Waist side to floorFull measurement description
-
- high_hip_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- HighHip height
- Full measurement name
-
-
-
-
+ HighHip side to FloorFull measurement description
-
- hip_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hip height
- Full measurement name
-
-
-
-
- Hip side to Floor
- Full measurement description
-
-
-
-
- waist_to_hip_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to Hip height
- Full measurement name
-
-
-
-
+ Waist side to HipFull measurement description
-
- waist_to_knee_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to Knee height
- Full measurement name
-
-
-
-
+ Waist side to KneeFull measurement description
-
- crotch_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Crotch height/Inseam
- Full measurement name
-
-
-
-
+ Crotch to Floor along inside legFull measurement description
-
- size
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Size
- Full measurement name
-
-
-
-
+ SizeFull measurement description
-
- height_front_neck_base_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height front neck base point
- Full measurement name
-
-
-
-
+ Height of the point base of the neck in frontFull measurement description
-
- height_base_neck_side_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height base neck side point
- Full measurement name
-
-
-
-
+ Height of the base of the neck side pointFull measurement description
-
- height_shoulder_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height shoulder point
- Full measurement name
-
-
-
-
+ The height of the shoulder pointFull measurement description
-
- height_nipple_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height nipple point
- Full measurement name
-
-
-
-
+ Height nipple pointFull measurement description
-
- height_back_angle_axilla
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height back angle axilla
- Full measurement name
-
-
-
-
+ Height back angle axillaFull measurement description
-
- height_scapular_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height scapular point
- Full measurement name
-
-
-
-
+ Height scapular pointFull measurement description
-
- height_under_buttock_folds
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height under buttock folds
- Full measurement name
-
-
-
-
+ Height under buttock foldsFull measurement description
-
- hips_excluding_protruding_abdomen
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hips excluding protruding abdomen
- Full measurement name
-
-
-
-
+ Hips excluding protruding abdomenFull measurement description
-
- girth_foot_instep
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Girth foot instep
- Full measurement name
-
-
-
-
+ Girth foot instepFull measurement description
-
- side_waist_to_floor
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Side waist to floor
- Full measurement name
-
-
-
-
+ The distance from the side waist to floorFull measurement description
-
- front_waist_to_floor
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front waist to floor
- Full measurement name
-
-
-
-
+ The distance from the front waist to floorFull measurement description
-
- arc_through_groin_area
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc through groin area
- Full measurement name
-
-
-
-
+ Arc through groin areaFull measurement description
-
- waist_to_plane_seat
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to plane seat
- Full measurement name
-
-
-
-
+ The distance from the waist to the plane seatFull measurement description
-
- neck_to_radial_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to radial point
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the side of the radial pointFull measurement description
-
- neck_to_third_finger
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to third finger
- Full measurement name
-
-
-
-
+ Distance from the base of the neck side point to the end of the third fingerFull measurement description
-
- neck_to_first_line_chest_circumference
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to first line chest circumference
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the side of the first line in front of chest circumferenceFull measurement description
-
- front_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front waist length
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the waist side front (waist length in the front)Full measurement description
-
- arc_through_shoulder_joint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc through shoulder joint
- Full measurement name
-
-
-
-
+ Arc through the highest point of the shoulder jointFull measurement description
-
- neck_to_back_line_chest_circumference
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to back line chest circumference
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the back line of chest circumference of the first and the second based on ledge vanesFull measurement description
-
- waist_to_neck_side
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to neck side
- Full measurement name
-
-
-
-
+ The distance from the waist to the back base of the neck side pointFull measurement description
-
- arc_length_upper_body
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc length upper body
- Full measurement name
-
-
-
-
+ Arc length of the upper body through the base of the neck side pointFull measurement description
-
- chest_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Chest width
- Full measurement name
-
-
-
-
+ Chest widthFull measurement description
-
- anteroposterior_diameter_hands
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Anteroposterior diameter hands
- Full measurement name
-
-
-
-
+ Anteroposterior diameter of the handsFull measurement description
-
- height_clavicular_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height clavicular point
- Full measurement name
-
-
-
-
+ Height clavicular pointFull measurement description
-
- height_armhole_slash
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height armhole slash
- Full measurement name
-
-
-
-
+ The distance from the point to the cervical level of the posterior angle of the front armpit (underarm height oblique)Full measurement description
-
- slash_shoulder_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Slash shoulder height
- Full measurement name
-
-
-
-
+ Slash shoulder heightFull measurement description
-
- half_girth_neck
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth neck
- Full measurement name
-
-
-
-
+ Half girth neckFull measurement description
-
- half_girth_neck_for_shirts
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth neck for shirts
- Full measurement name
-
-
-
-
+ Half girth neck for shirtsFull measurement description
-
- half_girth_chest_first
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth chest first
- Full measurement name
-
-
-
-
+ Half girth chest firstFull measurement description
-
- half_girth_chest_second
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth chest second
- Full measurement name
-
-
-
-
+ Half girth chest secondFull measurement description
-
- half_girth_chest_third
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth chest third
- Full measurement name
-
-
-
-
+ Half girth chest thirdFull measurement description
-
- half_girth_waist
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth waist
- Full measurement name
-
-
-
-
+ Half girth waistFull measurement description
-
- half_girth_hips_considering_protruding_abdomen
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth hips considering protruding abdomen
- Full measurement name
-
-
-
-
+ Half girth hips considering protruding abdomenFull measurement description
-
- half_girth_hips_excluding_protruding_abdomen
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth hips excluding protruding abdomen
- Full measurement name
-
-
-
-
+ Half girth hips excluding protruding abdomenFull measurement description
-
- girth_knee_flexed_feet
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Girth knee flexed feet
- Full measurement name
-
-
-
-
+ Girth knee flexed feetFull measurement description
-
- neck_transverse_diameter
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck transverse diameter
- Full measurement name
-
-
-
-
+ Neck transverse diameterFull measurement description
-
- front_slash_shoulder_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front slash shoulder height
- Full measurement name
-
-
-
-
+ Front slash shoulder heightFull measurement description
-
- neck_to_front_waist_line
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to front waist line
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the waist line frontFull measurement description
-
- hand_vertical_diameter
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand vertical diameter
- Full measurement name
-
-
-
-
+ Hand vertical diameterFull measurement description
-
- neck_to_knee_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to knee point
- Full measurement name
-
-
-
-
+ Distance from neck to knee pointFull measurement description
-
- waist_to_knee
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to knee
- Full measurement name
-
-
-
-
+ The distance from the waist to the kneeFull measurement description
-
- shoulder_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder height
- Full measurement name
-
-
-
-
+ Shoulder heightFull measurement description
-
- head_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Head height
- Full measurement name
-
-
-
-
+ Head heightFull measurement description
-
- body_position
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Body position
- Full measurement name
-
-
-
-
+ Body positionFull measurement description
-
- arc_behind_shoulder_girdle
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc behind shoulder girdle
- Full measurement name
-
-
-
-
+ Arc behind the shoulder girdleFull measurement description
-
- neck_to_neck_base
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to neck base
- Full measurement name
-
-
-
-
+ Distance from neck point to point on the base of the neck side neck girth measurement lineFull measurement description
-
- depth_waist_first
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Depth waist first
- Full measurement name
-
-
-
-
+ Depth waist firstFull measurement description
-
- depth_waist_second
- Short measurement name. Don't use math symbols in name!!!!
+
+ Depth waist second
+ Full measurement description
+
+
+ MeasurementsFullNames
-
- Depth waist second
+
+ Head girthFull measurement name
-
+
+ Mid-neck girth
+ Full measurement name
+
+
+
+
+ Neck Base girth
+ Full measurement name
+
+
+
+
+ Head and Neck length
+ Full measurement name
+
+
+
+
+ Front Center length
+ Full measurement name
+
+
+
+
+ Back Center length
+ Full measurement name
+
+
+
+
+ Shoulder length
+ Full measurement name
+
+
+
+
+ Side Waist length
+ Full measurement name
+
+
+
+
+ Trunk length
+ Full measurement name
+
+
+
+
+ Shoulder girth
+ Full measurement name
+
+
+
+
+ Upper Chest girth
+ Full measurement name
+
+
+
+
+ Bust girth
+ Full measurement name
+
+
+
+
+ Under Bust girth
+ Full measurement name
+
+
+
+
+ Waist girth
+ Full measurement name
+
+
+
+
+ HighHip girth
+ Full measurement name
+
+
+
+
+ Hip girth
+ Full measurement name
+
+
+
+
+ Front Upper Chest width
+ Full measurement name
+
+
+
+
+ Front Chest width
+ Full measurement name
+
+
+
+
+ Front Across Shoulder width
+ Full measurement name
+
+
+
+
+ Back Across Shoulder width
+ Full measurement name
+
+
+
+
+ Back Upper Chest width
+ Full measurement name
+
+
+
+
+ Back Chest width
+ Full measurement name
+
+
+
+
+ BustPoint to BustPoint
+ Full measurement name
+
+
+
+
+ Halter Bustpoint to Bustpoint
+ Full measurement name
+
+
+
+
+ NeckPoint to BustPoint
+ Full measurement name
+
+
+
+
+ Crotch length
+ Full measurement name
+
+
+
+
+ Rise height
+ Full measurement name
+
+
+
+
+ Shoulder Drop
+ Full measurement name
+
+
+
+
+ Shoulder Slope degrees
+ Full measurement name
+
+
+
+
+ Front Shoulder Balance
+ Full measurement name
+
+
+
+
+ Back Shoulder Balance
+ Full measurement name
+
+
+
+
+ Front Full Length
+ Full measurement name
+
+
+
+
+ Back Full Length
+ Full measurement name
+
+
+
+
+ Front Neck arc
+ Full measurement name
+
+
+
+
+ Back Neck arc
+ Full measurement name
+
+
+
+
+ front_upper-bust_arc
+ Full measurement name
+
+
+
+
+ Back UpperBust arc
+ Full measurement name
+
+
+
+
+ Front Waist arc
+ Full measurement name
+
+
+
+
+ Back Waist arc
+ Full measurement name
+
+
+
+
+ Front UpperHip arc
+ Full measurement name
+
+
+
+
+ Back UpperHip arc
+ Full measurement name
+
+
+
+
+ Front Hip arc
+ Full measurement name
+
+
+
+
+ Back Hip arc
+ Full measurement name
+
+
+
+
+ Chest Balance
+ Full measurement name
+
+
+
+
+ Back Balance
+ Full measurement name
+
+
+
+
+ Front Waist Balance
+ Full measurement name
+
+
+
+
+ Back Waist Balance
+ Full measurement name
+
+
+
+
+ Front UpperChest height
+ Full measurement name
+
+
+
+
+ Bust height
+ Full measurement name
+
+
+
+
+ Front Upper chest waist
+ Full measurement name
+
+
+
+
+ Front waist to lower breast
+ Full measurement name
+
+
+
+
+ Back waist to upper chest
+ Full measurement name
+
+
+
+
+ Strap length
+ Full measurement name
+
+
+
+
+ Armscye Girth
+ Full measurement name
+
+
+
+
+ Elbow Girth
+ Full measurement name
+
+
+
+
+ Upperarm Girth
+ Full measurement name
+
+
+
+
+ Wrist girth
+ Full measurement name
+
+
+
+
+ Armscye depth
+ Full measurement name
+
+
+
+
+ Shoulder and Arm length
+ Full measurement name
+
+
+
+
+ Underarm length
+ Full measurement name
+
+
+
+
+ Nape to wrist length
+ Full measurement name
+
+
+
+
+ Elbow length
+ Full measurement name
+
+
+
+
+ Arm length
+ Full measurement name
+
+
+
+
+ Hand width
+ Full measurement name
+
+
+
+
+ Hand length
+ Full measurement name
+
+
+
+
+ Hand girth
+ Full measurement name
+
+
+
+
+ Thigh girth
+ Full measurement name
+
+
+
+
+ Midthigh girth
+ Full measurement name
+
+
+
+
+ Knee girth
+ Full measurement name
+
+
+
+
+ Calf girth
+ Full measurement name
+
+
+
+
+ Ankle girth
+ Full measurement name
+
+
+
+
+ Knee height
+ Full measurement name
+
+
+
+
+ Ankle height
+ Full measurement name
+
+
+
+
+ Foot width
+ Full measurement name
+
+
+
+
+ Foot length
+ Full measurement name
+
+
+
+
+ Total Height
+ Full measurement name
+
+
+
+
+ Nape height
+ Full measurement name
+
+
+
+
+ Nape to knee height
+ Full measurement name
+
+
+
+
+ Waist height
+ Full measurement name
+
+
+
+
+ HighHip height
+ Full measurement name
+
+
+
+
+ Hip height
+ Full measurement name
+
+
+
+
+ Waist to Hip height
+ Full measurement name
+
+
+
+
+ Waist to Knee height
+ Full measurement name
+
+
+
+
+ Crotch height/Inseam
+ Full measurement name
+
+
+
+
+ Size
+ Full measurement name
+
+
+
+
+ Height front neck base point
+ Full measurement name
+
+
+
+
+ Height base neck side point
+ Full measurement name
+
+
+
+
+ Height shoulder point
+ Full measurement name
+
+
+
+
+ Height nipple point
+ Full measurement name
+
+
+
+
+ Height back angle axilla
+ Full measurement name
+
+
+
+
+ Height scapular point
+ Full measurement name
+
+
+
+
+ Height under buttock folds
+ Full measurement name
+
+
+
+
+ Hips excluding protruding abdomen
+ Full measurement name
+
+
+
+
+ Girth foot instep
+ Full measurement name
+
+
+
+
+ Side waist to floor
+ Full measurement name
+
+
+
+
+ Front waist to floor
+ Full measurement name
+
+
+
+
+ Arc through groin area
+ Full measurement name
+
+
+
+
+ Waist to plane seat
+ Full measurement name
+
+
+
+
+ Neck to radial point
+ Full measurement name
+
+
+
+
+ Neck to third finger
+ Full measurement name
+
+
+
+
+ Neck to first line chest circumference
+ Full measurement name
+
+
+
+
+ Front waist length
+ Full measurement name
+
+
+
+
+ Arc through shoulder joint
+ Full measurement name
+
+
+
+
+ Neck to back line chest circumference
+ Full measurement name
+
+
+
+
+ Waist to neck side
+ Full measurement name
+
+
+
+
+ Arc length upper body
+ Full measurement name
+
+
+
+
+ Chest width
+ Full measurement name
+
+
+
+
+ Anteroposterior diameter hands
+ Full measurement name
+
+
+
+
+ Height clavicular point
+ Full measurement name
+
+
+
+
+ Height armhole slash
+ Full measurement name
+
+
+
+
+ Slash shoulder height
+ Full measurement name
+
+
+
+
+ Half girth neck
+ Full measurement name
+
+
+
+
+ Half girth neck for shirts
+ Full measurement name
+
+
+
+
+ Half girth chest first
+ Full measurement name
+
+
+
+
+ Half girth chest second
+ Full measurement name
+
+
+
+
+ Half girth chest third
+ Full measurement name
+
+
+
+
+ Half girth waist
+ Full measurement name
+
+
+
+
+ Half girth hips considering protruding abdomen
+ Full measurement name
+
+
+
+
+ Half girth hips excluding protruding abdomen
+ Full measurement name
+
+
+
+
+ Girth knee flexed feet
+ Full measurement name
+
+
+
+
+ Neck transverse diameter
+ Full measurement name
+
+
+
+
+ Front slash shoulder height
+ Full measurement name
+
+
+
+
+ Neck to front waist line
+ Full measurement name
+
+
+
+
+ Hand vertical diameter
+ Full measurement name
+
+
+
+
+ Neck to knee point
+ Full measurement name
+
+
+
+
+ Waist to knee
+ Full measurement name
+
+
+
+
+ Shoulder height
+ Full measurement name
+
+
+
+
+ Head height
+ Full measurement name
+
+
+
+
+ Body position
+ Full measurement name
+
+
+
+
+ Arc behind shoulder girdle
+ Full measurement name
+
+
+
+
+ Neck to neck base
+ Full measurement name
+
+
+
+
+ Depth waist first
+ Full measurement name
+
+
+
+ Depth waist second
- Full measurement description
+ Full measurement name
@@ -6270,19 +6348,19 @@ Do you want to save your changes?
PostfixOperators
-
+ cmcentimeter
-
+ mmmillimeter
-
+ ininch
@@ -6306,18 +6384,18 @@ Do you want to save your changes?
-
+ mm
-
-
+
+ cm
-
+ inch
@@ -6550,13 +6628,13 @@ Do you want to save your changes?
-
+ Can't find object
-
+ Can't cast object
@@ -6604,12 +6682,12 @@ Do you want to save your changes?
- Validation error in line %1 column %2
+ Validation error file %3 in line %1 column %2
- Parsing error in line %1 column %2
+ Parsing error file %3 in line %1 column %2
@@ -6841,6 +6919,11 @@ Do you want to save your changes?
This id is not unique.
+
+
+ File error.
+
+ VSplinePath
@@ -7062,31 +7145,31 @@ Do you want to save your changes?
Variables
-
+ Line_Left symbol _ in name
-
+ AngleLine_Left symbol _ in name
-
+ Arc_Left symbol _ in name
-
+ Spl_Left symbol _ in name
-
+ SplPath
@@ -7110,12 +7193,12 @@ Do you want to save your changes?
main
-
+ Pattern making program.
-
+ Pattern file.
diff --git a/src/app/share/translations/valentina_nl_NL.ts b/src/app/share/translations/valentina_nl_NL.ts
index 1e253d5e1..8652fbf68 100644
--- a/src/app/share/translations/valentina_nl_NL.ts
+++ b/src/app/share/translations/valentina_nl_NL.ts
@@ -2968,151 +2968,151 @@
Functions
-
+ sinsine function
-
+ coscosine function
-
+ tantangens function
-
+ asinarcus sine function
-
+ acosarcus cosine function
-
+ atanarcus tangens function
-
+ sinhhyperbolic sine function
-
+ coshhyperbolic cosine
-
+ tanhhyperbolic tangens function
-
+ asinhhyperbolic arcus sine function
-
+ acoshhyperbolic arcus tangens function
-
+ atanhhyperbolic arcur tangens function
-
+ log2logarithm to the base 2
-
+ log10logarithm to the base 10
-
+ loglogarithm to the base 10
-
+ lnlogarithm to base e (2.71828...)
-
+ expe raised to the power of x
-
+ sqrtsquare root of a value
-
+ signsign function -1 if x<0; 1 if x>0
-
+ rintround to nearest integer
-
+ absabsolute value
-
+ minmin of all arguments
-
+ maxmax of all arguments
-
+ sumsum of all arguments
-
+ avgmean value of all arguments
@@ -3754,42 +3754,42 @@ Do you want to save your changes?
-
+ Wrong units.
-
+ Application doesn't support standard table with inches.
-
+ File error.
-
+ File loaded
-
+ The measurements file <br/><br/> <b>%1</b> <br/><br/> %3
-
+ could not be found. Do you want to update the file location
-
+ Standard measurements (*.vst)
-
+ Individual measurements (*.vit)
@@ -3811,7 +3811,7 @@ Do you want to save your changes?
-
+ Open file
@@ -3841,77 +3841,29 @@ Do you want to save your changes?
Measurements
-
+ head_girthShort measurement name. Don't use math symbols in name!!!!
-
- Head girth
- Full measurement name
-
-
-
-
- Around fullest part of Head
- Full measurement description
-
-
-
-
+ mid_neck_girthShort measurement name. Don't use math symbols in name!!!!
-
- Mid-neck girth
- Full measurement name
-
-
-
-
- Around middle part of Neck
- Full measurement description
-
-
-
-
+ neck_base_girthShort measurement name. Don't use math symbols in name!!!!
-
- Neck Base girth
- Full measurement name
-
-
-
-
- Around Neck at base
- Full measurement description
-
-
-
-
+ head_and_neck_lengthShort measurement name. Don't use math symbols in name!!!!
-
-
- Head and Neck length
- Full measurement name
-
-
-
-
- Vertical Distance from Crown to Nape
- Full measurement description
-
- center_front_waist_length
@@ -3919,9 +3871,804 @@ Do you want to save your changes?
-
- Front Center length
- Full measurement name
+
+ center_back_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ side_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ trunk_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_chest_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ bust_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ under_bust_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ high_hip_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hip_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_front_chest_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_chest_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ across_front_shoulder_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ across_back_shoulder_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_back_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ bustpoint_to_bustpoint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ halter_bustpoint_to_bustpoint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_bustpoint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ crotch_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ rise_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_drop
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_slope_degrees
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_shoulder_slope_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_shoulder_slope_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_shoulder_to_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_shoulder_to_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_neck_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_neck_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_upper_chest_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_upper_chest_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_waist_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_upper_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_upper_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ chest_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_waist_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_neck_to_upper_chest_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_neck_to_bust_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_to_upper_chest
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_to_lower_breast
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_waist_to_upper_chest
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ strap_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ armscye_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ elbow_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_arm_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ wrist_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ scye_depth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_and_arm_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ underarm_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ cervicale_to_wrist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_to_elbow_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arm_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ thigh_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ mid_thigh_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ knee_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ calf_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ ankle_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ knee_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ ankle_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ foot_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ foot_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ cervicale_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ cervicale_to_knee_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ high_hip_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hip_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ Hip side to Floor
+ Full measurement description
+
+
+
+
+ waist_to_hip_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_knee_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ crotch_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ size
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_front_neck_base_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_base_neck_side_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_shoulder_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_nipple_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_back_angle_axilla
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_scapular_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_under_buttock_folds
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hips_excluding_protruding_abdomen
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ girth_foot_instep
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ side_waist_to_floor
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_to_floor
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_through_groin_area
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_plane_seat
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_radial_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_third_finger
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_first_line_chest_circumference
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_through_shoulder_joint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_back_line_chest_circumference
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_neck_side
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_length_upper_body
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ chest_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ anteroposterior_diameter_hands
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_clavicular_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_armhole_slash
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ slash_shoulder_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_neck
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_neck_for_shirts
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_chest_first
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_chest_second
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_chest_third
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_waist
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_hips_considering_protruding_abdomen
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_hips_excluding_protruding_abdomen
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ girth_knee_flexed_feet
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_transverse_diameter
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_slash_shoulder_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_front_waist_line
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_vertical_diameter
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_knee_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_knee
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ head_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ body_position
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_behind_shoulder_girdle
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_neck_base
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ depth_waist_first
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ depth_waist_second
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ MeasurementsDescriptions
+
+
+ Around fullest part of Head
+ Full measurement description
+
+
+
+
+ Around middle part of Neck
+ Full measurement description
+
+
+
+
+ Around Neck at base
+ Full measurement description
+
+
+
+
+ Vertical Distance from Crown to Nape
+ Full measurement description
@@ -3932,2234 +4679,1565 @@ Do you want to save your changes?
- center_back_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Center length
- Full measurement name
-
-
-
- Back Neck Center to Back Waist CenterFull measurement description
-
- shoulder_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder length
- Full measurement name
-
-
-
-
+ NeckPoint to ShoulderTipFull measurement description
-
- side_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Side Waist length
- Full measurement name
-
-
-
-
+ Armpit to Waist sideFull measurement description
-
- trunk_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Trunk length
- Full measurement name
-
-
-
-
+ Around Body from middle of Shoulder length to BustPoint to Crotch up back to beginning pointFull measurement description
-
- shoulder_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder girth
- Full measurement name
-
-
-
-
+ Around Arms and Torso, at bicep level parallel to floor, with arms hanging at the sidesFull measurement description
-
- upper_chest_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Upper Chest girth
- Full measurement name
-
-
-
-
+ Around Chest at Armfold level, will be parallel to floor across back, will not be parallel to floor across front chestFull measurement description
-
- bust_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Bust girth
- Full measurement name
-
-
-
-
+ Around fullest part of Bust, parallel to floorFull measurement description
-
- under_bust_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Under Bust girth
- Full measurement name
-
-
-
-
+ Around Chest below the Bust, parallel to floorFull measurement description
-
- waist_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist girth
- Full measurement name
-
-
-
-
+ Tie a string around smallest part of waist, keep string tied while taking meaasurements. Not usually parallel to floor for front waist or back waist.Full measurement description
-
- high_hip_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- HighHip girth
- Full measurement name
-
-
-
-
+ Around HighHip, parallel to floorFull measurement description
-
- hip_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hip girth
- Full measurement name
-
-
-
-
+ Around Hip, parallel to floorFull measurement description
-
- upper_front_chest_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Upper Chest width
- Full measurement name
-
-
-
-
+ Across Front UpperChest, smallest width from armscye to armscyeFull measurement description
-
- front_chest_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Chest width
- Full measurement name
-
-
-
-
+ Across Front Chest, from armfold to armfoldFull measurement description
-
- across_front_shoulder_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Across Shoulder width
- Full measurement name
-
-
-
-
+ From ShoulderTip to ShoulderTip, across FrontFull measurement description
-
- across_back_shoulder_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Across Shoulder width
- Full measurement name
-
-
-
-
+ From ShoulderTip to ShoulderTip, across BackFull measurement description
-
- Back Upper Chest width
- Full measurement name
-
-
-
-
+ Across Back UpperChest, smallest width from armscye to armscyeFull measurement description
-
- upper_back_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- back_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Chest width
- Full measurement name
-
-
-
-
+ Across Back Chest, from armfold to armfoldFull measurement description
-
- bustpoint_to_bustpoint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- BustPoint to BustPoint
- Full measurement name
-
-
-
-
+ Distance between BustPoints, across ChestFull measurement description
-
- halter_bustpoint_to_bustpoint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Halter Bustpoint to Bustpoint
- Full measurement name
-
-
-
-
+ Distance from Bustpoint, behind neck, down to BustpointFull measurement description
-
- neck_to_bustpoint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- NeckPoint to BustPoint
- Full measurement name
-
-
-
-
+ From NeckPoint to BustPointFull measurement description
-
- crotch_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Crotch length
- Full measurement name
-
-
-
-
+ From Front Waist Center, down to crotch, up to Back Waist CenterFull measurement description
-
- rise_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Rise height
- Full measurement name
-
-
-
-
+ Sit on hard chair, measure from side waist straight down to chair bottomFull measurement description
-
- shoulder_drop
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder Drop
- Full measurement name
-
-
-
-
+ Vertical Distance from NeckPoint level to ShoulderTip levelFull measurement description
-
- shoulder_slope_degrees
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder Slope degrees
- Full measurement name
-
-
-
-
+ Degrees of angle from NeckPoint to ShoulderTip – requires goniometerFull measurement description
-
- front_shoulder_slope_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Shoulder Balance
- Full measurement name
-
-
-
-
+ ShoulderTip to Front Waist CenterFull measurement description
-
- back_shoulder_slope_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Shoulder Balance
- Full measurement name
-
-
-
-
+ ShoulderTip to Back Waist CenterFull measurement description
-
- front_shoulder_to_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Full Length
- Full measurement name
-
-
-
-
+ NeckPoint straight down front chest to WaistlineFull measurement description
-
- back_shoulder_to_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Full Length
- Full measurement name
-
-
-
-
+ Back NeckPoint straight down back chest to WaistlineFull measurement description
-
- front_neck_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Neck arc
- Full measurement name
-
-
-
-
+ NeckPoint to NeckPoint through Front Neck CenterFull measurement description
-
- back_neck_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Neck arc
- Full measurement name
-
-
-
-
+ NeckPoint to NeckPoint across NapeFull measurement description
-
- front_upper_chest_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- front_upper-bust_arc
- Full measurement name
-
-
-
-
+ front_upper-bust_arcFull measurement description
-
- back_upper_chest_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back UpperBust arc
- Full measurement name
-
-
-
-
+ Back UpperBust side to sideFull measurement description
-
- front_waist_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Waist arc
- Full measurement name
-
-
-
-
+ Front Waist side to sideFull measurement description
-
- back_waist_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Waist arc
- Full measurement name
-
-
-
-
+ Back Waist side to sideFull measurement description
-
- front_upper_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front UpperHip arc
- Full measurement name
-
-
-
-
+ Front UpperHip side to sideFull measurement description
-
- back_upper_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back UpperHip arc
- Full measurement name
-
-
-
-
+ Back UpperHip side to sideFull measurement description
-
- front_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Hip arc
- Full measurement name
-
-
-
-
+ Front Hip side to sideFull measurement description
-
- back_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Hip arc
- Full measurement name
-
-
-
-
+ Back Hip side to sideFull measurement description
-
- chest_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Chest Balance
- Full measurement name
-
-
-
-
+ NeckPoint to Front ArmfoldPointFull measurement description
-
- back_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Balance
- Full measurement name
-
-
-
-
+ NeckPoint to Back ArmfoldPointFull measurement description
-
- front_waist_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Waist Balance
- Full measurement name
-
-
-
-
+ NeckPoint across Front Chest to Waist sideFull measurement description
-
- back_waist_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Waist Balance
- Full measurement name
-
-
-
-
+ NeckPoint across Back Chest to Waist sideFull measurement description
-
- front_neck_to_upper_chest_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front UpperChest height
- Full measurement name
-
-
-
-
+ Front Neck Center straight down to UpperChest lineFull measurement description
-
- front_neck_to_bust_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Bust height
- Full measurement name
-
-
-
-
+ Front Neck Center straight down to Bust lineFull measurement description
-
- armscye_girth
- Short measurement name. Don't use math symbols in name!!!!
+
+ Front Upper chest waist
+ Full measurement description
-
- Armscye Girth
- Full measurement name
+
+ Front waist to lower breast
+ Full measurement description
-
+
+ Back waist to upper chest
+ Full measurement description
+
+
+
+
+ Strap length
+ Full measurement description
+
+
+
+ Around ArmscyeFull measurement description
-
- elbow_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Elbow Girth
- Full measurement name
-
-
-
-
+ Around Elbow with elbow bentFull measurement description
-
- upper_arm_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Upperarm Girth
- Full measurement name
-
-
-
-
+ Around UpperArmFull measurement description
-
- wrist_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Wrist girth
- Full measurement name
-
-
-
-
+ Around WristFull measurement description
-
- scye_depth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Armscye depth
- Full measurement name
-
-
-
-
+ Nape straight down to UnderBust line (same as Back UpperBust height)Full measurement description
-
- shoulder_and_arm_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder and Arm length
- Full measurement name
-
-
-
-
+ NeckPoint to ShoulderTip to Wrist, with elbow bent and hand on hipFull measurement description
-
- underarm_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Underarm length
- Full measurement name
-
-
-
-
+ Armpit to Wrist, with arm straight and hanging at sideFull measurement description
-
- cervicale_to_wrist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Nape to wrist length
- Full measurement name
-
-
-
-
+ Nape to Wrist, with elbow bent and hand on hipFull measurement description
-
- shoulder_to_elbow_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Elbow length
- Full measurement name
-
-
-
-
+ ShoulderTip to Elbow, with elbow bent and hand on hipFull measurement description
-
- arm_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arm length
- Full measurement name
-
-
-
-
+ ShoulderTip to Wrist, with elbow bent and hand on hipFull measurement description
-
- hand_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand width
- Full measurement name
-
-
-
-
+ Hand side to sideFull measurement description
-
- hand_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand length
- Full measurement name
-
-
-
-
+ Hand Middle Finger tip to wristFull measurement description
-
- hand_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand girth
- Full measurement name
-
-
-
-
+ Around HandFull measurement description
-
- thigh_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Thigh girth
- Full measurement name
-
-
-
-
+ Around ThighFull measurement description
-
- mid_thigh_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Midthigh girth
- Full measurement name
-
-
-
-
+ Around MidThighFull measurement description
-
- knee_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Knee girth
- Full measurement name
-
-
-
-
+ Around KneeFull measurement description
-
- calf_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Calf girth
- Full measurement name
-
-
-
-
+ Around CalfFull measurement description
-
- ankle_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Ankle girth
- Full measurement name
-
-
-
-
+ Around AnkleFull measurement description
-
- knee_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Knee height
- Full measurement name
-
-
-
-
+ Knee to FloorFull measurement description
-
- ankle_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Ankle height
- Full measurement name
-
-
-
-
+ Ankle to FloorFull measurement description
-
- foot_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Foot width
- Full measurement name
-
-
-
-
+ Widest part of Foot side to sideFull measurement description
-
- foot_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Foot length
- Full measurement name
-
-
-
-
+ Tip of Longest Toe straight to back of heelFull measurement description
-
- height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Total Height
- Full measurement name
-
-
-
-
+ Top of head to floorFull measurement description
-
- cervicale_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Nape height
- Full measurement name
-
-
-
-
+ Nape to FloorFull measurement description
-
- cervicale_to_knee_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Nape to knee height
- Full measurement name
-
-
-
-
+ Nape to KneeFull measurement description
-
- waist_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist height
- Full measurement name
-
-
-
-
+ Waist side to floorFull measurement description
-
- high_hip_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- HighHip height
- Full measurement name
-
-
-
-
+ HighHip side to FloorFull measurement description
-
- hip_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hip height
- Full measurement name
-
-
-
-
- Hip side to Floor
- Full measurement description
-
-
-
-
- waist_to_hip_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to Hip height
- Full measurement name
-
-
-
-
+ Waist side to HipFull measurement description
-
- waist_to_knee_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to Knee height
- Full measurement name
-
-
-
-
+ Waist side to KneeFull measurement description
-
- crotch_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Crotch height/Inseam
- Full measurement name
-
-
-
-
+ Crotch to Floor along inside legFull measurement description
-
- size
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Size
- Full measurement name
-
-
-
-
+ SizeFull measurement description
-
- height_front_neck_base_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height front neck base point
- Full measurement name
-
-
-
-
+ Height of the point base of the neck in frontFull measurement description
-
- height_base_neck_side_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height base neck side point
- Full measurement name
-
-
-
-
+ Height of the base of the neck side pointFull measurement description
-
- height_shoulder_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height shoulder point
- Full measurement name
-
-
-
-
+ The height of the shoulder pointFull measurement description
-
- height_nipple_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height nipple point
- Full measurement name
-
-
-
-
+ Height nipple pointFull measurement description
-
- height_back_angle_axilla
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height back angle axilla
- Full measurement name
-
-
-
-
+ Height back angle axillaFull measurement description
-
- height_scapular_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height scapular point
- Full measurement name
-
-
-
-
+ Height scapular pointFull measurement description
-
- height_under_buttock_folds
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height under buttock folds
- Full measurement name
-
-
-
-
+ Height under buttock foldsFull measurement description
-
- hips_excluding_protruding_abdomen
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hips excluding protruding abdomen
- Full measurement name
-
-
-
-
+ Hips excluding protruding abdomenFull measurement description
-
- girth_foot_instep
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Girth foot instep
- Full measurement name
-
-
-
-
+ Girth foot instepFull measurement description
-
- side_waist_to_floor
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Side waist to floor
- Full measurement name
-
-
-
-
+ The distance from the side waist to floorFull measurement description
-
- front_waist_to_floor
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front waist to floor
- Full measurement name
-
-
-
-
+ The distance from the front waist to floorFull measurement description
-
- arc_through_groin_area
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc through groin area
- Full measurement name
-
-
-
-
+ Arc through groin areaFull measurement description
-
- waist_to_plane_seat
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to plane seat
- Full measurement name
-
-
-
-
+ The distance from the waist to the plane seatFull measurement description
-
- neck_to_radial_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to radial point
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the side of the radial pointFull measurement description
-
- neck_to_third_finger
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to third finger
- Full measurement name
-
-
-
-
+ Distance from the base of the neck side point to the end of the third fingerFull measurement description
-
- neck_to_first_line_chest_circumference
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to first line chest circumference
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the side of the first line in front of chest circumferenceFull measurement description
-
- front_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front waist length
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the waist side front (waist length in the front)Full measurement description
-
- arc_through_shoulder_joint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc through shoulder joint
- Full measurement name
-
-
-
-
+ Arc through the highest point of the shoulder jointFull measurement description
-
- neck_to_back_line_chest_circumference
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to back line chest circumference
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the back line of chest circumference of the first and the second based on ledge vanesFull measurement description
-
- waist_to_neck_side
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to neck side
- Full measurement name
-
-
-
-
+ The distance from the waist to the back base of the neck side pointFull measurement description
-
- arc_length_upper_body
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc length upper body
- Full measurement name
-
-
-
-
+ Arc length of the upper body through the base of the neck side pointFull measurement description
-
- chest_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Chest width
- Full measurement name
-
-
-
-
+ Chest widthFull measurement description
-
- anteroposterior_diameter_hands
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Anteroposterior diameter hands
- Full measurement name
-
-
-
-
+ Anteroposterior diameter of the handsFull measurement description
-
- height_clavicular_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height clavicular point
- Full measurement name
-
-
-
-
+ Height clavicular pointFull measurement description
-
- height_armhole_slash
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height armhole slash
- Full measurement name
-
-
-
-
+ The distance from the point to the cervical level of the posterior angle of the front armpit (underarm height oblique)Full measurement description
-
- slash_shoulder_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Slash shoulder height
- Full measurement name
-
-
-
-
+ Slash shoulder heightFull measurement description
-
- half_girth_neck
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth neck
- Full measurement name
-
-
-
-
+ Half girth neckFull measurement description
-
- half_girth_neck_for_shirts
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth neck for shirts
- Full measurement name
-
-
-
-
+ Half girth neck for shirtsFull measurement description
-
- half_girth_chest_first
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth chest first
- Full measurement name
-
-
-
-
+ Half girth chest firstFull measurement description
-
- half_girth_chest_second
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth chest second
- Full measurement name
-
-
-
-
+ Half girth chest secondFull measurement description
-
- half_girth_chest_third
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth chest third
- Full measurement name
-
-
-
-
+ Half girth chest thirdFull measurement description
-
- half_girth_waist
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth waist
- Full measurement name
-
-
-
-
+ Half girth waistFull measurement description
-
- half_girth_hips_considering_protruding_abdomen
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth hips considering protruding abdomen
- Full measurement name
-
-
-
-
+ Half girth hips considering protruding abdomenFull measurement description
-
- half_girth_hips_excluding_protruding_abdomen
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth hips excluding protruding abdomen
- Full measurement name
-
-
-
-
+ Half girth hips excluding protruding abdomenFull measurement description
-
- girth_knee_flexed_feet
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Girth knee flexed feet
- Full measurement name
-
-
-
-
+ Girth knee flexed feetFull measurement description
-
- neck_transverse_diameter
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck transverse diameter
- Full measurement name
-
-
-
-
+ Neck transverse diameterFull measurement description
-
- front_slash_shoulder_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front slash shoulder height
- Full measurement name
-
-
-
-
+ Front slash shoulder heightFull measurement description
-
- neck_to_front_waist_line
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to front waist line
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the waist line frontFull measurement description
-
- hand_vertical_diameter
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand vertical diameter
- Full measurement name
-
-
-
-
+ Hand vertical diameterFull measurement description
-
- neck_to_knee_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to knee point
- Full measurement name
-
-
-
-
+ Distance from neck to knee pointFull measurement description
-
- waist_to_knee
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to knee
- Full measurement name
-
-
-
-
+ The distance from the waist to the kneeFull measurement description
-
- shoulder_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder height
- Full measurement name
-
-
-
-
+ Shoulder heightFull measurement description
-
- head_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Head height
- Full measurement name
-
-
-
-
+ Head heightFull measurement description
-
- body_position
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Body position
- Full measurement name
-
-
-
-
+ Body positionFull measurement description
-
- arc_behind_shoulder_girdle
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc behind shoulder girdle
- Full measurement name
-
-
-
-
+ Arc behind the shoulder girdleFull measurement description
-
- neck_to_neck_base
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to neck base
- Full measurement name
-
-
-
-
+ Distance from neck point to point on the base of the neck side neck girth measurement lineFull measurement description
-
- depth_waist_first
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Depth waist first
- Full measurement name
-
-
-
-
+ Depth waist firstFull measurement description
-
- depth_waist_second
- Short measurement name. Don't use math symbols in name!!!!
+
+ Depth waist second
+ Full measurement description
+
+
+ MeasurementsFullNames
-
- Depth waist second
+
+ Head girthFull measurement name
-
+
+ Mid-neck girth
+ Full measurement name
+
+
+
+
+ Neck Base girth
+ Full measurement name
+
+
+
+
+ Head and Neck length
+ Full measurement name
+
+
+
+
+ Front Center length
+ Full measurement name
+
+
+
+
+ Back Center length
+ Full measurement name
+
+
+
+
+ Shoulder length
+ Full measurement name
+
+
+
+
+ Side Waist length
+ Full measurement name
+
+
+
+
+ Trunk length
+ Full measurement name
+
+
+
+
+ Shoulder girth
+ Full measurement name
+
+
+
+
+ Upper Chest girth
+ Full measurement name
+
+
+
+
+ Bust girth
+ Full measurement name
+
+
+
+
+ Under Bust girth
+ Full measurement name
+
+
+
+
+ Waist girth
+ Full measurement name
+
+
+
+
+ HighHip girth
+ Full measurement name
+
+
+
+
+ Hip girth
+ Full measurement name
+
+
+
+
+ Front Upper Chest width
+ Full measurement name
+
+
+
+
+ Front Chest width
+ Full measurement name
+
+
+
+
+ Front Across Shoulder width
+ Full measurement name
+
+
+
+
+ Back Across Shoulder width
+ Full measurement name
+
+
+
+
+ Back Upper Chest width
+ Full measurement name
+
+
+
+
+ Back Chest width
+ Full measurement name
+
+
+
+
+ BustPoint to BustPoint
+ Full measurement name
+
+
+
+
+ Halter Bustpoint to Bustpoint
+ Full measurement name
+
+
+
+
+ NeckPoint to BustPoint
+ Full measurement name
+
+
+
+
+ Crotch length
+ Full measurement name
+
+
+
+
+ Rise height
+ Full measurement name
+
+
+
+
+ Shoulder Drop
+ Full measurement name
+
+
+
+
+ Shoulder Slope degrees
+ Full measurement name
+
+
+
+
+ Front Shoulder Balance
+ Full measurement name
+
+
+
+
+ Back Shoulder Balance
+ Full measurement name
+
+
+
+
+ Front Full Length
+ Full measurement name
+
+
+
+
+ Back Full Length
+ Full measurement name
+
+
+
+
+ Front Neck arc
+ Full measurement name
+
+
+
+
+ Back Neck arc
+ Full measurement name
+
+
+
+
+ front_upper-bust_arc
+ Full measurement name
+
+
+
+
+ Back UpperBust arc
+ Full measurement name
+
+
+
+
+ Front Waist arc
+ Full measurement name
+
+
+
+
+ Back Waist arc
+ Full measurement name
+
+
+
+
+ Front UpperHip arc
+ Full measurement name
+
+
+
+
+ Back UpperHip arc
+ Full measurement name
+
+
+
+
+ Front Hip arc
+ Full measurement name
+
+
+
+
+ Back Hip arc
+ Full measurement name
+
+
+
+
+ Chest Balance
+ Full measurement name
+
+
+
+
+ Back Balance
+ Full measurement name
+
+
+
+
+ Front Waist Balance
+ Full measurement name
+
+
+
+
+ Back Waist Balance
+ Full measurement name
+
+
+
+
+ Front UpperChest height
+ Full measurement name
+
+
+
+
+ Bust height
+ Full measurement name
+
+
+
+
+ Front Upper chest waist
+ Full measurement name
+
+
+
+
+ Front waist to lower breast
+ Full measurement name
+
+
+
+
+ Back waist to upper chest
+ Full measurement name
+
+
+
+
+ Strap length
+ Full measurement name
+
+
+
+
+ Armscye Girth
+ Full measurement name
+
+
+
+
+ Elbow Girth
+ Full measurement name
+
+
+
+
+ Upperarm Girth
+ Full measurement name
+
+
+
+
+ Wrist girth
+ Full measurement name
+
+
+
+
+ Armscye depth
+ Full measurement name
+
+
+
+
+ Shoulder and Arm length
+ Full measurement name
+
+
+
+
+ Underarm length
+ Full measurement name
+
+
+
+
+ Nape to wrist length
+ Full measurement name
+
+
+
+
+ Elbow length
+ Full measurement name
+
+
+
+
+ Arm length
+ Full measurement name
+
+
+
+
+ Hand width
+ Full measurement name
+
+
+
+
+ Hand length
+ Full measurement name
+
+
+
+
+ Hand girth
+ Full measurement name
+
+
+
+
+ Thigh girth
+ Full measurement name
+
+
+
+
+ Midthigh girth
+ Full measurement name
+
+
+
+
+ Knee girth
+ Full measurement name
+
+
+
+
+ Calf girth
+ Full measurement name
+
+
+
+
+ Ankle girth
+ Full measurement name
+
+
+
+
+ Knee height
+ Full measurement name
+
+
+
+
+ Ankle height
+ Full measurement name
+
+
+
+
+ Foot width
+ Full measurement name
+
+
+
+
+ Foot length
+ Full measurement name
+
+
+
+
+ Total Height
+ Full measurement name
+
+
+
+
+ Nape height
+ Full measurement name
+
+
+
+
+ Nape to knee height
+ Full measurement name
+
+
+
+
+ Waist height
+ Full measurement name
+
+
+
+
+ HighHip height
+ Full measurement name
+
+
+
+
+ Hip height
+ Full measurement name
+
+
+
+
+ Waist to Hip height
+ Full measurement name
+
+
+
+
+ Waist to Knee height
+ Full measurement name
+
+
+
+
+ Crotch height/Inseam
+ Full measurement name
+
+
+
+
+ Size
+ Full measurement name
+
+
+
+
+ Height front neck base point
+ Full measurement name
+
+
+
+
+ Height base neck side point
+ Full measurement name
+
+
+
+
+ Height shoulder point
+ Full measurement name
+
+
+
+
+ Height nipple point
+ Full measurement name
+
+
+
+
+ Height back angle axilla
+ Full measurement name
+
+
+
+
+ Height scapular point
+ Full measurement name
+
+
+
+
+ Height under buttock folds
+ Full measurement name
+
+
+
+
+ Hips excluding protruding abdomen
+ Full measurement name
+
+
+
+
+ Girth foot instep
+ Full measurement name
+
+
+
+
+ Side waist to floor
+ Full measurement name
+
+
+
+
+ Front waist to floor
+ Full measurement name
+
+
+
+
+ Arc through groin area
+ Full measurement name
+
+
+
+
+ Waist to plane seat
+ Full measurement name
+
+
+
+
+ Neck to radial point
+ Full measurement name
+
+
+
+
+ Neck to third finger
+ Full measurement name
+
+
+
+
+ Neck to first line chest circumference
+ Full measurement name
+
+
+
+
+ Front waist length
+ Full measurement name
+
+
+
+
+ Arc through shoulder joint
+ Full measurement name
+
+
+
+
+ Neck to back line chest circumference
+ Full measurement name
+
+
+
+
+ Waist to neck side
+ Full measurement name
+
+
+
+
+ Arc length upper body
+ Full measurement name
+
+
+
+
+ Chest width
+ Full measurement name
+
+
+
+
+ Anteroposterior diameter hands
+ Full measurement name
+
+
+
+
+ Height clavicular point
+ Full measurement name
+
+
+
+
+ Height armhole slash
+ Full measurement name
+
+
+
+
+ Slash shoulder height
+ Full measurement name
+
+
+
+
+ Half girth neck
+ Full measurement name
+
+
+
+
+ Half girth neck for shirts
+ Full measurement name
+
+
+
+
+ Half girth chest first
+ Full measurement name
+
+
+
+
+ Half girth chest second
+ Full measurement name
+
+
+
+
+ Half girth chest third
+ Full measurement name
+
+
+
+
+ Half girth waist
+ Full measurement name
+
+
+
+
+ Half girth hips considering protruding abdomen
+ Full measurement name
+
+
+
+
+ Half girth hips excluding protruding abdomen
+ Full measurement name
+
+
+
+
+ Girth knee flexed feet
+ Full measurement name
+
+
+
+
+ Neck transverse diameter
+ Full measurement name
+
+
+
+
+ Front slash shoulder height
+ Full measurement name
+
+
+
+
+ Neck to front waist line
+ Full measurement name
+
+
+
+
+ Hand vertical diameter
+ Full measurement name
+
+
+
+
+ Neck to knee point
+ Full measurement name
+
+
+
+
+ Waist to knee
+ Full measurement name
+
+
+
+
+ Shoulder height
+ Full measurement name
+
+
+
+
+ Head height
+ Full measurement name
+
+
+
+
+ Body position
+ Full measurement name
+
+
+
+
+ Arc behind shoulder girdle
+ Full measurement name
+
+
+
+
+ Neck to neck base
+ Full measurement name
+
+
+
+
+ Depth waist first
+ Full measurement name
+
+
+
+ Depth waist second
- Full measurement description
+ Full measurement name
@@ -6266,19 +6344,19 @@ Do you want to save your changes?
PostfixOperators
-
+ cmcentimeter
-
+ mmmillimeter
-
+ ininch
@@ -6302,18 +6380,18 @@ Do you want to save your changes?
-
+ mm
-
-
+
+ cm
-
+ inch
@@ -6546,13 +6624,13 @@ Do you want to save your changes?
-
+ Can't find object
-
+ Can't cast object
@@ -6600,12 +6678,12 @@ Do you want to save your changes?
- Validation error in line %1 column %2
+ Validation error file %3 in line %1 column %2
- Parsing error in line %1 column %2
+ Parsing error file %3 in line %1 column %2
@@ -6837,6 +6915,11 @@ Do you want to save your changes?
This id is not unique.
+
+
+ File error.
+
+ VSplinePath
@@ -7058,31 +7141,31 @@ Do you want to save your changes?
Variables
-
+ Line_Left symbol _ in name
-
+ AngleLine_Left symbol _ in name
-
+ Arc_Left symbol _ in name
-
+ Spl_Left symbol _ in name
-
+ SplPath
@@ -7106,12 +7189,12 @@ Do you want to save your changes?
main
-
+ Pattern making program.
-
+ Pattern file.
diff --git a/src/app/share/translations/valentina_ru_RU.ts b/src/app/share/translations/valentina_ru_RU.ts
index 50345aaa9..73526cb75 100644
--- a/src/app/share/translations/valentina_ru_RU.ts
+++ b/src/app/share/translations/valentina_ru_RU.ts
@@ -3208,151 +3208,151 @@
Functions
-
+ sinsine functionsin
-
+ coscosine functioncos
-
+ tantangens functiontan
-
+ asinarcus sine functionasin
-
+ acosarcus cosine functionacos
-
+ atanarcus tangens functionatan
-
+ sinhhyperbolic sine functionsinh
-
+ coshhyperbolic cosinecosh
-
+ tanhhyperbolic tangens functiontanh
-
+ asinhhyperbolic arcus sine functionasibh
-
+ acoshhyperbolic arcus tangens functionacosh
-
+ atanhhyperbolic arcur tangens functionatanh
-
+ log2logarithm to the base 2log2
-
+ log10logarithm to the base 10log10
-
+ loglogarithm to the base 10log
-
+ lnlogarithm to base e (2.71828...)ln
-
+ expe raised to the power of xexp
-
+ sqrtsquare root of a valuesqrt
-
+ signsign function -1 if x<0; 1 if x>0sign
-
+ rintround to nearest integerrint
-
+ absabsolute valueabs
-
+ minmin of all argumentsmin
-
+ maxmax of all argumentsmax
-
+ sumsum of all argumentssum
-
+ avgmean value of all argumentsavg
@@ -4057,37 +4057,37 @@
Мерки используют другие единицы измерения нежели лекало. Ето леколо требует мерки в %1
-
+ Wrong units.Неправильные единицы измерения.
-
+ Application doesn't support standard table with inches.
-
+ File error.Ошибка файла.
-
+ The measurements file <br/><br/> <b>%1</b> <br/><br/> %3Файл мерок <br/><br/> <b>%1</b> <br/><br/> %3
-
+ could not be found. Do you want to update the file locationне может быть найден. Вы хотите обновить путь к файлу
-
+ Standard measurements (*.vst)Стандартные мерки (*.vst)
-
+ Individual measurements (*.vit)Индивидуальные мерки (*.vit)
@@ -4121,7 +4121,7 @@ Do you want to save your changes?
Не могу прочитать файл %1:\n%2.
-
+ File loadedФайл загружен
@@ -4167,7 +4167,7 @@ Do you want to save your changes?
-
+ Open fileОткрыть файл
@@ -4304,75 +4304,47 @@ Do you want to save your changes?
Measurements
-
+ head_girthShort measurement name. Don't use math symbols in name!!!!Огол
- Head girthFull measurement name
- Обхват головы
+ Обхват головы
- Around fullest part of HeadFull measurement description
- Обхват головы
+ Обхват головы
-
+ mid_neck_girthShort measurement name. Don't use math symbols in name!!!!
-
- Mid-neck girth
- Full measurement name
-
-
-
-
- Around middle part of Neck
- Full measurement description
-
-
-
-
+ neck_base_girthShort measurement name. Don't use math symbols in name!!!!Ош
- Neck Base girthFull measurement name
- Обхват шеи
+ Обхват шеи
- Around Neck at baseFull measurement description
- Обхват шеи
-
-
-
- head_and_neck_length
- Short measurement name. Don't use math symbols in name!!!!
-
+ Обхват шеи
- Head and Neck length
- Full measurement name
-
-
-
-
- Vertical Distance from Crown to Nape
- Full measurement description
+ head_and_neck_length
+ Short measurement name. Don't use math symbols in name!!!!
@@ -4382,9 +4354,1594 @@ Do you want to save your changes?
-
- Front Center length
+
+ center_back_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+ Дтс
+
+
+ Back Center lengthFull measurement name
+ Длина спины до талии с учетом выступа лопаток
+
+
+ Back Neck Center to Back Waist Center
+ Full measurement description
+ Длина спины до талии с учетом выступа лопаток
+
+
+
+ shoulder_length
+ Short measurement name. Don't use math symbols in name!!!!
+ Шп
+
+
+ Shoulder length
+ Full measurement name
+ Длина плечевого ската
+
+
+ NeckPoint to ShoulderTip
+ Full measurement description
+ Длина плечевого ската
+
+
+
+ side_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+ Дб
+
+
+ Side Waist length
+ Full measurement name
+ Длина боковой части
+
+
+ Armpit to Waist side
+ Full measurement description
+ Длина боковой части
+
+
+
+ trunk_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_chest_girth
+ Short measurement name. Don't use math symbols in name!!!!
+ ОгI
+
+
+ Upper Chest girth
+ Full measurement name
+ Обхват груди первый
+
+
+ Around Chest at Armfold level, will be parallel to floor across back, will not be parallel to floor across front chest
+ Full measurement description
+ Обхват груди первый
+
+
+
+ bust_girth
+ Short measurement name. Don't use math symbols in name!!!!
+ ОгII
+
+
+ Bust girth
+ Full measurement name
+ Обхват груди второй
+
+
+ Around fullest part of Bust, parallel to floor
+ Full measurement description
+ Обхват груди второй
+
+
+
+ under_bust_girth
+ Short measurement name. Don't use math symbols in name!!!!
+ ОгIII
+
+
+ Under Bust girth
+ Full measurement name
+ Обхват груди третий
+
+
+ Around Chest below the Bust, parallel to floor
+ Full measurement description
+ Обхват груди третий
+
+
+
+ waist_girth
+ Short measurement name. Don't use math symbols in name!!!!
+ От
+
+
+ Waist girth
+ Full measurement name
+ Обхват талии
+
+
+ Tie a string around smallest part of waist, keep string tied while taking meaasurements. Not usually parallel to floor for front waist or back waist.
+ Full measurement description
+ Обхват талии.
+
+
+
+ high_hip_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hip_girth
+ Short measurement name. Don't use math symbols in name!!!!
+ Об
+
+
+ Hip girth
+ Full measurement name
+ Обхват бедер с учетом выступания живота
+
+
+ Around Hip, parallel to floor
+ Full measurement description
+ Обхват бедер с учетом выступания живота
+
+
+
+ upper_front_chest_width
+ Short measurement name. Don't use math symbols in name!!!!
+ Шг1
+
+
+ Front Upper Chest width
+ Full measurement name
+ Ширина груди первая
+
+
+ Across Front UpperChest, smallest width from armscye to armscye
+ Full measurement description
+ Ширина груди первая
+
+
+
+ front_chest_width
+ Short measurement name. Don't use math symbols in name!!!!
+ Шг2
+
+
+ Front Chest width
+ Full measurement name
+ Ширина груди вторая
+
+
+ Across Front Chest, from armfold to armfold
+ Full measurement description
+ Ширина груди вторая
+
+
+
+ across_front_shoulder_width
+ Short measurement name. Don't use math symbols in name!!!!
+ dпл
+
+
+ Front Across Shoulder width
+ Full measurement name
+ Плечевой диаметр
+
+
+ From ShoulderTip to ShoulderTip, across Front
+ Full measurement description
+ Плечевой диаметр
+
+
+
+ across_back_shoulder_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_back_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_width
+ Short measurement name. Don't use math symbols in name!!!!
+ Шс
+
+
+ Back Chest width
+ Full measurement name
+ Ширина спины
+
+
+ Across Back Chest, from armfold to armfold
+ Full measurement description
+ Ширина спины
+
+
+
+ bustpoint_to_bustpoint
+ Short measurement name. Don't use math symbols in name!!!!
+ Цг
+
+
+ BustPoint to BustPoint
+ Full measurement name
+ Расстояние между сосковыми точками
+
+
+ Distance between BustPoints, across Chest
+ Full measurement description
+ Расстояние между сосковыми точками
+
+
+
+ halter_bustpoint_to_bustpoint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_bustpoint
+ Short measurement name. Don't use math symbols in name!!!!
+ Вг
+
+
+ NeckPoint to BustPoint
+ Full measurement name
+ Расстояние от точки основания шеи сбоку до сосковой точки (высота груди)
+
+
+ From NeckPoint to BustPoint
+ Full measurement description
+ Расстояние от точки основания шеи сбоку до сосковой точки (высота груди)
+
+
+
+ crotch_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ rise_height
+ Short measurement name. Don't use math symbols in name!!!!
+ Дпс
+
+
+ Rise height
+ Full measurement name
+ Расстояние от линии талии до подъягодичной складки
+
+
+ Sit on hard chair, measure from side waist straight down to chair bottom
+ Full measurement description
+ Расстояние от линии талии до подъягодичной складки
+
+
+
+ shoulder_drop
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_slope_degrees
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_shoulder_slope_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_shoulder_slope_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_shoulder_to_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_shoulder_to_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_neck_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_neck_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_upper_chest_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_upper_chest_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_waist_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_upper_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_upper_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ chest_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_waist_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_neck_to_upper_chest_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_neck_to_bust_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_to_upper_chest
+ Short measurement name. Don't use math symbols in name!!!!
+ Дпер
+
+
+
+ front_waist_to_lower_breast
+ Short measurement name. Don't use math symbols in name!!!!
+ Дпг
+
+
+
+ back_waist_to_upper_chest
+ Short measurement name. Don't use math symbols in name!!!!
+ Дст
+
+
+
+ strap_length
+ Short measurement name. Don't use math symbols in name!!!!
+ Дбр
+
+
+
+ armscye_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ elbow_girth
+ Short measurement name. Don't use math symbols in name!!!!
+ Олк
+
+
+ Elbow Girth
+ Full measurement name
+ Обхват локтя
+
+
+ Around Elbow with elbow bent
+ Full measurement description
+ Обхват локтя
+
+
+
+ upper_arm_girth
+ Short measurement name. Don't use math symbols in name!!!!
+ Оп
+
+
+ Upperarm Girth
+ Full measurement name
+ Обхват плеча
+
+
+ Around UpperArm
+ Full measurement description
+ Обхват плеча
+
+
+
+ wrist_girth
+ Short measurement name. Don't use math symbols in name!!!!
+ Озап
+
+
+ Wrist girth
+ Full measurement name
+ Обхват запястья
+
+
+ Around Wrist
+ Full measurement description
+ Обхват запястья
+
+
+
+ scye_depth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_and_arm_length
+ Short measurement name. Don't use math symbols in name!!!!
+ Дзап
+
+
+ Shoulder and Arm length
+ Full measurement name
+ Расстояние от точки основания шеи сбоку до линии обхвата запястья
+
+
+ NeckPoint to ShoulderTip to Wrist, with elbow bent and hand on hip
+ Full measurement description
+ Расстояние от точки основания шеи сбоку до линии обхвата запястья
+
+
+
+ underarm_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ cervicale_to_wrist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_to_elbow_length
+ Short measurement name. Don't use math symbols in name!!!!
+ Дрлок
+
+
+ Elbow length
+ Full measurement name
+ Длина руки до локтя
+
+
+ ShoulderTip to Elbow, with elbow bent and hand on hip
+ Full measurement description
+ Длина руки до локтя
+
+
+
+ arm_length
+ Short measurement name. Don't use math symbols in name!!!!
+ Дрзап
+
+
+ Arm length
+ Full measurement name
+ Длина рукава до линии обхвата запястья
+
+
+ ShoulderTip to Wrist, with elbow bent and hand on hip
+ Full measurement description
+ Длина рукава до линии обхвата запястья
+
+
+
+ hand_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_girth
+ Short measurement name. Don't use math symbols in name!!!!
+ Окис
+
+
+ Hand girth
+ Full measurement name
+ Обхват кисти
+
+
+ Around Hand
+ Full measurement description
+ Обхват кисти
+
+
+
+ thigh_girth
+ Short measurement name. Don't use math symbols in name!!!!
+ Обед
+
+
+ Thigh girth
+ Full measurement name
+ Обхват бедра
+
+
+ Around Thigh
+ Full measurement description
+ Обхват бедра
+
+
+
+ mid_thigh_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ knee_girth
+ Short measurement name. Don't use math symbols in name!!!!
+ Ок
+
+
+ Knee girth
+ Full measurement name
+ Обхват колена
+
+
+ Around Knee
+ Full measurement description
+ Обхват колена
+
+
+
+ calf_girth
+ Short measurement name. Don't use math symbols in name!!!!
+ Ои
+
+
+ Calf girth
+ Full measurement name
+ Обхват икры
+
+
+ Around Calf
+ Full measurement description
+ Обхват икры
+
+
+
+ ankle_girth
+ Short measurement name. Don't use math symbols in name!!!!
+ Ощ
+
+
+ Ankle girth
+ Full measurement name
+ Обхват щиколотки
+
+
+ Around Ankle
+ Full measurement description
+ Обхват щиколотки
+
+
+
+ knee_height
+ Short measurement name. Don't use math symbols in name!!!!
+ Вк
+
+
+ Knee height
+ Full measurement name
+ Высота коленной точки
+
+
+ Knee to Floor
+ Full measurement description
+ Высота коленной точки
+
+
+
+ ankle_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ foot_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ foot_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ cervicale_height
+ Short measurement name. Don't use math symbols in name!!!!
+ Вшт
+
+
+ Nape height
+ Full measurement name
+ Высота точки основания шеи сзади
+
+
+ Nape to Floor
+ Full measurement description
+ Высота точки основания шеи сзади
+
+
+
+ cervicale_to_knee_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_height
+ Short measurement name. Don't use math symbols in name!!!!
+ Влт
+
+
+ Waist height
+ Full measurement name
+ Высота линии талии
+
+
+ Waist side to floor
+ Full measurement description
+ Высота линии талии
+
+
+
+ high_hip_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hip_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ Hip side to Floor
+ Full measurement description
+
+
+
+
+ waist_to_hip_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_knee_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ crotch_height
+ Short measurement name. Don't use math symbols in name!!!!
+ Дн
+
+
+ Crotch height/Inseam
+ Full measurement name
+ Длина ноги по внутренней поверхности
+
+
+ Crotch to Floor along inside leg
+ Full measurement description
+ Длина ноги по внутренней поверхности
+
+
+
+ size
+ Short measurement name. Don't use math symbols in name!!!!
+ Сг
+
+
+ Size
+ Full measurement name
+ Размер
+
+
+ Size
+ Full measurement description
+ Размер
+
+
+
+ height_front_neck_base_point
+ Short measurement name. Don't use math symbols in name!!!!
+ Втос
+
+
+ Height front neck base point
+ Full measurement name
+ Высота точки основания шеи спереди
+
+
+ Height of the point base of the neck in front
+ Full measurement description
+ Высота точки основания шеи спереди
+
+
+
+ height_base_neck_side_point
+ Short measurement name. Don't use math symbols in name!!!!
+ Втош
+
+
+ Height base neck side point
+ Full measurement name
+ Высота точки основания шеи сбоку
+
+
+ Height of the base of the neck side point
+ Full measurement description
+ Высота точки основания шеи сбоку
+
+
+
+ height_shoulder_point
+ Short measurement name. Don't use math symbols in name!!!!
+ Впт
+
+
+ Height shoulder point
+ Full measurement name
+ Высота плечевой точки
+
+
+ The height of the shoulder point
+ Full measurement description
+ Высота плечевой точки
+
+
+
+ height_nipple_point
+ Short measurement name. Don't use math symbols in name!!!!
+ Вст
+
+
+ Height nipple point
+ Full measurement name
+ Высота сосковой точки
+
+
+ Height nipple point
+ Full measurement description
+ Высота сосковой точки
+
+
+
+ height_back_angle_axilla
+ Short measurement name. Don't use math symbols in name!!!!
+ Взу
+
+
+ Height back angle axilla
+ Full measurement name
+ Высота заднего угла подмышечной впадины
+
+
+ Height back angle axilla
+ Full measurement description
+ Высота заднего угла подмышечной впадины
+
+
+
+ height_scapular_point
+ Short measurement name. Don't use math symbols in name!!!!
+ Влоп
+
+
+ Height scapular point
+ Full measurement name
+ Высота лопаточной точки
+
+
+ Height scapular point
+ Full measurement description
+ Высота лопаточной точки
+
+
+
+ height_under_buttock_folds
+ Short measurement name. Don't use math symbols in name!!!!
+ Впс
+
+
+ Height under buttock folds
+ Full measurement name
+ Высота подъягодичной складки
+
+
+ Height under buttock folds
+ Full measurement description
+ Высота подъягодичной складки
+
+
+
+ hips_excluding_protruding_abdomen
+ Short measurement name. Don't use math symbols in name!!!!
+ ОбI
+
+
+ Hips excluding protruding abdomen
+ Full measurement name
+ Обхват бедер без учета выступания живота
+
+
+ Hips excluding protruding abdomen
+ Full measurement description
+ Обхват бедер без учета выступания живота
+
+
+
+ girth_foot_instep
+ Short measurement name. Don't use math symbols in name!!!!
+ Ос
+
+
+ Girth foot instep
+ Full measurement name
+ Обхват подъема стопы
+
+
+ Girth foot instep
+ Full measurement description
+ Обхват подъема стопы
+
+
+
+ side_waist_to_floor
+ Short measurement name. Don't use math symbols in name!!!!
+ Дсб
+
+
+ Side waist to floor
+ Full measurement name
+ Расстояние от линии талии до пола сбоку
+
+
+ The distance from the side waist to floor
+ Full measurement description
+ Расстояние от линии талии до пола сбоку
+
+
+
+ front_waist_to_floor
+ Short measurement name. Don't use math symbols in name!!!!
+ Дсп
+
+
+ Front waist to floor
+ Full measurement name
+ Расстояние от линии талии до пола спереди
+
+
+ The distance from the front waist to floor
+ Full measurement description
+ Расстояние от линии талии до пола спереди
+
+
+
+ arc_through_groin_area
+ Short measurement name. Don't use math symbols in name!!!!
+ Дпоб
+
+
+ Arc through groin area
+ Full measurement name
+ Дуга через паховую область
+
+
+ Arc through groin area
+ Full measurement description
+ Дуга через паховую область
+
+
+
+ waist_to_plane_seat
+ Short measurement name. Don't use math symbols in name!!!!
+ Вс
+
+
+ Waist to plane seat
+ Full measurement name
+ Расстояние от линии талии до плоскости сидения
+
+
+ The distance from the waist to the plane seat
+ Full measurement description
+ Расстояние от линии талии до плоскости сидения
+
+
+
+ neck_to_radial_point
+ Short measurement name. Don't use math symbols in name!!!!
+ Длуч
+
+
+ Neck to radial point
+ Full measurement name
+ Расстояние от точки основания шеи сбоку до лучевой точки
+
+
+ The distance from the base of the neck to the side of the radial point
+ Full measurement description
+ Расстояние от точки основания шеи сбоку до лучевой точки
+
+
+
+ neck_to_third_finger
+ Short measurement name. Don't use math symbols in name!!!!
+ ДIIIп
+
+
+ Neck to third finger
+ Full measurement name
+ Расстояние от точки основания шеи сбоку до конца третьего пальца
+
+
+ Distance from the base of the neck side point to the end of the third finger
+ Full measurement description
+ Расстояние от точки основания шеи сбоку до конца третьего пальца
+
+
+
+ neck_to_first_line_chest_circumference
+ Short measurement name. Don't use math symbols in name!!!!
+ Впрп
+
+
+ Neck to first line chest circumference
+ Full measurement name
+ Расстояние от точки основания шеи сбоку до линии обхвата груди первого спереди
+
+
+ The distance from the base of the neck to the side of the first line in front of chest circumference
+ Full measurement description
+ Расстояние от точки основания шеи сбоку до линии обхвата груди первого спереди
+
+
+
+ front_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+ Дтп
+
+
+ Front waist length
+ Full measurement name
+ Расстояние от точки основания шеи сбоку до линии талии спереди (длани талии спереди)
+
+
+ The distance from the base of the neck to the waist side front (waist length in the front)
+ Full measurement description
+ Расстояние от точки основания шеи сбоку до линии талии спереди (длани талии спереди)
+
+
+
+ arc_through_shoulder_joint
+ Short measurement name. Don't use math symbols in name!!!!
+ Дп
+
+
+ Arc through shoulder joint
+ Full measurement name
+ Дуга через высшую точку плечевого сустава
+
+
+ Arc through the highest point of the shoulder joint
+ Full measurement description
+ Дуга через высшую точку плечевого сустава
+
+
+
+ neck_to_back_line_chest_circumference
+ Short measurement name. Don't use math symbols in name!!!!
+ Впрз
+
+
+ Neck to back line chest circumference
+ Full measurement name
+ Расстояние от точки основания шеи сзади до линии обхватов груди первого и второго с учетом выступа лопаток
+
+
+ The distance from the base of the neck to the back line of chest circumference of the first and the second based on ledge vanes
+ Full measurement description
+ Расстояние от точки основания шеи сзади до линии обхватов груди первого и второго с учетом выступа лопаток
+
+
+
+ waist_to_neck_side
+ Short measurement name. Don't use math symbols in name!!!!
+ ДтсI
+
+
+ Waist to neck side
+ Full measurement name
+ Расстояние от линии талии сзади до точки основания шеи сбоку
+
+
+ The distance from the waist to the back base of the neck side point
+ Full measurement description
+ Расстояние от линии талии сзади до точки основания шеи сбоку
+
+
+
+ arc_length_upper_body
+ Short measurement name. Don't use math symbols in name!!!!
+ Двчт
+
+
+ Arc length upper body
+ Full measurement name
+ Длина дуги верхней части туловища через точку основания шеи сбоку
+
+
+ Arc length of the upper body through the base of the neck side point
+ Full measurement description
+ Длина дуги верхней части туловища через точку основания шеи сбоку
+
+
+
+ chest_width
+ Short measurement name. Don't use math symbols in name!!!!
+ Шг
+
+
+ Chest width
+ Full measurement name
+ Ширина груди
+
+
+ Chest width
+ Full measurement description
+ Ширина груди
+
+
+
+ anteroposterior_diameter_hands
+ Short measurement name. Don't use math symbols in name!!!!
+ dпзр
+
+
+ Anteroposterior diameter hands
+ Full measurement name
+ Передне-задний диаметр руки
+
+
+ Anteroposterior diameter of the hands
+ Full measurement description
+ Передне-задний диаметр руки
+
+
+
+ height_clavicular_point
+ Short measurement name. Don't use math symbols in name!!!!
+ Вкт
+
+
+ Height clavicular point
+ Full measurement name
+ Высота ключичной точки
+
+
+ Height clavicular point
+ Full measurement description
+ Высота ключичной точки
+
+
+
+ height_armhole_slash
+ Short measurement name. Don't use math symbols in name!!!!
+ Впрк
+
+
+ Height armhole slash
+ Full measurement name
+ Расстояние от шейной точки до уровня заднего угла подмышечной впадины спереди (высота проймы косая)
+
+
+ The distance from the point to the cervical level of the posterior angle of the front armpit (underarm height oblique)
+ Full measurement description
+ Расстояние от шейной точки до уровня заднего угла подмышечной впадины спереди (высота проймы косая)
+
+
+
+ slash_shoulder_height
+ Short measurement name. Don't use math symbols in name!!!!
+ Впк
+
+
+ Slash shoulder height
+ Full measurement name
+ Высота плеча косая
+
+
+ Slash shoulder height
+ Full measurement description
+ Высота плеча косая
+
+
+
+ half_girth_neck
+ Short measurement name. Don't use math symbols in name!!!!
+ Сш
+
+
+ Half girth neck
+ Full measurement name
+ Полуобхват шеи
+
+
+ Half girth neck
+ Full measurement description
+ Полуобхват шеи
+
+
+
+ half_girth_neck_for_shirts
+ Short measurement name. Don't use math symbols in name!!!!
+ Сш1
+
+
+ Half girth neck for shirts
+ Full measurement name
+ Полуобхват шеи для сорочек
+
+
+ Half girth neck for shirts
+ Full measurement description
+ Полуобхват шеи для сорочек
+
+
+
+ half_girth_chest_first
+ Short measurement name. Don't use math symbols in name!!!!
+ СгI
+
+
+ Half girth chest first
+ Full measurement name
+ Полуобхват груди первый
+
+
+ Half girth chest first
+ Full measurement description
+ Полуобхват груди первый
+
+
+
+ half_girth_chest_second
+ Short measurement name. Don't use math symbols in name!!!!
+ СгII
+
+
+ Half girth chest second
+ Full measurement name
+ Полуобхват груди второй
+
+
+ Half girth chest second
+ Full measurement description
+ Полуобхват груди второй
+
+
+
+ half_girth_chest_third
+ Short measurement name. Don't use math symbols in name!!!!
+ СгIII
+
+
+ Half girth chest third
+ Full measurement name
+ Полуобхват груди третий
+
+
+ Half girth chest third
+ Full measurement description
+ Полуобхват груди третий
+
+
+
+ half_girth_waist
+ Short measurement name. Don't use math symbols in name!!!!
+ Ст
+
+
+ Half girth waist
+ Full measurement name
+ Полуобхват талии
+
+
+ Half girth waist
+ Full measurement description
+ Полуобхват талии
+
+
+
+ half_girth_hips_considering_protruding_abdomen
+ Short measurement name. Don't use math symbols in name!!!!
+ Сб
+
+
+ Half girth hips considering protruding abdomen
+ Full measurement name
+ Полуобхват бедер с учетом выступания живота
+
+
+ Half girth hips considering protruding abdomen
+ Full measurement description
+ Полуобхват бедер с учетом выступания живота
+
+
+
+ half_girth_hips_excluding_protruding_abdomen
+ Short measurement name. Don't use math symbols in name!!!!
+ СбI
+
+
+ Half girth hips excluding protruding abdomen
+ Full measurement name
+ Полуобхват бедер без учета выступания живота
+
+
+ Half girth hips excluding protruding abdomen
+ Full measurement description
+ Полуобхват бедер без учета выступания живота
+
+
+
+ girth_knee_flexed_feet
+ Short measurement name. Don't use math symbols in name!!!!
+ Окс
+
+
+ Girth knee flexed feet
+ Full measurement name
+ Обхват колена в согнутом положении ноги
+
+
+ Girth knee flexed feet
+ Full measurement description
+ Обхват колена в согнутом положении ноги
+
+
+
+ neck_transverse_diameter
+ Short measurement name. Don't use math symbols in name!!!!
+ dш
+
+
+ Neck transverse diameter
+ Full measurement name
+ Поперечный диаметр шеи
+
+
+ Neck transverse diameter
+ Full measurement description
+ Поперечный диаметр шеи
+
+
+
+ front_slash_shoulder_height
+ Short measurement name. Don't use math symbols in name!!!!
+ Впкп
+
+
+ Front slash shoulder height
+ Full measurement name
+ Высота плеча косая спереди
+
+
+ Front slash shoulder height
+ Full measurement description
+ Высота плеча косая спереди
+
+
+
+ neck_to_front_waist_line
+ Short measurement name. Don't use math symbols in name!!!!
+ Дтн1
+
+
+ Neck to front waist line
+ Full measurement name
+ Расстояние от точки основания шеи до линии талии спереди
+
+
+ The distance from the base of the neck to the waist line front
+ Full measurement description
+ Расстояние от точки основания шеи до линии талии спереди
+
+
+
+ hand_vertical_diameter
+ Short measurement name. Don't use math symbols in name!!!!
+ dвр
+
+
+ Hand vertical diameter
+ Full measurement name
+ Вертикальный диаметр руки
+
+
+ Hand vertical diameter
+ Full measurement description
+ Вертикальный диаметр руки
+
+
+
+ neck_to_knee_point
+ Short measurement name. Don't use math symbols in name!!!!
+ Дшк
+
+
+ Neck to knee point
+ Full measurement name
+ Расстояние от шейной точки до колена
+
+
+ Distance from neck to knee point
+ Full measurement description
+ Расстояние от шейной точки до колена
+
+
+
+ waist_to_knee
+ Short measurement name. Don't use math symbols in name!!!!
+ Дтк
+
+
+ Waist to knee
+ Full measurement name
+ Расстояние от линии талии до колена
+
+
+ The distance from the waist to the knee
+ Full measurement description
+ Расстояние от линии талии до колена
+
+
+
+ shoulder_height
+ Short measurement name. Don't use math symbols in name!!!!
+ Вп
+
+
+ Shoulder height
+ Full measurement name
+ Высота плеча
+
+
+ Shoulder height
+ Full measurement description
+ Высота плеча
+
+
+
+ head_height
+ Short measurement name. Don't use math symbols in name!!!!
+ Вгол
+
+
+ Head height
+ Full measurement name
+ Высота головы
+
+
+ Head height
+ Full measurement description
+ Высота головы
+
+
+
+ body_position
+ Short measurement name. Don't use math symbols in name!!!!
+ Пкор
+
+
+ Body position
+ Full measurement name
+ Положение корпуса
+
+
+ Body position
+ Full measurement description
+ Положение корпуса
+
+
+
+ arc_behind_shoulder_girdle
+ Short measurement name. Don't use math symbols in name!!!!
+ Дпз
+
+
+ Arc behind shoulder girdle
+ Full measurement name
+ Дуга плечевого пояса сзади
+
+
+ Arc behind the shoulder girdle
+ Full measurement description
+ Дуга плечевого пояса сзади
+
+
+
+ neck_to_neck_base
+ Short measurement name. Don't use math symbols in name!!!!
+ Дшош
+
+
+ Neck to neck base
+ Full measurement name
+ Расстояние от шейной точки до точки основания шеи сбоку по линии измерения обхвата шеи
+
+
+ Distance from neck point to point on the base of the neck side neck girth measurement line
+ Full measurement description
+ Расстояние от шейной точки до точки основания шеи сбоку по линии измерения обхвата шеи
+
+
+
+ depth_waist_first
+ Short measurement name. Don't use math symbols in name!!!!
+ Гт1
+
+
+ Depth waist first
+ Full measurement name
+ Глубина талии первая
+
+
+ Depth waist first
+ Full measurement description
+ Глубина талии первая
+
+
+
+ depth_waist_second
+ Short measurement name. Don't use math symbols in name!!!!
+ ГтII
+
+
+ Depth waist second
+ Full measurement name
+ Глубина талии вторая
+
+
+ Depth waist second
+ Full measurement description
+ Глубина талии вторая
+
+
+
+ MeasurementsDescriptions
+
+
+ Around fullest part of Head
+ Full measurement description
+ Обхват головы
+
+
+
+ Around middle part of Neck
+ Full measurement description
+
+
+
+
+ Around Neck at base
+ Full measurement description
+ Обхват шеи
+
+
+
+ Vertical Distance from Crown to Nape
+ Full measurement description
@@ -4395,2235 +5952,1566 @@ Do you want to save your changes?
- center_back_waist_length
- Short measurement name. Don't use math symbols in name!!!!
- Дтс
-
-
-
- Back Center length
- Full measurement name
- Длина спины до талии с учетом выступа лопаток
-
-
- Back Neck Center to Back Waist CenterFull measurement description
- Длина спины до талии с учетом выступа лопаток
+ Длина спины до талии с учетом выступа лопаток
-
- shoulder_length
- Short measurement name. Don't use math symbols in name!!!!
- Шп
-
-
-
- Shoulder length
- Full measurement name
- Длина плечевого ската
+
+ NeckPoint to ShoulderTip
+ Full measurement description
+ Длина плечевого ската
- NeckPoint to ShoulderTip
+ Armpit to Waist sideFull measurement description
- Длина плечевого ската
+ Длина боковой части
- side_waist_length
- Short measurement name. Don't use math symbols in name!!!!
- Дб
-
-
-
- Side Waist length
- Full measurement name
- Длина боковой части
-
-
-
- Armpit to Waist side
- Full measurement description
- Длина боковой части
-
-
-
- trunk_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Trunk length
- Full measurement name
-
-
-
- Around Body from middle of Shoulder length to BustPoint to Crotch up back to beginning pointFull measurement description
-
- shoulder_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder girth
- Full measurement name
-
-
-
-
+ Around Arms and Torso, at bicep level parallel to floor, with arms hanging at the sidesFull measurement description
-
- upper_chest_girth
- Short measurement name. Don't use math symbols in name!!!!
- ОгI
-
-
-
- Upper Chest girth
- Full measurement name
- Обхват груди первый
-
-
-
+ Around Chest at Armfold level, will be parallel to floor across back, will not be parallel to floor across front chestFull measurement description
- Обхват груди первый
+ Обхват груди первый
-
- bust_girth
- Short measurement name. Don't use math symbols in name!!!!
- ОгII
-
-
-
- Bust girth
- Full measurement name
- Обхват груди второй
-
-
-
+ Around fullest part of Bust, parallel to floorFull measurement description
- Обхват груди второй
+ Обхват груди второй
-
- under_bust_girth
- Short measurement name. Don't use math symbols in name!!!!
- ОгIII
-
-
-
- Under Bust girth
- Full measurement name
- Обхват груди третий
-
-
-
+ Around Chest below the Bust, parallel to floorFull measurement description
- Обхват груди третий
+ Обхват груди третий
-
- waist_girth
- Short measurement name. Don't use math symbols in name!!!!
- От
-
-
-
- Waist girth
- Full measurement name
- Обхват талии
-
-
-
+ Tie a string around smallest part of waist, keep string tied while taking meaasurements. Not usually parallel to floor for front waist or back waist.Full measurement description
- Обхват талии.
+ Обхват талии.
-
- high_hip_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- HighHip girth
- Full measurement name
-
-
-
-
+ Around HighHip, parallel to floorFull measurement description
-
- hip_girth
- Short measurement name. Don't use math symbols in name!!!!
- Об
-
-
-
- Hip girth
- Full measurement name
- Обхват бедер с учетом выступания живота
-
-
-
+ Around Hip, parallel to floorFull measurement description
- Обхват бедер с учетом выступания живота
+ Обхват бедер с учетом выступания живота
-
- upper_front_chest_width
- Short measurement name. Don't use math symbols in name!!!!
- Шг1
-
-
-
- Front Upper Chest width
- Full measurement name
- Ширина груди первая
-
-
-
+ Across Front UpperChest, smallest width from armscye to armscyeFull measurement description
- Ширина груди первая
+ Ширина груди первая
-
- front_chest_width
- Short measurement name. Don't use math symbols in name!!!!
- Шг2
-
-
-
- Front Chest width
- Full measurement name
- Ширина груди вторая
-
-
-
+ Across Front Chest, from armfold to armfoldFull measurement description
- Ширина груди вторая
+ Ширина груди вторая
-
- across_front_shoulder_width
- Short measurement name. Don't use math symbols in name!!!!
- dпл
-
-
-
- Front Across Shoulder width
- Full measurement name
- Плечевой диаметр
-
-
-
+ From ShoulderTip to ShoulderTip, across FrontFull measurement description
- Плечевой диаметр
+ Плечевой диаметр
-
- across_back_shoulder_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Across Shoulder width
- Full measurement name
-
-
-
-
+ From ShoulderTip to ShoulderTip, across BackFull measurement description
-
- Back Upper Chest width
- Full measurement name
-
-
-
-
+ Across Back UpperChest, smallest width from armscye to armscyeFull measurement description
-
- upper_back_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- back_width
- Short measurement name. Don't use math symbols in name!!!!
- Шс
-
-
-
- Back Chest width
- Full measurement name
- Ширина спины
-
-
-
+ Across Back Chest, from armfold to armfoldFull measurement description
- Ширина спины
+ Ширина спины
-
- bustpoint_to_bustpoint
- Short measurement name. Don't use math symbols in name!!!!
- Цг
-
-
-
- BustPoint to BustPoint
- Full measurement name
- Расстояние между сосковыми точками
-
-
-
+ Distance between BustPoints, across ChestFull measurement description
- Расстояние между сосковыми точками
+ Расстояние между сосковыми точками
-
- halter_bustpoint_to_bustpoint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Halter Bustpoint to Bustpoint
- Full measurement name
-
-
-
-
+ Distance from Bustpoint, behind neck, down to BustpointFull measurement description
-
- neck_to_bustpoint
- Short measurement name. Don't use math symbols in name!!!!
- Вг
-
-
-
- NeckPoint to BustPoint
- Full measurement name
- Расстояние от точки основания шеи сбоку до сосковой точки (высота груди)
-
-
-
+ From NeckPoint to BustPointFull measurement description
- Расстояние от точки основания шеи сбоку до сосковой точки (высота груди)
+ Расстояние от точки основания шеи сбоку до сосковой точки (высота груди)
-
- crotch_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Crotch length
- Full measurement name
-
-
-
-
+ From Front Waist Center, down to crotch, up to Back Waist CenterFull measurement description
-
- rise_height
- Short measurement name. Don't use math symbols in name!!!!
- Дпс
-
-
-
- Rise height
- Full measurement name
- Расстояние от линии талии до подъягодичной складки
-
-
-
+ Sit on hard chair, measure from side waist straight down to chair bottomFull measurement description
- Расстояние от линии талии до подъягодичной складки
+ Расстояние от линии талии до подъягодичной складки
-
- shoulder_drop
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder Drop
- Full measurement name
-
-
-
-
+ Vertical Distance from NeckPoint level to ShoulderTip levelFull measurement description
-
- shoulder_slope_degrees
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder Slope degrees
- Full measurement name
-
-
-
-
+ Degrees of angle from NeckPoint to ShoulderTip – requires goniometerFull measurement description
-
- front_shoulder_slope_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Shoulder Balance
- Full measurement name
-
-
-
-
+ ShoulderTip to Front Waist CenterFull measurement description
-
- back_shoulder_slope_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Shoulder Balance
- Full measurement name
-
-
-
-
+ ShoulderTip to Back Waist CenterFull measurement description
-
- front_shoulder_to_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Full Length
- Full measurement name
-
-
-
-
+ NeckPoint straight down front chest to WaistlineFull measurement description
-
- back_shoulder_to_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Full Length
- Full measurement name
-
-
-
-
+ Back NeckPoint straight down back chest to WaistlineFull measurement description
-
- front_neck_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Neck arc
- Full measurement name
-
-
-
-
+ NeckPoint to NeckPoint through Front Neck CenterFull measurement description
-
- back_neck_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Neck arc
- Full measurement name
-
-
-
-
+ NeckPoint to NeckPoint across NapeFull measurement description
-
- front_upper_chest_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- front_upper-bust_arc
- Full measurement name
-
-
-
-
+ front_upper-bust_arcFull measurement description
-
- back_upper_chest_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back UpperBust arc
- Full measurement name
-
-
-
-
+ Back UpperBust side to sideFull measurement description
-
- front_waist_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Waist arc
- Full measurement name
-
-
-
-
+ Front Waist side to sideFull measurement description
-
- back_waist_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Waist arc
- Full measurement name
-
-
-
-
+ Back Waist side to sideFull measurement description
-
- front_upper_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front UpperHip arc
- Full measurement name
-
-
-
-
+ Front UpperHip side to sideFull measurement description
-
- back_upper_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back UpperHip arc
- Full measurement name
-
-
-
-
+ Back UpperHip side to sideFull measurement description
-
- front_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Hip arc
- Full measurement name
-
-
-
-
+ Front Hip side to sideFull measurement description
-
- back_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Hip arc
- Full measurement name
-
-
-
-
+ Back Hip side to sideFull measurement description
-
- chest_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Chest Balance
- Full measurement name
-
-
-
-
+ NeckPoint to Front ArmfoldPointFull measurement description
-
- back_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Balance
- Full measurement name
-
-
-
-
+ NeckPoint to Back ArmfoldPointFull measurement description
-
- front_waist_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Waist Balance
- Full measurement name
-
-
-
-
+ NeckPoint across Front Chest to Waist sideFull measurement description
-
- back_waist_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Waist Balance
- Full measurement name
-
-
-
-
+ NeckPoint across Back Chest to Waist sideFull measurement description
-
- front_neck_to_upper_chest_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front UpperChest height
- Full measurement name
-
-
-
-
+ Front Neck Center straight down to UpperChest lineFull measurement description
-
- front_neck_to_bust_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Bust height
- Full measurement name
-
-
-
-
+ Front Neck Center straight down to Bust lineFull measurement description
-
- armscye_girth
- Short measurement name. Don't use math symbols in name!!!!
+
+ Front Upper chest waist
+ Full measurement description
-
- Armscye Girth
- Full measurement name
+
+ Front waist to lower breast
+ Full measurement description
-
+
+ Back waist to upper chest
+ Full measurement description
+
+
+
+
+ Strap length
+ Full measurement description
+
+
+
+ Around ArmscyeFull measurement description
-
- elbow_girth
- Short measurement name. Don't use math symbols in name!!!!
- Олк
-
-
-
- Elbow Girth
- Full measurement name
- Обхват локтя
-
-
-
+ Around Elbow with elbow bentFull measurement description
- Обхват локтя
+ Обхват локтя
-
- upper_arm_girth
- Short measurement name. Don't use math symbols in name!!!!
- Оп
-
-
-
- Upperarm Girth
- Full measurement name
- Обхват плеча
-
-
-
+ Around UpperArmFull measurement description
- Обхват плеча
+ Обхват плеча
-
- wrist_girth
- Short measurement name. Don't use math symbols in name!!!!
- Озап
-
-
-
- Wrist girth
- Full measurement name
- Обхват запястья
-
-
-
+ Around WristFull measurement description
- Обхват запястья
+ Обхват запястья
-
- scye_depth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Armscye depth
- Full measurement name
-
-
-
-
+ Nape straight down to UnderBust line (same as Back UpperBust height)Full measurement description
-
- shoulder_and_arm_length
- Short measurement name. Don't use math symbols in name!!!!
- Дзап
-
-
-
- Shoulder and Arm length
- Full measurement name
- Расстояние от точки основания шеи сбоку до линии обхвата запястья
-
-
-
+ NeckPoint to ShoulderTip to Wrist, with elbow bent and hand on hipFull measurement description
- Расстояние от точки основания шеи сбоку до линии обхвата запястья
+ Расстояние от точки основания шеи сбоку до линии обхвата запястья
-
- underarm_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Underarm length
- Full measurement name
-
-
-
-
+ Armpit to Wrist, with arm straight and hanging at sideFull measurement description
-
- cervicale_to_wrist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Nape to wrist length
- Full measurement name
-
-
-
-
+ Nape to Wrist, with elbow bent and hand on hipFull measurement description
-
- shoulder_to_elbow_length
- Short measurement name. Don't use math symbols in name!!!!
- Дрлок
-
-
-
- Elbow length
- Full measurement name
- Длина руки до локтя
-
-
-
+ ShoulderTip to Elbow, with elbow bent and hand on hipFull measurement description
- Длина руки до локтя
+ Длина руки до локтя
-
- arm_length
- Short measurement name. Don't use math symbols in name!!!!
- Дрзап
-
-
-
- Arm length
- Full measurement name
- Длина рукава до линии обхвата запястья
-
-
-
+ ShoulderTip to Wrist, with elbow bent and hand on hipFull measurement description
- Длина рукава до линии обхвата запястья
+ Длина рукава до линии обхвата запястья
-
- hand_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand width
- Full measurement name
-
-
-
-
+ Hand side to sideFull measurement description
-
- hand_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand length
- Full measurement name
-
-
-
-
+ Hand Middle Finger tip to wristFull measurement description
-
- hand_girth
- Short measurement name. Don't use math symbols in name!!!!
- Окис
-
-
-
- Hand girth
- Full measurement name
- Обхват кисти
-
-
-
+ Around HandFull measurement description
- Обхват кисти
+ Обхват кисти
-
- thigh_girth
- Short measurement name. Don't use math symbols in name!!!!
- Обед
-
-
-
- Thigh girth
- Full measurement name
- Обхват бедра
-
-
-
+ Around ThighFull measurement description
- Обхват бедра
+ Обхват бедра
-
- mid_thigh_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Midthigh girth
- Full measurement name
-
-
-
-
+ Around MidThighFull measurement description
-
- knee_girth
- Short measurement name. Don't use math symbols in name!!!!
- Ок
-
-
-
- Knee girth
- Full measurement name
- Обхват колена
-
-
-
+ Around KneeFull measurement description
- Обхват колена
+ Обхват колена
-
- calf_girth
- Short measurement name. Don't use math symbols in name!!!!
- Ои
-
-
-
- Calf girth
- Full measurement name
- Обхват икры
-
-
-
+ Around CalfFull measurement description
- Обхват икры
+ Обхват икры
-
- ankle_girth
- Short measurement name. Don't use math symbols in name!!!!
- Ощ
-
-
-
- Ankle girth
- Full measurement name
- Обхват щиколотки
-
-
-
+ Around AnkleFull measurement description
- Обхват щиколотки
+ Обхват щиколотки
-
- knee_height
- Short measurement name. Don't use math symbols in name!!!!
- Вк
-
-
-
- Knee height
- Full measurement name
- Высота коленной точки
-
-
-
+ Knee to FloorFull measurement description
- Высота коленной точки
+ Высота коленной точки
-
- ankle_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Ankle height
- Full measurement name
-
-
-
-
+ Ankle to FloorFull measurement description
-
- foot_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Foot width
- Full measurement name
-
-
-
-
+ Widest part of Foot side to sideFull measurement description
-
- foot_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Foot length
- Full measurement name
-
-
-
-
+ Tip of Longest Toe straight to back of heelFull measurement description
-
- height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Total Height
- Full measurement name
-
-
-
-
+ Top of head to floorFull measurement description
-
- cervicale_height
- Short measurement name. Don't use math symbols in name!!!!
- Вшт
-
-
-
- Nape height
- Full measurement name
- Высота точки основания шеи сзади
-
-
-
+ Nape to FloorFull measurement description
- Высота точки основания шеи сзади
+ Высота точки основания шеи сзади
-
- cervicale_to_knee_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Nape to knee height
- Full measurement name
-
-
-
-
+ Nape to KneeFull measurement description
-
- waist_height
- Short measurement name. Don't use math symbols in name!!!!
- Влт
-
-
-
- Waist height
- Full measurement name
- Высота линии талии
-
-
-
+ Waist side to floorFull measurement description
- Высота линии талии
+ Высота линии талии
-
- high_hip_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- HighHip height
- Full measurement name
-
-
-
-
+ HighHip side to FloorFull measurement description
-
- hip_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hip height
- Full measurement name
-
-
-
-
- Hip side to Floor
- Full measurement description
-
-
-
-
- waist_to_hip_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to Hip height
- Full measurement name
-
-
-
-
+ Waist side to HipFull measurement description
-
- waist_to_knee_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to Knee height
- Full measurement name
-
-
-
-
+ Waist side to KneeFull measurement description
-
- crotch_height
- Short measurement name. Don't use math symbols in name!!!!
- Дн
-
-
-
- Crotch height/Inseam
- Full measurement name
- Длина ноги по внутренней поверхности
-
-
-
+ Crotch to Floor along inside legFull measurement description
- Длина ноги по внутренней поверхности
+ Длина ноги по внутренней поверхности
-
- size
- Short measurement name. Don't use math symbols in name!!!!
- Сг
-
-
-
- Size
- Full measurement name
- Размер
-
-
-
+ SizeFull measurement description
- Размер
+ Размер
-
- height_front_neck_base_point
- Short measurement name. Don't use math symbols in name!!!!
- Втос
+
+ Height of the point base of the neck in front
+ Full measurement description
+ Высота точки основания шеи спереди
+
+
+
+ Height of the base of the neck side point
+ Full measurement description
+ Высота точки основания шеи сбоку
+
+
+
+ The height of the shoulder point
+ Full measurement description
+ Высота плечевой точки
+
+
+
+ Height nipple point
+ Full measurement description
+ Высота сосковой точки
+
+
+
+ Height back angle axilla
+ Full measurement description
+ Высота заднего угла подмышечной впадины
+
+
+
+ Height scapular point
+ Full measurement description
+ Высота лопаточной точки
+
+
+
+ Height under buttock folds
+ Full measurement description
+ Высота подъягодичной складки
+
+
+
+ Hips excluding protruding abdomen
+ Full measurement description
+ Обхват бедер без учета выступания живота
+
+
+
+ Girth foot instep
+ Full measurement description
+ Обхват подъема стопы
+
+
+
+ The distance from the side waist to floor
+ Full measurement description
+ Расстояние от линии талии до пола сбоку
+
+
+
+ The distance from the front waist to floor
+ Full measurement description
+ Расстояние от линии талии до пола спереди
+
+
+
+ Arc through groin area
+ Full measurement description
+ Дуга через паховую область
+
+
+
+ The distance from the waist to the plane seat
+ Full measurement description
+ Расстояние от линии талии до плоскости сидения
+
+
+
+ The distance from the base of the neck to the side of the radial point
+ Full measurement description
+ Расстояние от точки основания шеи сбоку до лучевой точки
+
+
+
+ Distance from the base of the neck side point to the end of the third finger
+ Full measurement description
+ Расстояние от точки основания шеи сбоку до конца третьего пальца
+
+
+
+ The distance from the base of the neck to the side of the first line in front of chest circumference
+ Full measurement description
+ Расстояние от точки основания шеи сбоку до линии обхвата груди первого спереди
+
+
+
+ The distance from the base of the neck to the waist side front (waist length in the front)
+ Full measurement description
+ Расстояние от точки основания шеи сбоку до линии талии спереди (длани талии спереди)
+
+
+
+ Arc through the highest point of the shoulder joint
+ Full measurement description
+ Дуга через высшую точку плечевого сустава
+
+
+
+ The distance from the base of the neck to the back line of chest circumference of the first and the second based on ledge vanes
+ Full measurement description
+ Расстояние от точки основания шеи сзади до линии обхватов груди первого и второго с учетом выступа лопаток
+
+
+
+ The distance from the waist to the back base of the neck side point
+ Full measurement description
+ Расстояние от линии талии сзади до точки основания шеи сбоку
+
+
+
+ Arc length of the upper body through the base of the neck side point
+ Full measurement description
+ Длина дуги верхней части туловища через точку основания шеи сбоку
+
+
+
+ Chest width
+ Full measurement description
+ Ширина груди
+
+
+
+ Anteroposterior diameter of the hands
+ Full measurement description
+ Передне-задний диаметр руки
+
+
+
+ Height clavicular point
+ Full measurement description
+ Высота ключичной точки
+
+
+
+ The distance from the point to the cervical level of the posterior angle of the front armpit (underarm height oblique)
+ Full measurement description
+ Расстояние от шейной точки до уровня заднего угла подмышечной впадины спереди (высота проймы косая)
+
+
+
+ Slash shoulder height
+ Full measurement description
+ Высота плеча косая
+
+
+
+ Half girth neck
+ Full measurement description
+ Полуобхват шеи
- Height front neck base point
- Full measurement name
- Высота точки основания шеи спереди
-
-
-
- Height of the point base of the neck in front
+ Half girth neck for shirtsFull measurement description
- Высота точки основания шеи спереди
+ Полуобхват шеи для сорочек
-
- height_base_neck_side_point
- Short measurement name. Don't use math symbols in name!!!!
- Втош
-
-
-
- Height base neck side point
- Full measurement name
- Высота точки основания шеи сбоку
-
-
-
- Height of the base of the neck side point
+
+ Half girth chest firstFull measurement description
- Высота точки основания шеи сбоку
+ Полуобхват груди первый
-
- height_shoulder_point
- Short measurement name. Don't use math symbols in name!!!!
- Впт
-
-
-
- Height shoulder point
- Full measurement name
- Высота плечевой точки
-
-
-
- The height of the shoulder point
+
+ Half girth chest secondFull measurement description
- Высота плечевой точки
+ Полуобхват груди второй
-
- height_nipple_point
- Short measurement name. Don't use math symbols in name!!!!
- Вст
-
-
-
- Height nipple point
- Full measurement name
- Высота сосковой точки
-
-
-
- Height nipple point
+
+ Half girth chest thirdFull measurement description
- Высота сосковой точки
+ Полуобхват груди третий
-
- height_back_angle_axilla
- Short measurement name. Don't use math symbols in name!!!!
- Взу
-
-
-
- Height back angle axilla
- Full measurement name
- Высота заднего угла подмышечной впадины
-
-
-
- Height back angle axilla
+
+ Half girth waistFull measurement description
- Высота заднего угла подмышечной впадины
+ Полуобхват талии
-
- height_scapular_point
- Short measurement name. Don't use math symbols in name!!!!
- Влоп
+
+ Half girth hips considering protruding abdomen
+ Full measurement description
+ Полуобхват бедер с учетом выступания живота
+
+
+
+ Half girth hips excluding protruding abdomen
+ Full measurement description
+ Полуобхват бедер без учета выступания живота
- Height scapular point
- Full measurement name
- Высота лопаточной точки
-
-
-
- Height scapular point
+ Girth knee flexed feetFull measurement description
- Высота лопаточной точки
+ Обхват колена в согнутом положении ноги
-
- height_under_buttock_folds
- Short measurement name. Don't use math symbols in name!!!!
- Впс
-
-
-
- Height under buttock folds
- Full measurement name
- Высота подъягодичной складки
-
-
-
- Height under buttock folds
+
+ Neck transverse diameterFull measurement description
- Высота подъягодичной складки
+ Поперечный диаметр шеи
-
- hips_excluding_protruding_abdomen
- Short measurement name. Don't use math symbols in name!!!!
- ОбI
-
-
-
- Hips excluding protruding abdomen
- Full measurement name
- Обхват бедер без учета выступания живота
+
+ Front slash shoulder height
+ Full measurement description
+ Высота плеча косая спереди
- Hips excluding protruding abdomen
+ The distance from the base of the neck to the waist line frontFull measurement description
- Обхват бедер без учета выступания живота
+ Расстояние от точки основания шеи до линии талии спереди
-
- girth_foot_instep
- Short measurement name. Don't use math symbols in name!!!!
- Ос
-
-
-
- Girth foot instep
- Full measurement name
- Обхват подъема стопы
-
-
-
- Girth foot instep
+
+ Hand vertical diameterFull measurement description
- Обхват подъема стопы
+ Вертикальный диаметр руки
-
- side_waist_to_floor
- Short measurement name. Don't use math symbols in name!!!!
- Дсб
-
-
-
- Side waist to floor
- Full measurement name
- Расстояние от линии талии до пола сбоку
-
-
-
- The distance from the side waist to floor
+
+ Distance from neck to knee pointFull measurement description
- Расстояние от линии талии до пола сбоку
+ Расстояние от шейной точки до колена
-
- front_waist_to_floor
- Short measurement name. Don't use math symbols in name!!!!
- Дсп
+
+ The distance from the waist to the knee
+ Full measurement description
+ Расстояние от линии талии до колена
+ Shoulder height
+ Full measurement description
+ Высота плеча
+
+
+
+ Head height
+ Full measurement description
+ Высота головы
+
+
+
+ Body position
+ Full measurement description
+ Положение корпуса
+
+
+
+ Arc behind the shoulder girdle
+ Full measurement description
+ Дуга плечевого пояса сзади
+
+
+
+ Distance from neck point to point on the base of the neck side neck girth measurement line
+ Full measurement description
+ Расстояние от шейной точки до точки основания шеи сбоку по линии измерения обхвата шеи
+
+
+
+ Depth waist first
+ Full measurement description
+ Глубина талии первая
+
+
+
+ Depth waist second
+ Full measurement description
+ Глубина талии вторая
+
+
+
+ MeasurementsFullNames
+
+
+ Head girth
+ Full measurement name
+ Обхват головы
+
+
+
+ Mid-neck girth
+ Full measurement name
+
+
+
+
+ Neck Base girth
+ Full measurement name
+ Обхват шеи
+
+
+
+ Head and Neck length
+ Full measurement name
+
+
+
+
+ Front Center length
+ Full measurement name
+
+
+
+
+ Back Center length
+ Full measurement name
+ Длина спины до талии с учетом выступа лопаток
+
+
+
+ Shoulder length
+ Full measurement name
+ Длина плечевого ската
+
+
+
+ Side Waist length
+ Full measurement name
+ Длина боковой части
+
+
+
+ Trunk length
+ Full measurement name
+
+
+
+
+ Shoulder girth
+ Full measurement name
+
+
+
+
+ Upper Chest girth
+ Full measurement name
+ Обхват груди первый
+
+
+
+ Bust girth
+ Full measurement name
+ Обхват груди второй
+
+
+
+ Under Bust girth
+ Full measurement name
+ Обхват груди третий
+
+
+
+ Waist girth
+ Full measurement name
+ Обхват талии
+
+
+
+ HighHip girth
+ Full measurement name
+
+
+
+
+ Hip girth
+ Full measurement name
+ Обхват бедер с учетом выступания живота
+
+
+
+ Front Upper Chest width
+ Full measurement name
+ Ширина груди первая
+
+
+
+ Front Chest width
+ Full measurement name
+ Ширина груди вторая
+
+
+
+ Front Across Shoulder width
+ Full measurement name
+ Плечевой диаметр
+
+
+
+ Back Across Shoulder width
+ Full measurement name
+
+
+
+
+ Back Upper Chest width
+ Full measurement name
+
+
+
+
+ Back Chest width
+ Full measurement name
+ Ширина спины
+
+
+
+ BustPoint to BustPoint
+ Full measurement name
+ Расстояние между сосковыми точками
+
+
+
+ Halter Bustpoint to Bustpoint
+ Full measurement name
+
+
+
+
+ NeckPoint to BustPoint
+ Full measurement name
+ Расстояние от точки основания шеи сбоку до сосковой точки (высота груди)
+
+
+
+ Crotch length
+ Full measurement name
+
+
+
+
+ Rise height
+ Full measurement name
+ Расстояние от линии талии до подъягодичной складки
+
+
+
+ Shoulder Drop
+ Full measurement name
+
+
+
+
+ Shoulder Slope degrees
+ Full measurement name
+
+
+
+
+ Front Shoulder Balance
+ Full measurement name
+
+
+
+
+ Back Shoulder Balance
+ Full measurement name
+
+
+
+
+ Front Full Length
+ Full measurement name
+
+
+
+
+ Back Full Length
+ Full measurement name
+
+
+
+
+ Front Neck arc
+ Full measurement name
+
+
+
+
+ Back Neck arc
+ Full measurement name
+
+
+
+
+ front_upper-bust_arc
+ Full measurement name
+
+
+
+
+ Back UpperBust arc
+ Full measurement name
+
+
+
+
+ Front Waist arc
+ Full measurement name
+
+
+
+
+ Back Waist arc
+ Full measurement name
+
+
+
+
+ Front UpperHip arc
+ Full measurement name
+
+
+
+
+ Back UpperHip arc
+ Full measurement name
+
+
+
+
+ Front Hip arc
+ Full measurement name
+
+
+
+
+ Back Hip arc
+ Full measurement name
+
+
+
+
+ Chest Balance
+ Full measurement name
+
+
+
+
+ Back Balance
+ Full measurement name
+
+
+
+
+ Front Waist Balance
+ Full measurement name
+
+
+
+
+ Back Waist Balance
+ Full measurement name
+
+
+
+
+ Front UpperChest height
+ Full measurement name
+
+
+
+
+ Bust height
+ Full measurement name
+
+
+
+
+ Front Upper chest waist
+ Full measurement name
+
+
+
+
+ Front waist to lower breast
+ Full measurement name
+
+
+
+
+ Back waist to upper chest
+ Full measurement name
+
+
+
+
+ Strap length
+ Full measurement name
+
+
+
+
+ Armscye Girth
+ Full measurement name
+
+
+
+
+ Elbow Girth
+ Full measurement name
+ Обхват локтя
+
+
+
+ Upperarm Girth
+ Full measurement name
+ Обхват плеча
+
+
+
+ Wrist girth
+ Full measurement name
+ Обхват запястья
+
+
+
+ Armscye depth
+ Full measurement name
+
+
+
+
+ Shoulder and Arm length
+ Full measurement name
+ Расстояние от точки основания шеи сбоку до линии обхвата запястья
+
+
+
+ Underarm length
+ Full measurement name
+
+
+
+
+ Nape to wrist length
+ Full measurement name
+
+
+
+
+ Elbow length
+ Full measurement name
+ Длина руки до локтя
+
+
+
+ Arm length
+ Full measurement name
+ Длина рукава до линии обхвата запястья
+
+
+
+ Hand width
+ Full measurement name
+
+
+
+
+ Hand length
+ Full measurement name
+
+
+
+
+ Hand girth
+ Full measurement name
+ Обхват кисти
+
+
+
+ Thigh girth
+ Full measurement name
+ Обхват бедра
+
+
+
+ Midthigh girth
+ Full measurement name
+
+
+
+
+ Knee girth
+ Full measurement name
+ Обхват колена
+
+
+
+ Calf girth
+ Full measurement name
+ Обхват икры
+
+
+
+ Ankle girth
+ Full measurement name
+ Обхват щиколотки
+
+
+
+ Knee height
+ Full measurement name
+ Высота коленной точки
+
+
+
+ Ankle height
+ Full measurement name
+
+
+
+
+ Foot width
+ Full measurement name
+
+
+
+
+ Foot length
+ Full measurement name
+
+
+
+
+ Total Height
+ Full measurement name
+
+
+
+
+ Nape height
+ Full measurement name
+ Высота точки основания шеи сзади
+
+
+
+ Nape to knee height
+ Full measurement name
+
+
+
+
+ Waist height
+ Full measurement name
+ Высота линии талии
+
+
+
+ HighHip height
+ Full measurement name
+
+
+
+
+ Hip height
+ Full measurement name
+
+
+
+
+ Waist to Hip height
+ Full measurement name
+
+
+
+
+ Waist to Knee height
+ Full measurement name
+
+
+
+
+ Crotch height/Inseam
+ Full measurement name
+ Длина ноги по внутренней поверхности
+
+
+
+ Size
+ Full measurement name
+ Размер
+
+
+
+ Height front neck base point
+ Full measurement name
+ Высота точки основания шеи спереди
+
+
+
+ Height base neck side point
+ Full measurement name
+ Высота точки основания шеи сбоку
+
+
+
+ Height shoulder point
+ Full measurement name
+ Высота плечевой точки
+
+
+
+ Height nipple point
+ Full measurement name
+ Высота сосковой точки
+
+
+
+ Height back angle axilla
+ Full measurement name
+ Высота заднего угла подмышечной впадины
+
+
+
+ Height scapular point
+ Full measurement name
+ Высота лопаточной точки
+
+
+
+ Height under buttock folds
+ Full measurement name
+ Высота подъягодичной складки
+
+
+
+ Hips excluding protruding abdomen
+ Full measurement name
+ Обхват бедер без учета выступания живота
+
+
+
+ Girth foot instep
+ Full measurement name
+ Обхват подъема стопы
+
+
+
+ Side waist to floor
+ Full measurement name
+ Расстояние от линии талии до пола сбоку
+
+
+ Front waist to floorFull measurement name
- Расстояние от линии талии до пола спереди
+ Расстояние от линии талии до пола спереди
-
- The distance from the front waist to floor
- Full measurement description
- Расстояние от линии талии до пола спереди
-
-
-
- arc_through_groin_area
- Short measurement name. Don't use math symbols in name!!!!
- Дпоб
-
-
-
+ Arc through groin areaFull measurement name
- Дуга через паховую область
+ Дуга через паховую область
+
+
+
+ Waist to plane seat
+ Full measurement name
+ Расстояние от линии талии до плоскости сидения
+
+
+
+ Neck to radial point
+ Full measurement name
+ Расстояние от точки основания шеи сбоку до лучевой точки
+
+
+
+ Neck to third finger
+ Full measurement name
+ Расстояние от точки основания шеи сбоку до конца третьего пальца
+
+
+
+ Neck to first line chest circumference
+ Full measurement name
+ Расстояние от точки основания шеи сбоку до линии обхвата груди первого спереди
+
+
+
+ Front waist length
+ Full measurement name
+ Расстояние от точки основания шеи сбоку до линии талии спереди (длани талии спереди)
+
+
+
+ Arc through shoulder joint
+ Full measurement name
+ Дуга через высшую точку плечевого сустава
+
+
+
+ Neck to back line chest circumference
+ Full measurement name
+ Расстояние от точки основания шеи сзади до линии обхватов груди первого и второго с учетом выступа лопаток
+
+
+
+ Waist to neck side
+ Full measurement name
+ Расстояние от линии талии сзади до точки основания шеи сбоку
+
+
+
+ Arc length upper body
+ Full measurement name
+ Длина дуги верхней части туловища через точку основания шеи сбоку
+
+
+
+ Chest width
+ Full measurement name
+ Ширина груди
+
+
+
+ Anteroposterior diameter hands
+ Full measurement name
+ Передне-задний диаметр руки
+
+
+
+ Height clavicular point
+ Full measurement name
+ Высота ключичной точки
+
+
+
+ Height armhole slash
+ Full measurement name
+ Расстояние от шейной точки до уровня заднего угла подмышечной впадины спереди (высота проймы косая)
+
+
+
+ Slash shoulder height
+ Full measurement name
+ Высота плеча косая
+
+
+
+ Half girth neck
+ Full measurement name
+ Полуобхват шеи
+
+
+
+ Half girth neck for shirts
+ Full measurement name
+ Полуобхват шеи для сорочек
+
+
+
+ Half girth chest first
+ Full measurement name
+ Полуобхват груди первый
+
+
+
+ Half girth chest second
+ Full measurement name
+ Полуобхват груди второй
+
+
+
+ Half girth chest third
+ Full measurement name
+ Полуобхват груди третий
+
+
+
+ Half girth waist
+ Full measurement name
+ Полуобхват талии
+
+
+
+ Half girth hips considering protruding abdomen
+ Full measurement name
+ Полуобхват бедер с учетом выступания живота
+
+
+
+ Half girth hips excluding protruding abdomen
+ Full measurement name
+ Полуобхват бедер без учета выступания живота
+
+
+
+ Girth knee flexed feet
+ Full measurement name
+ Обхват колена в согнутом положении ноги
+
+
+
+ Neck transverse diameter
+ Full measurement name
+ Поперечный диаметр шеи
+
+
+
+ Front slash shoulder height
+ Full measurement name
+ Высота плеча косая спереди
+
+
+
+ Neck to front waist line
+ Full measurement name
+ Расстояние от точки основания шеи до линии талии спереди
+
+
+
+ Hand vertical diameter
+ Full measurement name
+ Вертикальный диаметр руки
+
+
+
+ Neck to knee point
+ Full measurement name
+ Расстояние от шейной точки до колена
+
+
+
+ Waist to knee
+ Full measurement name
+ Расстояние от линии талии до колена
+
+
+
+ Shoulder height
+ Full measurement name
+ Высота плеча
+
+
+
+ Head height
+ Full measurement name
+ Высота головы
- Arc through groin area
- Full measurement description
- Дуга через паховую область
+ Body position
+ Full measurement name
+ Положение корпуса
- waist_to_plane_seat
- Short measurement name. Don't use math symbols in name!!!!
- Дс
-
-
-
- Waist to plane seat
+ Arc behind shoulder girdleFull measurement name
- Расстояние от линии талии до плоскости сидения
+ Дуга плечевого пояса сзади
-
- The distance from the waist to the plane seat
- Full measurement description
- Расстояние от линии талии до плоскости сидения
-
-
-
- neck_to_radial_point
- Short measurement name. Don't use math symbols in name!!!!
- Длуч
-
-
-
- Neck to radial point
+
+ Neck to neck baseFull measurement name
- Расстояние от точки основания шеи сбоку до лучевой точки
+ Расстояние от шейной точки до точки основания шеи сбоку по линии измерения обхвата шеи
-
- The distance from the base of the neck to the side of the radial point
- Full measurement description
- Расстояние от точки основания шеи сбоку до лучевой точки
+
+ Depth waist first
+ Full measurement name
+ Глубина талии первая
- neck_to_third_finger
- Short measurement name. Don't use math symbols in name!!!!
- ДIIIп
-
-
-
- Neck to third finger
- Full measurement name
- Расстояние от точки основания шеи сбоку до конца третьего пальца
-
-
-
- Distance from the base of the neck side point to the end of the third finger
- Full measurement description
- Расстояние от точки основания шеи сбоку до конца третьего пальца
-
-
-
- neck_to_first_line_chest_circumference
- Short measurement name. Don't use math symbols in name!!!!
- Впрп
-
-
-
- Neck to first line chest circumference
- Full measurement name
- Расстояние от точки основания шеи сбоку до линии обхвата груди первого спереди
-
-
-
- The distance from the base of the neck to the side of the first line in front of chest circumference
- Full measurement description
- Расстояние от точки основания шеи сбоку до линии обхвата груди первого спереди
-
-
-
- front_waist_length
- Short measurement name. Don't use math symbols in name!!!!
- Дтп
-
-
-
- Front waist length
- Full measurement name
- Расстояние от точки основания шеи сбоку до линии талии спереди (длани талии спереди)
-
-
-
- The distance from the base of the neck to the waist side front (waist length in the front)
- Full measurement description
- Расстояние от точки основания шеи сбоку до линии талии спереди (длани талии спереди)
-
-
-
- arc_through_shoulder_joint
- Short measurement name. Don't use math symbols in name!!!!
- Дп
-
-
-
- Arc through shoulder joint
- Full measurement name
- Дуга через высшую точку плечевого сустава
-
-
-
- Arc through the highest point of the shoulder joint
- Full measurement description
- Дуга через высшую точку плечевого сустава
-
-
-
- neck_to_back_line_chest_circumference
- Short measurement name. Don't use math symbols in name!!!!
- Впрз
-
-
-
- Neck to back line chest circumference
- Full measurement name
- Расстояние от точки основания шеи сзади до линии обхватов груди первого и второго с учетом выступа лопаток
-
-
-
- The distance from the base of the neck to the back line of chest circumference of the first and the second based on ledge vanes
- Full measurement description
- Расстояние от точки основания шеи сзади до линии обхватов груди первого и второго с учетом выступа лопаток
-
-
-
- waist_to_neck_side
- Short measurement name. Don't use math symbols in name!!!!
- ДтсI
-
-
-
- Waist to neck side
- Full measurement name
- Расстояние от линии талии сзади до точки основания шеи сбоку
-
-
-
- The distance from the waist to the back base of the neck side point
- Full measurement description
- Расстояние от линии талии сзади до точки основания шеи сбоку
-
-
-
- arc_length_upper_body
- Short measurement name. Don't use math symbols in name!!!!
- Двчт
-
-
-
- Arc length upper body
- Full measurement name
- Длина дуги верхней части туловища через точку основания шеи сбоку
-
-
-
- Arc length of the upper body through the base of the neck side point
- Full measurement description
- Длина дуги верхней части туловища через точку основания шеи сбоку
-
-
-
- chest_width
- Short measurement name. Don't use math symbols in name!!!!
- Шг
-
-
-
- Chest width
- Full measurement name
- Ширина груди
-
-
-
- Chest width
- Full measurement description
- Ширина груди
-
-
-
- anteroposterior_diameter_hands
- Short measurement name. Don't use math symbols in name!!!!
- dпзр
-
-
-
- Anteroposterior diameter hands
- Full measurement name
- Передне-задний диаметр руки
-
-
-
- Anteroposterior diameter of the hands
- Full measurement description
- Передне-задний диаметр руки
-
-
-
- height_clavicular_point
- Short measurement name. Don't use math symbols in name!!!!
- Вкт
-
-
-
- Height clavicular point
- Full measurement name
- Высота ключичной точки
-
-
-
- Height clavicular point
- Full measurement description
- Высота ключичной точки
-
-
-
- height_armhole_slash
- Short measurement name. Don't use math symbols in name!!!!
- Впрк
-
-
-
- Height armhole slash
- Full measurement name
- Расстояние от шейной точки до уровня заднего угла подмышечной впадины спереди (высота проймы косая)
-
-
-
- The distance from the point to the cervical level of the posterior angle of the front armpit (underarm height oblique)
- Full measurement description
- Расстояние от шейной точки до уровня заднего угла подмышечной впадины спереди (высота проймы косая)
-
-
-
- slash_shoulder_height
- Short measurement name. Don't use math symbols in name!!!!
- Впк
-
-
-
- Slash shoulder height
- Full measurement name
- Высота плеча косая
-
-
-
- Slash shoulder height
- Full measurement description
- Высота плеча косая
-
-
-
- half_girth_neck
- Short measurement name. Don't use math symbols in name!!!!
- Сш
-
-
-
- Half girth neck
- Full measurement name
- Полуобхват шеи
-
-
-
- Half girth neck
- Full measurement description
- Полуобхват шеи
-
-
-
- half_girth_neck_for_shirts
- Short measurement name. Don't use math symbols in name!!!!
- Сш1
-
-
-
- Half girth neck for shirts
- Full measurement name
- Полуобхват шеи для сорочек
-
-
-
- Half girth neck for shirts
- Full measurement description
- Полуобхват шеи для сорочек
-
-
-
- half_girth_chest_first
- Short measurement name. Don't use math symbols in name!!!!
- СгI
-
-
-
- Half girth chest first
- Full measurement name
- Полуобхват груди первый
-
-
-
- Half girth chest first
- Full measurement description
- Полуобхват груди первый
-
-
-
- half_girth_chest_second
- Short measurement name. Don't use math symbols in name!!!!
- СгII
-
-
-
- Half girth chest second
- Full measurement name
- Полуобхват груди второй
-
-
-
- Half girth chest second
- Full measurement description
- Полуобхват груди второй
-
-
-
- half_girth_chest_third
- Short measurement name. Don't use math symbols in name!!!!
- СгIII
-
-
-
- Half girth chest third
- Full measurement name
- Полуобхват груди третий
-
-
-
- Half girth chest third
- Full measurement description
- Полуобхват груди третий
-
-
-
- half_girth_waist
- Short measurement name. Don't use math symbols in name!!!!
- Ст
-
-
-
- Half girth waist
- Full measurement name
- Полуобхват талии
-
-
-
- Half girth waist
- Full measurement description
- Полуобхват талии
-
-
-
- half_girth_hips_considering_protruding_abdomen
- Short measurement name. Don't use math symbols in name!!!!
- Сб
-
-
-
- Half girth hips considering protruding abdomen
- Full measurement name
- Полуобхват бедер с учетом выступания живота
-
-
-
- Half girth hips considering protruding abdomen
- Full measurement description
- Полуобхват бедер с учетом выступания живота
-
-
-
- half_girth_hips_excluding_protruding_abdomen
- Short measurement name. Don't use math symbols in name!!!!
- СбI
-
-
-
- Half girth hips excluding protruding abdomen
- Full measurement name
- Полуобхват бедер без учета выступания живота
-
-
-
- Half girth hips excluding protruding abdomen
- Full measurement description
- Полуобхват бедер без учета выступания живота
-
-
-
- girth_knee_flexed_feet
- Short measurement name. Don't use math symbols in name!!!!
- Окс
-
-
-
- Girth knee flexed feet
- Full measurement name
- Обхват колена в согнутом положении ноги
-
-
-
- Girth knee flexed feet
- Full measurement description
- Обхват колена в согнутом положении ноги
-
-
-
- neck_transverse_diameter
- Short measurement name. Don't use math symbols in name!!!!
- dш
-
-
-
- Neck transverse diameter
- Full measurement name
- Поперечный диаметр шеи
-
-
-
- Neck transverse diameter
- Full measurement description
- Поперечный диаметр шеи
-
-
-
- front_slash_shoulder_height
- Short measurement name. Don't use math symbols in name!!!!
- Впкп
-
-
-
- Front slash shoulder height
- Full measurement name
- Высота плеча косая спереди
-
-
-
- Front slash shoulder height
- Full measurement description
- Высота плеча косая спереди
-
-
-
- neck_to_front_waist_line
- Short measurement name. Don't use math symbols in name!!!!
- Дтн1
-
-
-
- Neck to front waist line
- Full measurement name
- Расстояние от точки основания шеи до линии талии спереди
-
-
-
- The distance from the base of the neck to the waist line front
- Full measurement description
- Расстояние от точки основания шеи до линии талии спереди
-
-
-
- hand_vertical_diameter
- Short measurement name. Don't use math symbols in name!!!!
- dвр
-
-
-
- Hand vertical diameter
- Full measurement name
- Вертикальный диаметр руки
-
-
-
- Hand vertical diameter
- Full measurement description
- Вертикальный диаметр руки
-
-
-
- neck_to_knee_point
- Short measurement name. Don't use math symbols in name!!!!
- Дшк
-
-
-
- Neck to knee point
- Full measurement name
- Расстояние от шейной точки до колена
-
-
-
- Distance from neck to knee point
- Full measurement description
- Расстояние от шейной точки до колена
-
-
-
- waist_to_knee
- Short measurement name. Don't use math symbols in name!!!!
- Дтк
-
-
-
- Waist to knee
- Full measurement name
- Расстояние от линии талии до колена
-
-
-
- The distance from the waist to the knee
- Full measurement description
- Расстояние от линии талии до колена
-
-
-
- shoulder_height
- Short measurement name. Don't use math symbols in name!!!!
- Вп
-
-
-
- Shoulder height
- Full measurement name
- Высота плеча
-
-
-
- Shoulder height
- Full measurement description
- Высота плеча
-
-
-
- head_height
- Short measurement name. Don't use math symbols in name!!!!
- Вгол
-
-
-
- Head height
- Full measurement name
- Высота головы
-
-
-
- Head height
- Full measurement description
- Высота головы
-
-
-
- body_position
- Short measurement name. Don't use math symbols in name!!!!
- Пкор
-
-
-
- Body position
- Full measurement name
- Положение корпуса
-
-
-
- Body position
- Full measurement description
- Положение корпуса
-
-
-
- arc_behind_shoulder_girdle
- Short measurement name. Don't use math symbols in name!!!!
- Дпз
-
-
-
- Arc behind shoulder girdle
- Full measurement name
- Дуга плечевого пояса сзади
-
-
-
- Arc behind the shoulder girdle
- Full measurement description
- Дуга плечевого пояса сзади
-
-
-
- neck_to_neck_base
- Short measurement name. Don't use math symbols in name!!!!
- Дшош
-
-
-
- Neck to neck base
- Full measurement name
- Расстояние от шейной точки до точки основания шеи сбоку по линии измерения обхвата шеи
-
-
-
- Distance from neck point to point on the base of the neck side neck girth measurement line
- Full measurement description
- Расстояние от шейной точки до точки основания шеи сбоку по линии измерения обхвата шеи
-
-
-
- depth_waist_first
- Short measurement name. Don't use math symbols in name!!!!
- Гт1
-
-
-
- Depth waist first
- Full measurement name
- Глубина талии первая
-
-
-
- Depth waist first
- Full measurement description
- Глубина талии первая
-
-
-
- depth_waist_second
- Short measurement name. Don't use math symbols in name!!!!
- ГтII
-
-
- Depth waist secondFull measurement name
- Глубина талии вторая
-
-
-
- Depth waist second
- Full measurement description
- Глубина талии вторая
+ Глубина талии вторая
@@ -6737,19 +7625,19 @@ Do you want to save your changes?
PostfixOperators
-
+ cmcentimeterсм
-
+ mmmillimeterмм
-
+ ininchдюйм
@@ -6773,18 +7661,18 @@ Do you want to save your changes?
-
+ mmмм
-
-
+
+ cmсм
-
+ inchдюймы
@@ -7064,13 +7952,13 @@ Do you want to save your changes?
-
+ Can't find objectНе могу найти объект
-
+ Can't cast objectНе можете привести объект
@@ -7130,14 +8018,18 @@ Do you want to save your changes?
- Validation error in line %1 column %2
- Ошибка валидации линия %1 столбик %2
+ Validation error file %3 in line %1 column %2
+
- Parsing error in line %1 column %2
+ Parsing error file %3 in line %1 column %2
+
+ Validation error in line %1 column %2
+ Ошибка валидации линия %1 столбик %2
+ Parcing error in line %1 column %2Ошибка разбора линия %1 столбец %2
@@ -7502,6 +8394,11 @@ Do you want to save your changes?
This id is not unique.Этот id не уникальный.
+
+
+ File error.
+ Ошибка файла.
+ VSplinePath
@@ -7737,31 +8634,31 @@ Do you want to save your changes?
Variables
-
+ Line_Left symbol _ in nameЛиния_
-
+ AngleLine_Left symbol _ in nameУголЛинии_
-
+ Arc_Left symbol _ in nameДуга_
-
+ Spl_Left symbol _ in nameСпл_
-
+ SplPathСлСпл_
@@ -7785,12 +8682,12 @@ Do you want to save your changes?
main
-
+ Pattern making program.
-
+ Pattern file.
diff --git a/src/app/share/translations/valentina_uk_UA.ts b/src/app/share/translations/valentina_uk_UA.ts
index c1c2cb77b..98c8416e1 100644
--- a/src/app/share/translations/valentina_uk_UA.ts
+++ b/src/app/share/translations/valentina_uk_UA.ts
@@ -3200,151 +3200,151 @@
Functions
-
+ sinsine function
-
+ coscosine function
-
+ tantangens function
-
+ asinarcus sine function
-
+ acosarcus cosine function
-
+ atanarcus tangens function
-
+ sinhhyperbolic sine function
-
+ coshhyperbolic cosine
-
+ tanhhyperbolic tangens function
-
+ asinhhyperbolic arcus sine function
-
+ acoshhyperbolic arcus tangens function
-
+ atanhhyperbolic arcur tangens function
-
+ log2logarithm to the base 2
-
+ log10logarithm to the base 10
-
+ loglogarithm to the base 10
-
+ lnlogarithm to base e (2.71828...)
-
+ expe raised to the power of x
-
+ sqrtsquare root of a value
-
+ signsign function -1 if x<0; 1 if x>0
-
+ rintround to nearest integer
-
+ absabsolute value
-
+ minmin of all argumentsхв
-
+ maxmax of all arguments
-
+ sumsum of all arguments
-
+ avgmean value of all arguments
@@ -3981,37 +3981,37 @@
-
+ Wrong units.
-
+ Application doesn't support standard table with inches.
-
+ File error.
-
+ The measurements file <br/><br/> <b>%1</b> <br/><br/> %3
-
+ could not be found. Do you want to update the file location
-
+ Standard measurements (*.vst)
-
+ Individual measurements (*.vit)
@@ -4079,7 +4079,7 @@
-
+ Open fileВідкрити файл
@@ -4232,7 +4232,7 @@ Do you want to save your changes?
Не можу прочитати файл%1:\n%2.
-
+ File loadedФайл завантажено
@@ -4294,77 +4294,29 @@ Do you want to save your changes?
Measurements
-
+ head_girthShort measurement name. Don't use math symbols in name!!!!
-
- Head girth
- Full measurement name
-
-
-
-
- Around fullest part of Head
- Full measurement description
-
-
-
-
+ mid_neck_girthShort measurement name. Don't use math symbols in name!!!!
-
- Mid-neck girth
- Full measurement name
-
-
-
-
- Around middle part of Neck
- Full measurement description
-
-
-
-
+ neck_base_girthShort measurement name. Don't use math symbols in name!!!!
-
- Neck Base girth
- Full measurement name
-
-
-
-
- Around Neck at base
- Full measurement description
-
-
-
-
+ head_and_neck_lengthShort measurement name. Don't use math symbols in name!!!!
-
-
- Head and Neck length
- Full measurement name
-
-
-
-
- Vertical Distance from Crown to Nape
- Full measurement description
-
- center_front_waist_length
@@ -4372,9 +4324,814 @@ Do you want to save your changes?
-
- Front Center length
+
+ center_back_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ side_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ trunk_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_chest_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ bust_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ under_bust_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ high_hip_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hip_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_front_chest_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_chest_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ across_front_shoulder_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ across_back_shoulder_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_back_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ bustpoint_to_bustpoint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ halter_bustpoint_to_bustpoint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_bustpoint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ crotch_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ rise_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_drop
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_slope_degrees
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_shoulder_slope_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_shoulder_slope_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_shoulder_to_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_shoulder_to_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_neck_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_neck_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_upper_chest_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_upper_chest_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_waist_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_upper_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_upper_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_hip_arc
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ chest_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_waist_slope
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_neck_to_upper_chest_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_neck_to_bust_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_to_upper_chest
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_to_lower_breast
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ back_waist_to_upper_chest
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ strap_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ armscye_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ elbow_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ upper_arm_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ wrist_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ scye_depth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_and_arm_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ underarm_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ cervicale_to_wrist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_to_elbow_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arm_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ thigh_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ mid_thigh_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ knee_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ calf_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ ankle_girth
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ knee_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ ankle_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ foot_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ foot_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ cervicale_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ cervicale_to_knee_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ high_hip_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hip_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ Hip side to Floor
+ Full measurement description
+
+
+
+
+ waist_to_hip_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_knee_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ crotch_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ size
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+ SizeFull measurement name
+ Розмір
+
+
+ Size
+ Full measurement description
+ Розмір
+
+
+
+ height_front_neck_base_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_base_neck_side_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_shoulder_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_nipple_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_back_angle_axilla
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_scapular_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_under_buttock_folds
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hips_excluding_protruding_abdomen
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ girth_foot_instep
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ side_waist_to_floor
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_to_floor
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_through_groin_area
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_plane_seat
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_radial_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_third_finger
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_first_line_chest_circumference
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_waist_length
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_through_shoulder_joint
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_back_line_chest_circumference
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_neck_side
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_length_upper_body
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ chest_width
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ anteroposterior_diameter_hands
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_clavicular_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ height_armhole_slash
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ slash_shoulder_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_neck
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_neck_for_shirts
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_chest_first
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_chest_second
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_chest_third
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_waist
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_hips_considering_protruding_abdomen
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ half_girth_hips_excluding_protruding_abdomen
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ girth_knee_flexed_feet
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_transverse_diameter
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ front_slash_shoulder_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_front_waist_line
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ hand_vertical_diameter
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_knee_point
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ waist_to_knee
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ shoulder_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ head_height
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ body_position
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ arc_behind_shoulder_girdle
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ neck_to_neck_base
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ depth_waist_first
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ depth_waist_second
+ Short measurement name. Don't use math symbols in name!!!!
+
+
+
+
+ MeasurementsDescriptions
+
+
+ Around fullest part of Head
+ Full measurement description
+
+
+
+
+ Around middle part of Neck
+ Full measurement description
+
+
+
+
+ Around Neck at base
+ Full measurement description
+
+
+
+
+ Vertical Distance from Crown to Nape
+ Full measurement description
@@ -4385,2234 +5142,1565 @@ Do you want to save your changes?
- center_back_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Center length
- Full measurement name
-
-
-
- Back Neck Center to Back Waist CenterFull measurement description
-
- shoulder_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder length
- Full measurement name
-
-
-
-
+ NeckPoint to ShoulderTipFull measurement description
-
- side_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Side Waist length
- Full measurement name
-
-
-
-
+ Armpit to Waist sideFull measurement description
-
- trunk_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Trunk length
- Full measurement name
-
-
-
-
+ Around Body from middle of Shoulder length to BustPoint to Crotch up back to beginning pointFull measurement description
-
- shoulder_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder girth
- Full measurement name
-
-
-
-
+ Around Arms and Torso, at bicep level parallel to floor, with arms hanging at the sidesFull measurement description
-
- upper_chest_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Upper Chest girth
- Full measurement name
-
-
-
-
+ Around Chest at Armfold level, will be parallel to floor across back, will not be parallel to floor across front chestFull measurement description
-
- bust_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Bust girth
- Full measurement name
-
-
-
-
+ Around fullest part of Bust, parallel to floorFull measurement description
-
- under_bust_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Under Bust girth
- Full measurement name
-
-
-
-
+ Around Chest below the Bust, parallel to floorFull measurement description
-
- waist_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist girth
- Full measurement name
-
-
-
-
+ Tie a string around smallest part of waist, keep string tied while taking meaasurements. Not usually parallel to floor for front waist or back waist.Full measurement description
-
- high_hip_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- HighHip girth
- Full measurement name
-
-
-
-
+ Around HighHip, parallel to floorFull measurement description
-
- hip_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hip girth
- Full measurement name
-
-
-
-
+ Around Hip, parallel to floorFull measurement description
-
- upper_front_chest_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Upper Chest width
- Full measurement name
-
-
-
-
+ Across Front UpperChest, smallest width from armscye to armscyeFull measurement description
-
- front_chest_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Chest width
- Full measurement name
-
-
-
-
+ Across Front Chest, from armfold to armfoldFull measurement description
-
- across_front_shoulder_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Across Shoulder width
- Full measurement name
-
-
-
-
+ From ShoulderTip to ShoulderTip, across FrontFull measurement description
-
- across_back_shoulder_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Across Shoulder width
- Full measurement name
-
-
-
-
+ From ShoulderTip to ShoulderTip, across BackFull measurement description
-
- Back Upper Chest width
- Full measurement name
-
-
-
-
+ Across Back UpperChest, smallest width from armscye to armscyeFull measurement description
-
- upper_back_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- back_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Chest width
- Full measurement name
-
-
-
-
+ Across Back Chest, from armfold to armfoldFull measurement description
-
- bustpoint_to_bustpoint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- BustPoint to BustPoint
- Full measurement name
-
-
-
-
+ Distance between BustPoints, across ChestFull measurement description
-
- halter_bustpoint_to_bustpoint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Halter Bustpoint to Bustpoint
- Full measurement name
-
-
-
-
+ Distance from Bustpoint, behind neck, down to BustpointFull measurement description
-
- neck_to_bustpoint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- NeckPoint to BustPoint
- Full measurement name
-
-
-
-
+ From NeckPoint to BustPointFull measurement description
-
- crotch_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Crotch length
- Full measurement name
-
-
-
-
+ From Front Waist Center, down to crotch, up to Back Waist CenterFull measurement description
-
- rise_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Rise height
- Full measurement name
-
-
-
-
+ Sit on hard chair, measure from side waist straight down to chair bottomFull measurement description
-
- shoulder_drop
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder Drop
- Full measurement name
-
-
-
-
+ Vertical Distance from NeckPoint level to ShoulderTip levelFull measurement description
-
- shoulder_slope_degrees
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder Slope degrees
- Full measurement name
-
-
-
-
+ Degrees of angle from NeckPoint to ShoulderTip – requires goniometerFull measurement description
-
- front_shoulder_slope_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Shoulder Balance
- Full measurement name
-
-
-
-
+ ShoulderTip to Front Waist CenterFull measurement description
-
- back_shoulder_slope_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Shoulder Balance
- Full measurement name
-
-
-
-
+ ShoulderTip to Back Waist CenterFull measurement description
-
- front_shoulder_to_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Full Length
- Full measurement name
-
-
-
-
+ NeckPoint straight down front chest to WaistlineFull measurement description
-
- back_shoulder_to_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Full Length
- Full measurement name
-
-
-
-
+ Back NeckPoint straight down back chest to WaistlineFull measurement description
-
- front_neck_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Neck arc
- Full measurement name
-
-
-
-
+ NeckPoint to NeckPoint through Front Neck CenterFull measurement description
-
- back_neck_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Neck arc
- Full measurement name
-
-
-
-
+ NeckPoint to NeckPoint across NapeFull measurement description
-
- front_upper_chest_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- front_upper-bust_arc
- Full measurement name
-
-
-
-
+ front_upper-bust_arcFull measurement description
-
- back_upper_chest_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back UpperBust arc
- Full measurement name
-
-
-
-
+ Back UpperBust side to sideFull measurement description
-
- front_waist_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Waist arc
- Full measurement name
-
-
-
-
+ Front Waist side to sideFull measurement description
-
- back_waist_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Waist arc
- Full measurement name
-
-
-
-
+ Back Waist side to sideFull measurement description
-
- front_upper_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front UpperHip arc
- Full measurement name
-
-
-
-
+ Front UpperHip side to sideFull measurement description
-
- back_upper_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back UpperHip arc
- Full measurement name
-
-
-
-
+ Back UpperHip side to sideFull measurement description
-
- front_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Hip arc
- Full measurement name
-
-
-
-
+ Front Hip side to sideFull measurement description
-
- back_hip_arc
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Hip arc
- Full measurement name
-
-
-
-
+ Back Hip side to sideFull measurement description
-
- chest_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Chest Balance
- Full measurement name
-
-
-
-
+ NeckPoint to Front ArmfoldPointFull measurement description
-
- back_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Balance
- Full measurement name
-
-
-
-
+ NeckPoint to Back ArmfoldPointFull measurement description
-
- front_waist_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front Waist Balance
- Full measurement name
-
-
-
-
+ NeckPoint across Front Chest to Waist sideFull measurement description
-
- back_waist_slope
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Back Waist Balance
- Full measurement name
-
-
-
-
+ NeckPoint across Back Chest to Waist sideFull measurement description
-
- front_neck_to_upper_chest_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front UpperChest height
- Full measurement name
-
-
-
-
+ Front Neck Center straight down to UpperChest lineFull measurement description
-
- front_neck_to_bust_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Bust height
- Full measurement name
-
-
-
-
+ Front Neck Center straight down to Bust lineFull measurement description
-
- armscye_girth
- Short measurement name. Don't use math symbols in name!!!!
+
+ Front Upper chest waist
+ Full measurement description
-
- Armscye Girth
- Full measurement name
+
+ Front waist to lower breast
+ Full measurement description
-
+
+ Back waist to upper chest
+ Full measurement description
+
+
+
+
+ Strap length
+ Full measurement description
+
+
+
+ Around ArmscyeFull measurement description
-
- elbow_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Elbow Girth
- Full measurement name
-
-
-
-
+ Around Elbow with elbow bentFull measurement description
-
- upper_arm_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Upperarm Girth
- Full measurement name
-
-
-
-
+ Around UpperArmFull measurement description
-
- wrist_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Wrist girth
- Full measurement name
-
-
-
-
+ Around WristFull measurement description
-
- scye_depth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Armscye depth
- Full measurement name
-
-
-
-
+ Nape straight down to UnderBust line (same as Back UpperBust height)Full measurement description
-
- shoulder_and_arm_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder and Arm length
- Full measurement name
-
-
-
-
+ NeckPoint to ShoulderTip to Wrist, with elbow bent and hand on hipFull measurement description
-
- underarm_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Underarm length
- Full measurement name
-
-
-
-
+ Armpit to Wrist, with arm straight and hanging at sideFull measurement description
-
- cervicale_to_wrist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Nape to wrist length
- Full measurement name
-
-
-
-
+ Nape to Wrist, with elbow bent and hand on hipFull measurement description
-
- shoulder_to_elbow_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Elbow length
- Full measurement name
-
-
-
-
+ ShoulderTip to Elbow, with elbow bent and hand on hipFull measurement description
-
- arm_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arm length
- Full measurement name
-
-
-
-
+ ShoulderTip to Wrist, with elbow bent and hand on hipFull measurement description
-
- hand_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand width
- Full measurement name
-
-
-
-
+ Hand side to sideFull measurement description
-
- hand_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand length
- Full measurement name
-
-
-
-
+ Hand Middle Finger tip to wristFull measurement description
-
- hand_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand girth
- Full measurement name
-
-
-
-
+ Around HandFull measurement description
-
- thigh_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Thigh girth
- Full measurement name
-
-
-
-
+ Around ThighFull measurement description
-
- mid_thigh_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Midthigh girth
- Full measurement name
-
-
-
-
+ Around MidThighFull measurement description
-
- knee_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Knee girth
- Full measurement name
-
-
-
-
+ Around KneeFull measurement description
-
- calf_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Calf girth
- Full measurement name
-
-
-
-
+ Around CalfFull measurement description
-
- ankle_girth
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Ankle girth
- Full measurement name
-
-
-
-
+ Around AnkleFull measurement description
-
- knee_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Knee height
- Full measurement name
-
-
-
-
+ Knee to FloorFull measurement description
-
- ankle_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Ankle height
- Full measurement name
-
-
-
-
+ Ankle to FloorFull measurement description
-
- foot_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Foot width
- Full measurement name
-
-
-
-
+ Widest part of Foot side to sideFull measurement description
-
- foot_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Foot length
- Full measurement name
-
-
-
-
+ Tip of Longest Toe straight to back of heelFull measurement description
-
- height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Total Height
- Full measurement name
-
-
-
-
+ Top of head to floorFull measurement description
-
- cervicale_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Nape height
- Full measurement name
-
-
-
-
+ Nape to FloorFull measurement description
-
- cervicale_to_knee_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Nape to knee height
- Full measurement name
-
-
-
-
+ Nape to KneeFull measurement description
-
- waist_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist height
- Full measurement name
-
-
-
-
+ Waist side to floorFull measurement description
-
- high_hip_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- HighHip height
- Full measurement name
-
-
-
-
+ HighHip side to FloorFull measurement description
-
- hip_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hip height
- Full measurement name
-
-
-
-
- Hip side to Floor
- Full measurement description
-
-
-
-
- waist_to_hip_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to Hip height
- Full measurement name
-
-
-
-
+ Waist side to HipFull measurement description
-
- waist_to_knee_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to Knee height
- Full measurement name
-
-
-
-
+ Waist side to KneeFull measurement description
-
- crotch_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Crotch height/Inseam
- Full measurement name
-
-
-
-
+ Crotch to Floor along inside legFull measurement description
-
- size
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Size
- Full measurement name
- Розмір
-
-
-
+ SizeFull measurement descriptionРозмір
-
- height_front_neck_base_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height front neck base point
- Full measurement name
-
-
-
-
+ Height of the point base of the neck in frontFull measurement description
-
- height_base_neck_side_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height base neck side point
- Full measurement name
-
-
-
-
+ Height of the base of the neck side pointFull measurement description
-
- height_shoulder_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height shoulder point
- Full measurement name
-
-
-
-
+ The height of the shoulder pointFull measurement description
-
- height_nipple_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height nipple point
- Full measurement name
-
-
-
-
+ Height nipple pointFull measurement description
-
- height_back_angle_axilla
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height back angle axilla
- Full measurement name
-
-
-
-
+ Height back angle axillaFull measurement description
-
- height_scapular_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height scapular point
- Full measurement name
-
-
-
-
+ Height scapular pointFull measurement description
-
- height_under_buttock_folds
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height under buttock folds
- Full measurement name
-
-
-
-
+ Height under buttock foldsFull measurement description
-
- hips_excluding_protruding_abdomen
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hips excluding protruding abdomen
- Full measurement name
-
-
-
-
+ Hips excluding protruding abdomenFull measurement description
-
- girth_foot_instep
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Girth foot instep
- Full measurement name
-
-
-
-
+ Girth foot instepFull measurement description
-
- side_waist_to_floor
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Side waist to floor
- Full measurement name
-
-
-
-
+ The distance from the side waist to floorFull measurement description
-
- front_waist_to_floor
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front waist to floor
- Full measurement name
-
-
-
-
+ The distance from the front waist to floorFull measurement description
-
- arc_through_groin_area
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc through groin area
- Full measurement name
-
-
-
-
+ Arc through groin areaFull measurement description
-
- waist_to_plane_seat
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to plane seat
- Full measurement name
-
-
-
-
+ The distance from the waist to the plane seatFull measurement description
-
- neck_to_radial_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to radial point
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the side of the radial pointFull measurement description
-
- neck_to_third_finger
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to third finger
- Full measurement name
-
-
-
-
+ Distance from the base of the neck side point to the end of the third fingerFull measurement description
-
- neck_to_first_line_chest_circumference
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to first line chest circumference
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the side of the first line in front of chest circumferenceFull measurement description
-
- front_waist_length
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front waist length
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the waist side front (waist length in the front)Full measurement description
-
- arc_through_shoulder_joint
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc through shoulder joint
- Full measurement name
-
-
-
-
+ Arc through the highest point of the shoulder jointFull measurement description
-
- neck_to_back_line_chest_circumference
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to back line chest circumference
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the back line of chest circumference of the first and the second based on ledge vanesFull measurement description
-
- waist_to_neck_side
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to neck side
- Full measurement name
-
-
-
-
+ The distance from the waist to the back base of the neck side pointFull measurement description
-
- arc_length_upper_body
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc length upper body
- Full measurement name
-
-
-
-
+ Arc length of the upper body through the base of the neck side pointFull measurement description
-
- chest_width
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Chest width
- Full measurement name
-
-
-
-
+ Chest widthFull measurement description
-
- anteroposterior_diameter_hands
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Anteroposterior diameter hands
- Full measurement name
-
-
-
-
+ Anteroposterior diameter of the handsFull measurement description
-
- height_clavicular_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height clavicular point
- Full measurement name
-
-
-
-
+ Height clavicular pointFull measurement description
-
- height_armhole_slash
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Height armhole slash
- Full measurement name
-
-
-
-
+ The distance from the point to the cervical level of the posterior angle of the front armpit (underarm height oblique)Full measurement description
-
- slash_shoulder_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Slash shoulder height
- Full measurement name
-
-
-
-
+ Slash shoulder heightFull measurement description
-
- half_girth_neck
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth neck
- Full measurement name
-
-
-
-
+ Half girth neckFull measurement description
-
- half_girth_neck_for_shirts
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth neck for shirts
- Full measurement name
-
-
-
-
+ Half girth neck for shirtsFull measurement description
-
- half_girth_chest_first
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth chest first
- Full measurement name
-
-
-
-
+ Half girth chest firstFull measurement description
-
- half_girth_chest_second
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth chest second
- Full measurement name
-
-
-
-
+ Half girth chest secondFull measurement description
-
- half_girth_chest_third
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth chest third
- Full measurement name
-
-
-
-
+ Half girth chest thirdFull measurement description
-
- half_girth_waist
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth waist
- Full measurement name
-
-
-
-
+ Half girth waistFull measurement description
-
- half_girth_hips_considering_protruding_abdomen
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth hips considering protruding abdomen
- Full measurement name
-
-
-
-
+ Half girth hips considering protruding abdomenFull measurement description
-
- half_girth_hips_excluding_protruding_abdomen
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Half girth hips excluding protruding abdomen
- Full measurement name
-
-
-
-
+ Half girth hips excluding protruding abdomenFull measurement description
-
- girth_knee_flexed_feet
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Girth knee flexed feet
- Full measurement name
-
-
-
-
+ Girth knee flexed feetFull measurement description
-
- neck_transverse_diameter
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck transverse diameter
- Full measurement name
-
-
-
-
+ Neck transverse diameterFull measurement description
-
- front_slash_shoulder_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Front slash shoulder height
- Full measurement name
-
-
-
-
+ Front slash shoulder heightFull measurement description
-
- neck_to_front_waist_line
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to front waist line
- Full measurement name
-
-
-
-
+ The distance from the base of the neck to the waist line frontFull measurement description
-
- hand_vertical_diameter
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Hand vertical diameter
- Full measurement name
-
-
-
-
+ Hand vertical diameterFull measurement description
-
- neck_to_knee_point
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to knee point
- Full measurement name
-
-
-
-
+ Distance from neck to knee pointFull measurement description
-
- waist_to_knee
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Waist to knee
- Full measurement name
-
-
-
-
+ The distance from the waist to the kneeFull measurement description
-
- shoulder_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Shoulder height
- Full measurement name
-
-
-
-
+ Shoulder heightFull measurement description
-
- head_height
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Head height
- Full measurement name
-
-
-
-
+ Head heightFull measurement description
-
- body_position
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Body position
- Full measurement name
-
-
-
-
+ Body positionFull measurement description
-
- arc_behind_shoulder_girdle
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Arc behind shoulder girdle
- Full measurement name
-
-
-
-
+ Arc behind the shoulder girdleFull measurement description
-
- neck_to_neck_base
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Neck to neck base
- Full measurement name
-
-
-
-
+ Distance from neck point to point on the base of the neck side neck girth measurement lineFull measurement description
-
- depth_waist_first
- Short measurement name. Don't use math symbols in name!!!!
-
-
-
-
- Depth waist first
- Full measurement name
-
-
-
-
+ Depth waist firstFull measurement description
-
- depth_waist_second
- Short measurement name. Don't use math symbols in name!!!!
+
+ Depth waist second
+ Full measurement description
+
+
+ MeasurementsFullNames
-
- Depth waist second
+
+ Head girthFull measurement name
-
+
+ Mid-neck girth
+ Full measurement name
+
+
+
+
+ Neck Base girth
+ Full measurement name
+
+
+
+
+ Head and Neck length
+ Full measurement name
+
+
+
+
+ Front Center length
+ Full measurement name
+
+
+
+
+ Back Center length
+ Full measurement name
+
+
+
+
+ Shoulder length
+ Full measurement name
+
+
+
+
+ Side Waist length
+ Full measurement name
+
+
+
+
+ Trunk length
+ Full measurement name
+
+
+
+
+ Shoulder girth
+ Full measurement name
+
+
+
+
+ Upper Chest girth
+ Full measurement name
+
+
+
+
+ Bust girth
+ Full measurement name
+
+
+
+
+ Under Bust girth
+ Full measurement name
+
+
+
+
+ Waist girth
+ Full measurement name
+
+
+
+
+ HighHip girth
+ Full measurement name
+
+
+
+
+ Hip girth
+ Full measurement name
+
+
+
+
+ Front Upper Chest width
+ Full measurement name
+
+
+
+
+ Front Chest width
+ Full measurement name
+
+
+
+
+ Front Across Shoulder width
+ Full measurement name
+
+
+
+
+ Back Across Shoulder width
+ Full measurement name
+
+
+
+
+ Back Upper Chest width
+ Full measurement name
+
+
+
+
+ Back Chest width
+ Full measurement name
+
+
+
+
+ BustPoint to BustPoint
+ Full measurement name
+
+
+
+
+ Halter Bustpoint to Bustpoint
+ Full measurement name
+
+
+
+
+ NeckPoint to BustPoint
+ Full measurement name
+
+
+
+
+ Crotch length
+ Full measurement name
+
+
+
+
+ Rise height
+ Full measurement name
+
+
+
+
+ Shoulder Drop
+ Full measurement name
+
+
+
+
+ Shoulder Slope degrees
+ Full measurement name
+
+
+
+
+ Front Shoulder Balance
+ Full measurement name
+
+
+
+
+ Back Shoulder Balance
+ Full measurement name
+
+
+
+
+ Front Full Length
+ Full measurement name
+
+
+
+
+ Back Full Length
+ Full measurement name
+
+
+
+
+ Front Neck arc
+ Full measurement name
+
+
+
+
+ Back Neck arc
+ Full measurement name
+
+
+
+
+ front_upper-bust_arc
+ Full measurement name
+
+
+
+
+ Back UpperBust arc
+ Full measurement name
+
+
+
+
+ Front Waist arc
+ Full measurement name
+
+
+
+
+ Back Waist arc
+ Full measurement name
+
+
+
+
+ Front UpperHip arc
+ Full measurement name
+
+
+
+
+ Back UpperHip arc
+ Full measurement name
+
+
+
+
+ Front Hip arc
+ Full measurement name
+
+
+
+
+ Back Hip arc
+ Full measurement name
+
+
+
+
+ Chest Balance
+ Full measurement name
+
+
+
+
+ Back Balance
+ Full measurement name
+
+
+
+
+ Front Waist Balance
+ Full measurement name
+
+
+
+
+ Back Waist Balance
+ Full measurement name
+
+
+
+
+ Front UpperChest height
+ Full measurement name
+
+
+
+
+ Bust height
+ Full measurement name
+
+
+
+
+ Front Upper chest waist
+ Full measurement name
+
+
+
+
+ Front waist to lower breast
+ Full measurement name
+
+
+
+
+ Back waist to upper chest
+ Full measurement name
+
+
+
+
+ Strap length
+ Full measurement name
+
+
+
+
+ Armscye Girth
+ Full measurement name
+
+
+
+
+ Elbow Girth
+ Full measurement name
+
+
+
+
+ Upperarm Girth
+ Full measurement name
+
+
+
+
+ Wrist girth
+ Full measurement name
+
+
+
+
+ Armscye depth
+ Full measurement name
+
+
+
+
+ Shoulder and Arm length
+ Full measurement name
+
+
+
+
+ Underarm length
+ Full measurement name
+
+
+
+
+ Nape to wrist length
+ Full measurement name
+
+
+
+
+ Elbow length
+ Full measurement name
+
+
+
+
+ Arm length
+ Full measurement name
+
+
+
+
+ Hand width
+ Full measurement name
+
+
+
+
+ Hand length
+ Full measurement name
+
+
+
+
+ Hand girth
+ Full measurement name
+
+
+
+
+ Thigh girth
+ Full measurement name
+
+
+
+
+ Midthigh girth
+ Full measurement name
+
+
+
+
+ Knee girth
+ Full measurement name
+
+
+
+
+ Calf girth
+ Full measurement name
+
+
+
+
+ Ankle girth
+ Full measurement name
+
+
+
+
+ Knee height
+ Full measurement name
+
+
+
+
+ Ankle height
+ Full measurement name
+
+
+
+
+ Foot width
+ Full measurement name
+
+
+
+
+ Foot length
+ Full measurement name
+
+
+
+
+ Total Height
+ Full measurement name
+
+
+
+
+ Nape height
+ Full measurement name
+
+
+
+
+ Nape to knee height
+ Full measurement name
+
+
+
+
+ Waist height
+ Full measurement name
+
+
+
+
+ HighHip height
+ Full measurement name
+
+
+
+
+ Hip height
+ Full measurement name
+
+
+
+
+ Waist to Hip height
+ Full measurement name
+
+
+
+
+ Waist to Knee height
+ Full measurement name
+
+
+
+
+ Crotch height/Inseam
+ Full measurement name
+
+
+
+
+ Size
+ Full measurement name
+ Розмір
+
+
+
+ Height front neck base point
+ Full measurement name
+
+
+
+
+ Height base neck side point
+ Full measurement name
+
+
+
+
+ Height shoulder point
+ Full measurement name
+
+
+
+
+ Height nipple point
+ Full measurement name
+
+
+
+
+ Height back angle axilla
+ Full measurement name
+
+
+
+
+ Height scapular point
+ Full measurement name
+
+
+
+
+ Height under buttock folds
+ Full measurement name
+
+
+
+
+ Hips excluding protruding abdomen
+ Full measurement name
+
+
+
+
+ Girth foot instep
+ Full measurement name
+
+
+
+
+ Side waist to floor
+ Full measurement name
+
+
+
+
+ Front waist to floor
+ Full measurement name
+
+
+
+
+ Arc through groin area
+ Full measurement name
+
+
+
+
+ Waist to plane seat
+ Full measurement name
+
+
+
+
+ Neck to radial point
+ Full measurement name
+
+
+
+
+ Neck to third finger
+ Full measurement name
+
+
+
+
+ Neck to first line chest circumference
+ Full measurement name
+
+
+
+
+ Front waist length
+ Full measurement name
+
+
+
+
+ Arc through shoulder joint
+ Full measurement name
+
+
+
+
+ Neck to back line chest circumference
+ Full measurement name
+
+
+
+
+ Waist to neck side
+ Full measurement name
+
+
+
+
+ Arc length upper body
+ Full measurement name
+
+
+
+
+ Chest width
+ Full measurement name
+
+
+
+
+ Anteroposterior diameter hands
+ Full measurement name
+
+
+
+
+ Height clavicular point
+ Full measurement name
+
+
+
+
+ Height armhole slash
+ Full measurement name
+
+
+
+
+ Slash shoulder height
+ Full measurement name
+
+
+
+
+ Half girth neck
+ Full measurement name
+
+
+
+
+ Half girth neck for shirts
+ Full measurement name
+
+
+
+
+ Half girth chest first
+ Full measurement name
+
+
+
+
+ Half girth chest second
+ Full measurement name
+
+
+
+
+ Half girth chest third
+ Full measurement name
+
+
+
+
+ Half girth waist
+ Full measurement name
+
+
+
+
+ Half girth hips considering protruding abdomen
+ Full measurement name
+
+
+
+
+ Half girth hips excluding protruding abdomen
+ Full measurement name
+
+
+
+
+ Girth knee flexed feet
+ Full measurement name
+
+
+
+
+ Neck transverse diameter
+ Full measurement name
+
+
+
+
+ Front slash shoulder height
+ Full measurement name
+
+
+
+
+ Neck to front waist line
+ Full measurement name
+
+
+
+
+ Hand vertical diameter
+ Full measurement name
+
+
+
+
+ Neck to knee point
+ Full measurement name
+
+
+
+
+ Waist to knee
+ Full measurement name
+
+
+
+
+ Shoulder height
+ Full measurement name
+
+
+
+
+ Head height
+ Full measurement name
+
+
+
+
+ Body position
+ Full measurement name
+
+
+
+
+ Arc behind shoulder girdle
+ Full measurement name
+
+
+
+
+ Neck to neck base
+ Full measurement name
+
+
+
+
+ Depth waist first
+ Full measurement name
+
+
+
+ Depth waist second
- Full measurement description
+ Full measurement name
@@ -6727,19 +6815,19 @@ Do you want to save your changes?
PostfixOperators
-
+ cmcentimeter
-
+ mmmillimeter
-
+ ininch
@@ -6763,18 +6851,18 @@ Do you want to save your changes?
-
+ mm
-
-
+
+ cm
-
+ inch
@@ -7041,13 +7129,13 @@ Do you want to save your changes?
-
+ Can't find objectНе можу знайти об'єкт
-
+ Can't cast object
@@ -7108,12 +7196,12 @@ Do you want to save your changes?
- Validation error in line %1 column %2
+ Validation error file %3 in line %1 column %2
- Parsing error in line %1 column %2
+ Parsing error file %3 in line %1 column %2
@@ -7476,6 +7564,11 @@ Do you want to save your changes?
This id is not unique.Цей id не унікальний.
+
+
+ File error.
+
+ VSplinePath
@@ -7711,31 +7804,31 @@ Do you want to save your changes?
Variables
-
+ Line_Left symbol _ in name
-
+ AngleLine_Left symbol _ in name
-
+ Arc_Left symbol _ in name
-
+ Spl_Left symbol _ in name
-
+ SplPath
@@ -7759,12 +7852,12 @@ Do you want to save your changes?
main
-
+ Pattern making program.
-
+ Pattern file.
diff --git a/src/app/widgets/vapplication.cpp b/src/app/widgets/vapplication.cpp
index 30f0543fa..c84f19bf9 100644
--- a/src/app/widgets/vapplication.cpp
+++ b/src/app/widgets/vapplication.cpp
@@ -269,6 +269,15 @@ void VApplication::InitLineWidth()
_widthHairLine = _widthMainLine/3.0;
}
+//---------------------------------------------------------------------------------------------------------------------
+void VApplication::InitMeasurement(const QString &name, const VTranslation &m, const VTranslation &g,
+ const VTranslation &d)
+{
+ measurements.insert(name, m);
+ guiTexts.insert(name, g);
+ descriptions.insert(name, d);
+}
+
//---------------------------------------------------------------------------------------------------------------------
void VApplication::InitMeasurements()
{
@@ -282,1230 +291,902 @@ void VApplication::InitMeasurements()
// head_and_neck
m = VTranslation::translate("Measurements", "head_girth",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Head girth", "Full measurement name");
- d = VTranslation::translate("Measurements", "Around fullest part of Head", "Full measurement description");
-
- measurements.insert(headGirth_M, m);
- guiTexts.insert(headGirth_M, g);
- descriptions.insert(headGirth_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Head girth", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Around fullest part of Head",
+ "Full measurement description");
+ InitMeasurement(headGirth_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "mid_neck_girth",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Mid-neck girth", "Full measurement name");
- d = VTranslation::translate("Measurements", "Around middle part of Neck", "Full measurement description");
-
- measurements.insert(midNeckGirth_M, m);
- guiTexts.insert(midNeckGirth_M, g);
- descriptions.insert(midNeckGirth_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Mid-neck girth", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Around middle part of Neck",
+ "Full measurement description");
+ InitMeasurement(midNeckGirth_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "neck_base_girth",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Neck Base girth", "Full measurement name");
- d = VTranslation::translate("Measurements", "Around Neck at base", "Full measurement description");
-
- measurements.insert(neckBaseGirth_M, m);
- guiTexts.insert(neckBaseGirth_M, g);
- descriptions.insert(neckBaseGirth_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Neck Base girth", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Around Neck at base", "Full measurement description");
+ InitMeasurement(neckBaseGirth_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "head_and_neck_length",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Head and Neck length", "Full measurement name");
- d = VTranslation::translate("Measurements", "Vertical Distance from Crown to Nape", "Full measurement description");
-
- measurements.insert(headAndNeckLength_M, m);
- guiTexts.insert(headAndNeckLength_M, g);
- descriptions.insert(headAndNeckLength_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Head and Neck length", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Vertical Distance from Crown to Nape",
+ "Full measurement description");
+ InitMeasurement(headAndNeckLength_M, m, g, d);
//=================================================================================================================
// torso
m = VTranslation::translate("Measurements", "center_front_waist_length",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Front Center length", "Full measurement name");
- d = VTranslation::translate("Measurements", "Front Neck Center over tape at Bustline to Front Waist Center",
- "Full measurement description");
-
- measurements.insert(centerFrontWaistLength_M, m);
- guiTexts.insert(centerFrontWaistLength_M, g);
- descriptions.insert(centerFrontWaistLength_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Front Center length", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Front Neck Center over tape at Bustline to Front Waist "
+ "Center", "Full measurement description");
+ InitMeasurement(centerFrontWaistLength_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "center_back_waist_length",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Back Center length", "Full measurement name");
- d = VTranslation::translate("Measurements", "Back Neck Center to Back Waist Center",
+ g = VTranslation::translate("MeasurementsFullNames", "Back Center length", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Back Neck Center to Back Waist Center",
"Full measurement description");
-
- measurements.insert(centerBackWaistLength_M, m);
- guiTexts.insert(centerBackWaistLength_M, g);
- descriptions.insert(centerBackWaistLength_M, d);
+ InitMeasurement(centerBackWaistLength_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "shoulder_length",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Shoulder length", "Full measurement name");
- d = VTranslation::translate("Measurements", "NeckPoint to ShoulderTip", "Full measurement description");
-
- measurements.insert(shoulderLength_M, m);
- guiTexts.insert(shoulderLength_M, g);
- descriptions.insert(shoulderLength_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Shoulder length", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "NeckPoint to ShoulderTip", "Full measurement description");
+ InitMeasurement(shoulderLength_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "side_waist_length",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Side Waist length", "Full measurement name");
- d = VTranslation::translate("Measurements", "Armpit to Waist side", "Full measurement description");
-
- measurements.insert(sideWaistLength_M, m);
- guiTexts.insert(sideWaistLength_M, g);
- descriptions.insert(sideWaistLength_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Side Waist length", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Armpit to Waist side", "Full measurement description");
+ InitMeasurement(sideWaistLength_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "trunk_length",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Trunk length", "Full measurement name");
- d = VTranslation::translate("Measurements",
+ g = VTranslation::translate("MeasurementsFullNames", "Trunk length", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions",
"Around Body from middle of Shoulder length to BustPoint to Crotch up back to beginning"
" point",
"Full measurement description");
-
- measurements.insert(trunkLength_M, m);
- guiTexts.insert(trunkLength_M, g);
- descriptions.insert(trunkLength_M, d);
+ InitMeasurement(trunkLength_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "shoulder_girth",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Shoulder girth", "Full measurement name");
- d = VTranslation::translate("Measurements", "Around Arms and Torso, at bicep level parallel to floor, with arms"
- " hanging at the sides", "Full measurement description");
-
- measurements.insert(shoulderGirth_M, m);
- guiTexts.insert(shoulderGirth_M, g);
- descriptions.insert(shoulderGirth_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Shoulder girth", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Around Arms and Torso, at bicep level parallel to floor, "
+ "with arms hanging at the sides", "Full measurement description");
+ InitMeasurement(shoulderGirth_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "upper_chest_girth",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Upper Chest girth", "Full measurement name");
- d = VTranslation::translate("Measurements", "Around Chest at Armfold level, will be parallel to floor across back,"
- " will not be parallel to floor across front chest", "Full measurement description");
-
- measurements.insert(upperChestGirth_M, m);
- guiTexts.insert(upperChestGirth_M, g);
- descriptions.insert(upperChestGirth_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Upper Chest girth", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Around Chest at Armfold level, will be parallel to floor "
+ "across back, will not be parallel to floor across front chest",
+ "Full measurement description");
+ InitMeasurement(upperChestGirth_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "bust_girth",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Bust girth", "Full measurement name");
- d = VTranslation::translate("Measurements", "Around fullest part of Bust, parallel to floor",
+ g = VTranslation::translate("MeasurementsFullNames", "Bust girth", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Around fullest part of Bust, parallel to floor",
"Full measurement description");
-
- measurements.insert(bustGirth_M, m);
- guiTexts.insert(bustGirth_M, g);
- descriptions.insert(bustGirth_M, d);
+ InitMeasurement(bustGirth_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "under_bust_girth",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Under Bust girth", "Full measurement name");
- d = VTranslation::translate("Measurements", "Around Chest below the Bust, parallel to floor",
+ g = VTranslation::translate("MeasurementsFullNames", "Under Bust girth", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Around Chest below the Bust, parallel to floor",
"Full measurement description");
-
- measurements.insert(underBustGirth_M, m);
- guiTexts.insert(underBustGirth_M, g);
- descriptions.insert(underBustGirth_M, d);
+ InitMeasurement(underBustGirth_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "waist_girth",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Waist girth", "Full measurement name");
- d = VTranslation::translate("Measurements", "Tie a string around smallest part of waist, keep string tied while"
- " taking meaasurements. Not usually parallel to floor for front waist or back waist.",
+ g = VTranslation::translate("MeasurementsFullNames", "Waist girth", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Tie a string around smallest part of waist, keep string "
+ "tied while taking meaasurements. Not usually parallel to floor for front waist or "
+ "back waist.",
"Full measurement description");
-
- measurements.insert(waistGirth_M, m);
- guiTexts.insert(waistGirth_M, g);
- descriptions.insert(waistGirth_M, d);
+ InitMeasurement(waistGirth_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "high_hip_girth",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "HighHip girth", "Full measurement name");
- d = VTranslation::translate("Measurements", "Around HighHip, parallel to floor", "Full measurement description");
-
- measurements.insert(highHipGirth_M, m);
- guiTexts.insert(highHipGirth_M, g);
- descriptions.insert(highHipGirth_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "HighHip girth", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Around HighHip, parallel to floor",
+ "Full measurement description");
+ InitMeasurement(highHipGirth_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "hip_girth",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Hip girth", "Full measurement name");
- d = VTranslation::translate("Measurements", "Around Hip, parallel to floor", "Full measurement description");
-
- measurements.insert(hipGirth_M, m);
- guiTexts.insert(hipGirth_M, g);
- descriptions.insert(hipGirth_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Hip girth", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Around Hip, parallel to floor",
+ "Full measurement description");
+ InitMeasurement(hipGirth_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "upper_front_chest_width",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Front Upper Chest width", "Full measurement name");
- d = VTranslation::translate("Measurements", "Across Front UpperChest, smallest width from armscye to armscye",
- "Full measurement description");
-
- measurements.insert(upperFrontChestWidth_M, m);
- guiTexts.insert(upperFrontChestWidth_M, g);
- descriptions.insert(upperFrontChestWidth_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Front Upper Chest width", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Across Front UpperChest, smallest width from armscye to "
+ "armscye", "Full measurement description");
+ InitMeasurement(upperFrontChestWidth_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "front_chest_width",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Front Chest width", "Full measurement name");
- d = VTranslation::translate("Measurements", "Across Front Chest, from armfold to armfold",
+ g = VTranslation::translate("MeasurementsFullNames", "Front Chest width", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Across Front Chest, from armfold to armfold",
"Full measurement description");
-
- measurements.insert(frontChestWidth_M, m);
- guiTexts.insert(frontChestWidth_M, g);
- descriptions.insert(frontChestWidth_M, d);
+ InitMeasurement(frontChestWidth_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "across_front_shoulder_width",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Front Across Shoulder width", "Full measurement name");
- d = VTranslation::translate("Measurements", "From ShoulderTip to ShoulderTip, across Front",
+ g = VTranslation::translate("MeasurementsFullNames", "Front Across Shoulder width", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "From ShoulderTip to ShoulderTip, across Front",
"Full measurement description");
-
- measurements.insert(acrossFrontShoulderWidth_M, m);
- guiTexts.insert(acrossFrontShoulderWidth_M, g);
- descriptions.insert(acrossFrontShoulderWidth_M, d);
+ InitMeasurement(acrossFrontShoulderWidth_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "across_back_shoulder_width",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Back Across Shoulder width", "Full measurement name");
- d = VTranslation::translate("Measurements", "From ShoulderTip to ShoulderTip, across Back",
+ g = VTranslation::translate("MeasurementsFullNames", "Back Across Shoulder width", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "From ShoulderTip to ShoulderTip, across Back",
"Full measurement description");
-
- measurements.insert(acrossBackShoulderWidth_M, m);
- guiTexts.insert(acrossBackShoulderWidth_M, g );
- descriptions.insert(acrossBackShoulderWidth_M, d);
+ InitMeasurement(acrossBackShoulderWidth_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "upper_back_width",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Back Upper Chest width", "Full measurement name");
- d = VTranslation::translate("Measurements", "Across Back UpperChest, smallest width from armscye to armscye",
- "Full measurement description");
-
- measurements.insert(upperBackWidth_M, m);
- guiTexts.insert(upperBackWidth_M, g);
- descriptions.insert(upperBackWidth_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Back Upper Chest width", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Across Back UpperChest, smallest width from armscye to "
+ "armscye", "Full measurement description");
+ InitMeasurement(upperBackWidth_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "back_width",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Back Chest width", "Full measurement name");
- d = VTranslation::translate("Measurements", "Across Back Chest, from armfold to armfold",
+ g = VTranslation::translate("MeasurementsFullNames", "Back Chest width", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Across Back Chest, from armfold to armfold",
"Full measurement description");
-
- measurements.insert(backWidth_M, m);
- guiTexts.insert(backWidth_M, g);
- descriptions.insert(backWidth_M, d);
+ InitMeasurement(backWidth_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "bustpoint_to_bustpoint",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "BustPoint to BustPoint", "Full measurement name");
- d = VTranslation::translate("Measurements", "Distance between BustPoints, across Chest",
+ g = VTranslation::translate("MeasurementsFullNames", "BustPoint to BustPoint", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Distance between BustPoints, across Chest",
"Full measurement description");
-
- measurements.insert(bustpointToBustpoint_M, m);
- guiTexts.insert(bustpointToBustpoint_M, g);
- descriptions.insert(bustpointToBustpoint_M, d);
+ InitMeasurement(bustpointToBustpoint_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "halter_bustpoint_to_bustpoint",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Halter Bustpoint to Bustpoint", "Full measurement name");
- d = VTranslation::translate("Measurements", "Distance from Bustpoint, behind neck, down to Bustpoint",
+ g = VTranslation::translate("MeasurementsFullNames", "Halter Bustpoint to Bustpoint", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Distance from Bustpoint, behind neck, down to Bustpoint",
"Full measurement description");
-
- measurements.insert(halterBustpointToBustpoint_M, m);
- guiTexts.insert(halterBustpointToBustpoint_M, g);
- descriptions.insert(halterBustpointToBustpoint_M, d);
+ InitMeasurement(halterBustpointToBustpoint_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "neck_to_bustpoint",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "NeckPoint to BustPoint", "Full measurement name");
- d = VTranslation::translate("Measurements", "From NeckPoint to BustPoint", "Full measurement description");
-
- measurements.insert(neckToBustpoint_M, m);
- guiTexts.insert(neckToBustpoint_M, g);
- descriptions.insert(neckToBustpoint_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "NeckPoint to BustPoint", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "From NeckPoint to BustPoint",
+ "Full measurement description");
+ InitMeasurement(neckToBustpoint_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "crotch_length",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Crotch length", "Full measurement name");
- d = VTranslation::translate("Measurements", "From Front Waist Center, down to crotch, up to Back Waist Center",
- "Full measurement description");
-
- measurements.insert(crotchLength_M, m);
- guiTexts.insert(crotchLength_M, g);
- descriptions.insert(crotchLength_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Crotch length", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "From Front Waist Center, down to crotch, up to Back Waist "
+ "Center", "Full measurement description");
+ InitMeasurement(crotchLength_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "rise_height",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Rise height", "Full measurement name");
- d = VTranslation::translate("Measurements", "Sit on hard chair, measure from side waist straight down to chair"
- " bottom", "Full measurement description");
-
- measurements.insert(riseHeight_M, m);
- guiTexts.insert(riseHeight_M, g);
- descriptions.insert(riseHeight_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Rise height", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Sit on hard chair, measure from side waist straight down "
+ "to chair bottom", "Full measurement description");
+ InitMeasurement(riseHeight_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "shoulder_drop",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Shoulder Drop", "Full measurement name");
- d = VTranslation::translate("Measurements", "Vertical Distance from NeckPoint level to ShoulderTip level",
- "Full measurement description");
-
- measurements.insert(shoulderDrop_M, m);
- guiTexts.insert(shoulderDrop_M, g);
- descriptions.insert(shoulderDrop_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Shoulder Drop", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Vertical Distance from NeckPoint level to ShoulderTip "
+ "level", "Full measurement description");
+ InitMeasurement(shoulderDrop_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "shoulder_slope_degrees",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Shoulder Slope degrees", "Full measurement name");
- d = VTranslation::translate("Measurements", "Degrees of angle from NeckPoint to ShoulderTip – requires goniometer",
- "Full measurement description");
-
- measurements.insert(shoulderSlopeDegrees_M, m);
- guiTexts.insert(shoulderSlopeDegrees_M, g);
- descriptions.insert(shoulderSlopeDegrees_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Shoulder Slope degrees", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Degrees of angle from NeckPoint to ShoulderTip – requires "
+ "goniometer", "Full measurement description");
+ InitMeasurement(shoulderSlopeDegrees_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "front_shoulder_slope_length",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Front Shoulder Balance", "Full measurement name");
- d = VTranslation::translate("Measurements", "ShoulderTip to Front Waist Center", "Full measurement description");
-
- measurements.insert(frontShoulderSlopeLength_M, m);
- guiTexts.insert(frontShoulderSlopeLength_M, g);
- descriptions.insert(frontShoulderSlopeLength_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Front Shoulder Balance", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "ShoulderTip to Front Waist Center",
+ "Full measurement description");
+ InitMeasurement(frontShoulderSlopeLength_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "back_shoulder_slope_length",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Back Shoulder Balance", "Full measurement name");
- d = VTranslation::translate("Measurements", "ShoulderTip to Back Waist Center", "Full measurement description");
-
- measurements.insert(backShoulderSlopeLength_M, m);
- guiTexts.insert(backShoulderSlopeLength_M, g);
- descriptions.insert(backShoulderSlopeLength_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Back Shoulder Balance", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "ShoulderTip to Back Waist Center",
+ "Full measurement description");
+ InitMeasurement(backShoulderSlopeLength_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "front_shoulder_to_waist_length",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Front Full Length", "Full measurement name");
- d = VTranslation::translate("Measurements", "NeckPoint straight down front chest to Waistline",
+ g = VTranslation::translate("MeasurementsFullNames", "Front Full Length", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "NeckPoint straight down front chest to Waistline",
"Full measurement description");
-
- measurements.insert(frontShoulderToWaistLength_M, m);
- guiTexts.insert(frontShoulderToWaistLength_M, g);
- descriptions.insert(frontShoulderToWaistLength_M, d);
+ InitMeasurement(frontShoulderToWaistLength_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "back_shoulder_to_waist_length",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Back Full Length", "Full measurement name");
- d = VTranslation::translate("Measurements", "Back NeckPoint straight down back chest to Waistline",
+ g = VTranslation::translate("MeasurementsFullNames", "Back Full Length", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Back NeckPoint straight down back chest to Waistline",
"Full measurement description");
-
- measurements.insert(backShoulderToWaistLength_M, m);
- guiTexts.insert(backShoulderToWaistLength_M, g);
- descriptions.insert(backShoulderToWaistLength_M, d);
+ InitMeasurement(backShoulderToWaistLength_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "front_neck_arc",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Front Neck arc", "Full measurement name");
- d = VTranslation::translate("Measurements", "NeckPoint to NeckPoint through Front Neck Center",
+ g = VTranslation::translate("MeasurementsFullNames", "Front Neck arc", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "NeckPoint to NeckPoint through Front Neck Center",
"Full measurement description");
-
- measurements.insert(frontNeckArc_M, m);
- guiTexts.insert(frontNeckArc_M, g);
- descriptions.insert(frontNeckArc_M, d);
+ InitMeasurement(frontNeckArc_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "back_neck_arc",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Back Neck arc", "Full measurement name");
- d = VTranslation::translate("Measurements", "NeckPoint to NeckPoint across Nape", "Full measurement description");
-
- measurements.insert(backNeckArc_M, m);
- guiTexts.insert(backNeckArc_M, g);
- descriptions.insert(backNeckArc_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Back Neck arc", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "NeckPoint to NeckPoint across Nape",
+ "Full measurement description");
+ InitMeasurement(backNeckArc_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "front_upper_chest_arc",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "front_upper-bust_arc", "Full measurement name");
- d = VTranslation::translate("Measurements", "front_upper-bust_arc", "Full measurement description");
-
- measurements.insert(frontUpperChestArc_M, m);
- guiTexts.insert(frontUpperChestArc_M, g);
- descriptions.insert(frontUpperChestArc_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "front_upper-bust_arc", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "front_upper-bust_arc", "Full measurement description");
+ InitMeasurement(frontUpperChestArc_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "back_upper_chest_arc",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Back UpperBust arc", "Full measurement name");
- d = VTranslation::translate("Measurements", "Back UpperBust side to side", "Full measurement description");
-
- measurements.insert(backUpperChestArc_M, m);
- guiTexts.insert(backUpperChestArc_M, g);
- descriptions.insert(backUpperChestArc_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Back UpperBust arc", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Back UpperBust side to side",
+ "Full measurement description");
+ InitMeasurement(backUpperChestArc_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "front_waist_arc",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Front Waist arc", "Full measurement name");
- d = VTranslation::translate("Measurements", "Front Waist side to side", "Full measurement description");
-
- measurements.insert(frontWaistArc_M, m);
- guiTexts.insert(frontWaistArc_M, g);
- descriptions.insert(frontWaistArc_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Front Waist arc", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Front Waist side to side", "Full measurement description");
+ InitMeasurement(frontWaistArc_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "back_waist_arc",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Back Waist arc", "Full measurement name");
- d = VTranslation::translate("Measurements", "Back Waist side to side", "Full measurement description");
-
- measurements.insert(backWaistArc_M, m);
- guiTexts.insert(backWaistArc_M, g);
- descriptions.insert(backWaistArc_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Back Waist arc", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Back Waist side to side", "Full measurement description");
+ InitMeasurement(backWaistArc_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "front_upper_hip_arc",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Front UpperHip arc", "Full measurement name");
- d = VTranslation::translate("Measurements", "Front UpperHip side to side", "Full measurement description");
-
- measurements.insert(frontUpperHipArc_M, m);
- guiTexts.insert(frontUpperHipArc_M, g);
- descriptions.insert(frontUpperHipArc_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Front UpperHip arc", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Front UpperHip side to side",
+ "Full measurement description");
+ InitMeasurement(frontUpperHipArc_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "back_upper_hip_arc",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Back UpperHip arc", "Full measurement name");
- d = VTranslation::translate("Measurements", "Back UpperHip side to side", "Full measurement description");
-
- measurements.insert(backUpperHipArc_M, m);
- guiTexts.insert(backUpperHipArc_M, g);
- descriptions.insert(backUpperHipArc_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Back UpperHip arc", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Back UpperHip side to side",
+ "Full measurement description");
+ InitMeasurement(backUpperHipArc_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "front_hip_arc",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Front Hip arc", "Full measurement name");
- d = VTranslation::translate("Measurements", "Front Hip side to side", "Full measurement description");
-
- measurements.insert(frontHipArc_M, m);
- guiTexts.insert(frontHipArc_M, g);
- descriptions.insert(frontHipArc_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Front Hip arc", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Front Hip side to side",
+ "Full measurement description");
+ InitMeasurement(frontHipArc_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "back_hip_arc",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Back Hip arc", "Full measurement name");
- d = VTranslation::translate("Measurements", "Back Hip side to side", "Full measurement description");
-
- measurements.insert(backHipArc_M, m);
- guiTexts.insert(backHipArc_M, g);
- descriptions.insert(backHipArc_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Back Hip arc", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Back Hip side to side", "Full measurement description");
+ InitMeasurement(backHipArc_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "chest_slope",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Chest Balance", "Full measurement name");
- d = VTranslation::translate("Measurements", "NeckPoint to Front ArmfoldPoint", "Full measurement description");
-
- measurements.insert(chestSlope_M, m);
- guiTexts.insert(chestSlope_M, g);
- descriptions.insert(chestSlope_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Chest Balance", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "NeckPoint to Front ArmfoldPoint",
+ "Full measurement description");
+ InitMeasurement(chestSlope_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "back_slope",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Back Balance", "Full measurement name");
- d = VTranslation::translate("Measurements", "NeckPoint to Back ArmfoldPoint", "Full measurement description");
-
- measurements.insert(backSlope_M, m);
- guiTexts.insert(backSlope_M, g);
- descriptions.insert(backSlope_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Back Balance", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "NeckPoint to Back ArmfoldPoint",
+ "Full measurement description");
+ InitMeasurement(backSlope_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "front_waist_slope",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Front Waist Balance", "Full measurement name");
- d = VTranslation::translate("Measurements", "NeckPoint across Front Chest to Waist side",
+ g = VTranslation::translate("MeasurementsFullNames", "Front Waist Balance", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "NeckPoint across Front Chest to Waist side",
"Full measurement description");
-
- measurements.insert(frontWaistSlope_M, m);
- guiTexts.insert(frontWaistSlope_M, g);
- descriptions.insert(frontWaistSlope_M, d);
+ InitMeasurement(frontWaistSlope_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "back_waist_slope",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Back Waist Balance", "Full measurement name");
- d = VTranslation::translate("Measurements", "NeckPoint across Back Chest to Waist side",
+ g = VTranslation::translate("MeasurementsFullNames", "Back Waist Balance", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "NeckPoint across Back Chest to Waist side",
"Full measurement description");
-
- measurements.insert(backWaistSlope_M, m);
- guiTexts.insert(backWaistSlope_M, g);
- descriptions.insert(backWaistSlope_M, d);
+ InitMeasurement(backWaistSlope_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "front_neck_to_upper_chest_height",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Front UpperChest height", "Full measurement name");
- d = VTranslation::translate("Measurements", "Front Neck Center straight down to UpperChest line",
+ g = VTranslation::translate("MeasurementsFullNames", "Front UpperChest height", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Front Neck Center straight down to UpperChest line",
"Full measurement description");
-
- measurements.insert(frontNeckToUpperChestHeight_M, m);
- guiTexts.insert(frontNeckToUpperChestHeight_M, g);
- descriptions.insert(frontNeckToUpperChestHeight_M, d);
+ InitMeasurement(frontNeckToUpperChestHeight_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "front_neck_to_bust_height",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Bust height", "Full measurement name");
- d = VTranslation::translate("Measurements", "Front Neck Center straight down to Bust line",
+ g = VTranslation::translate("MeasurementsFullNames", "Bust height", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Front Neck Center straight down to Bust line",
"Full measurement description");
-
- measurements.insert(frontNeckToBustHeight_M, m);
- guiTexts.insert(frontNeckToBustHeight_M, g);
- descriptions.insert(frontNeckToBustHeight_M, d);
+ InitMeasurement(frontNeckToBustHeight_M, m, g, d);
+ //=================================================================================================================
+ m = VTranslation::translate("Measurements", "front_waist_to_upper_chest",
+ "Short measurement name. Don't use math symbols in name!!!!");
+ g = VTranslation::translate("MeasurementsFullNames", "Front Upper chest waist", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Front Upper chest waist",
+ "Full measurement description");
+ InitMeasurement(frontWaistToUpperChest_M, m, g, d);
+ //=================================================================================================================
+ m = VTranslation::translate("Measurements", "front_waist_to_lower_breast",
+ "Short measurement name. Don't use math symbols in name!!!!");
+ g = VTranslation::translate("MeasurementsFullNames", "Front waist to lower breast", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Front waist to lower breast",
+ "Full measurement description");
+ InitMeasurement(frontWaistToLowerBreast_M, m, g, d);
+ //=================================================================================================================
+ m = VTranslation::translate("Measurements", "back_waist_to_upper_chest",
+ "Short measurement name. Don't use math symbols in name!!!!");
+ g = VTranslation::translate("MeasurementsFullNames", "Back waist to upper chest", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Back waist to upper chest",
+ "Full measurement description");
+ InitMeasurement(backWaistToUpperChest_M, m, g, d);
+ //=================================================================================================================
+ m = VTranslation::translate("Measurements", "strap_length",
+ "Short measurement name. Don't use math symbols in name!!!!");
+ g = VTranslation::translate("MeasurementsFullNames", "Strap length", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Strap length",
+ "Full measurement description");
+ InitMeasurement(strapLength_M, m, g, d);
//=================================================================================================================
// arm
m = VTranslation::translate("Measurements", "armscye_girth",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Armscye Girth", "Full measurement name");
- d = VTranslation::translate("Measurements", "Around Armscye", "Full measurement description");
-
- measurements.insert(armscyeGirth_M, m);
- guiTexts.insert(armscyeGirth_M, g);
- descriptions.insert(armscyeGirth_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Armscye Girth", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Around Armscye", "Full measurement description");
+ InitMeasurement(armscyeGirth_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "elbow_girth",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Elbow Girth", "Full measurement name");
- d = VTranslation::translate("Measurements", "Around Elbow with elbow bent", "Full measurement description");
-
- measurements.insert(elbowGirth_M, m);
- guiTexts.insert(elbowGirth_M, g);
- descriptions.insert(elbowGirth_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Elbow Girth", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Around Elbow with elbow bent",
+ "Full measurement description");
+ InitMeasurement(elbowGirth_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "upper_arm_girth",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Upperarm Girth", "Full measurement name");
- d = VTranslation::translate("Measurements", "Around UpperArm", "Full measurement description");
-
- measurements.insert(upperArmGirth_M, m);
- guiTexts.insert(upperArmGirth_M, g);
- descriptions.insert(upperArmGirth_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Upperarm Girth", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Around UpperArm", "Full measurement description");
+ InitMeasurement(upperArmGirth_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "wrist_girth",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Wrist girth", "Full measurement name");
- d = VTranslation::translate("Measurements", "Around Wrist", "Full measurement description");
-
- measurements.insert(wristGirth_M, m);
- guiTexts.insert(wristGirth_M, g);
- descriptions.insert(wristGirth_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Wrist girth", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Around Wrist", "Full measurement description");
+ InitMeasurement(wristGirth_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "scye_depth",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Armscye depth", "Full measurement name");
- d = VTranslation::translate("Measurements", "Nape straight down to UnderBust line (same as Back UpperBust height)",
- "Full measurement description");
-
- measurements.insert(scyeDepth_M, m);
- guiTexts.insert(scyeDepth_M, g);
- descriptions.insert(scyeDepth_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Armscye depth", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Nape straight down to UnderBust line (same as Back "
+ "UpperBust height)", "Full measurement description");
+ InitMeasurement(scyeDepth_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "shoulder_and_arm_length",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Shoulder and Arm length", "Full measurement name");
- d = VTranslation::translate("Measurements", "NeckPoint to ShoulderTip to Wrist, with elbow bent and hand on hip",
- "Full measurement description");
-
- measurements.insert(shoulderAndArmLength_M, m);
- guiTexts.insert(shoulderAndArmLength_M, g);
- descriptions.insert(shoulderAndArmLength_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Shoulder and Arm length", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "NeckPoint to ShoulderTip to Wrist, with elbow bent and "
+ "hand on hip", "Full measurement description");
+ InitMeasurement(shoulderAndArmLength_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "underarm_length",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Underarm length", "Full measurement name");
- d = VTranslation::translate("Measurements", "Armpit to Wrist, with arm straight and hanging at side",
+ g = VTranslation::translate("MeasurementsFullNames", "Underarm length", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Armpit to Wrist, with arm straight and hanging at side",
"Full measurement description");
-
- measurements.insert(underarmLength_M, m);
- guiTexts.insert(underarmLength_M, g);
- descriptions.insert(underarmLength_M, d);
+ InitMeasurement(underarmLength_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "cervicale_to_wrist_length",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Nape to wrist length", "Full measurement name");
- d = VTranslation::translate("Measurements", "Nape to Wrist, with elbow bent and hand on hip",
+ g = VTranslation::translate("MeasurementsFullNames", "Nape to wrist length", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Nape to Wrist, with elbow bent and hand on hip",
"Full measurement description");
-
- measurements.insert(cervicaleToWristLength_M, m);
- guiTexts.insert(cervicaleToWristLength_M, g);
- descriptions.insert(cervicaleToWristLength_M, d);
+ InitMeasurement(cervicaleToWristLength_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "shoulder_to_elbow_length",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Elbow length", "Full measurement name");
- d = VTranslation::translate("Measurements", "ShoulderTip to Elbow, with elbow bent and hand on hip",
+ g = VTranslation::translate("MeasurementsFullNames", "Elbow length", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "ShoulderTip to Elbow, with elbow bent and hand on hip",
"Full measurement description");
-
- measurements.insert(shoulderToElbowLength_M, m);
- guiTexts.insert(shoulderToElbowLength_M, g);
- descriptions.insert(shoulderToElbowLength_M, d);
+ InitMeasurement(shoulderToElbowLength_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "arm_length",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Arm length", "Full measurement name");
- d = VTranslation::translate("Measurements", "ShoulderTip to Wrist, with elbow bent and hand on hip",
+ g = VTranslation::translate("MeasurementsFullNames", "Arm length", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "ShoulderTip to Wrist, with elbow bent and hand on hip",
"Full measurement description");
-
- measurements.insert(armLength_M, m);
- guiTexts.insert(armLength_M, g);
- descriptions.insert(armLength_M, d);
+ InitMeasurement(armLength_M, m, g, d);
//=================================================================================================================
// hand
m = VTranslation::translate("Measurements", "hand_width",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Hand width", "Full measurement name");
- d = VTranslation::translate("Measurements", "Hand side to side", "Full measurement description");
-
- measurements.insert(handWidth_M, m);
- guiTexts.insert(handWidth_M, g);
- descriptions.insert(handWidth_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Hand width", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Hand side to side", "Full measurement description");
+ InitMeasurement(handWidth_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "hand_length",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Hand length", "Full measurement name");
- d = VTranslation::translate("Measurements", "Hand Middle Finger tip to wrist", "Full measurement description");
-
- measurements.insert(handLength_M, m);
- guiTexts.insert(handLength_M, g);
- descriptions.insert(handLength_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Hand length", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Hand Middle Finger tip to wrist",
+ "Full measurement description");
+ InitMeasurement(handLength_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "hand_girth",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Hand girth", "Full measurement name");
- d = VTranslation::translate("Measurements", "Around Hand", "Full measurement description");
-
- measurements.insert(handGirth_M, m);
- guiTexts.insert(handGirth_M, g);
- descriptions.insert(handGirth_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Hand girth", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Around Hand", "Full measurement description");
+ InitMeasurement(handGirth_M, m, g, d);
//=================================================================================================================
// leg
m = VTranslation::translate("Measurements", "thigh_girth",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Thigh girth", "Full measurement name");
- d = VTranslation::translate("Measurements", "Around Thigh", "Full measurement description");
-
- measurements.insert(thighGirth_M, m);
- guiTexts.insert(thighGirth_M, g);
- descriptions.insert(thighGirth_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Thigh girth", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Around Thigh", "Full measurement description");
+ InitMeasurement(thighGirth_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "mid_thigh_girth",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Midthigh girth", "Full measurement name");
- d = VTranslation::translate("Measurements", "Around MidThigh", "Full measurement description");
-
- measurements.insert(midThighGirth_M, m);
- guiTexts.insert(midThighGirth_M, g);
- descriptions.insert(midThighGirth_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Midthigh girth", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Around MidThigh", "Full measurement description");
+ InitMeasurement(midThighGirth_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "knee_girth",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Knee girth", "Full measurement name");
- d = VTranslation::translate("Measurements", "Around Knee", "Full measurement description");
-
- measurements.insert(kneeGirth_M, m);
- guiTexts.insert(kneeGirth_M, g);
- descriptions.insert(kneeGirth_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Knee girth", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Around Knee", "Full measurement description");
+ InitMeasurement(kneeGirth_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "calf_girth",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Calf girth", "Full measurement name");
- d = VTranslation::translate("Measurements", "Around Calf", "Full measurement description");
-
- measurements.insert(calfGirth_M, m);
- guiTexts.insert(calfGirth_M, g);
- descriptions.insert(calfGirth_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Calf girth", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Around Calf", "Full measurement description");
+ InitMeasurement(calfGirth_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "ankle_girth",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Ankle girth", "Full measurement name");
- d = VTranslation::translate("Measurements", "Around Ankle", "Full measurement description");
-
- measurements.insert(ankleGirth_M, m);
- guiTexts.insert(ankleGirth_M, g);
- descriptions.insert(ankleGirth_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Ankle girth", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Around Ankle", "Full measurement description");
+ InitMeasurement(ankleGirth_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "knee_height",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Knee height", "Full measurement name");
- d = VTranslation::translate("Measurements", "Knee to Floor", "Full measurement description");
-
- measurements.insert(kneeHeight_M, m);
- guiTexts.insert(kneeHeight_M, g);
- descriptions.insert(kneeHeight_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Knee height", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Knee to Floor", "Full measurement description");
+ InitMeasurement(kneeHeight_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "ankle_height",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Ankle height", "Full measurement name");
- d = VTranslation::translate("Measurements", "Ankle to Floor", "Full measurement description");
-
- measurements.insert(ankleHeight_M, m);
- guiTexts.insert(ankleHeight_M, g);
- descriptions.insert(ankleHeight_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Ankle height", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Ankle to Floor", "Full measurement description");
+ InitMeasurement(ankleHeight_M, m, g, d);
//=================================================================================================================
// foot
m = VTranslation::translate("Measurements", "foot_width",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Foot width", "Full measurement name");
- d = VTranslation::translate("Measurements", "Widest part of Foot side to side", "Full measurement description");
-
- measurements.insert(footWidth_M, m);
- guiTexts.insert(footWidth_M, g);
- descriptions.insert(footWidth_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Foot width", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Widest part of Foot side to side",
+ "Full measurement description");
+ InitMeasurement(footWidth_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "foot_length",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Foot length", "Full measurement name");
- d = VTranslation::translate("Measurements", "Tip of Longest Toe straight to back of heel",
+ g = VTranslation::translate("MeasurementsFullNames", "Foot length", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Tip of Longest Toe straight to back of heel",
"Full measurement description");
-
- measurements.insert(footLength_M, m);
- guiTexts.insert(footLength_M, g);
- descriptions.insert(footLength_M, d);
+ InitMeasurement(footLength_M, m, g, d);
//=================================================================================================================
// heights
m = VTranslation::translate("Measurements", "height",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Total Height", "Full measurement name");
- d = VTranslation::translate("Measurements", "Top of head to floor", "Full measurement description");
-
- measurements.insert(height_M, m);
- guiTexts.insert(height_M, g);
- descriptions.insert(height_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Total Height", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Top of head to floor", "Full measurement description");
+ InitMeasurement(height_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "cervicale_height",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Nape height", "Full measurement name");
- d = VTranslation::translate("Measurements", "Nape to Floor", "Full measurement description");
-
- measurements.insert(cervicaleHeight_M, m);
- guiTexts.insert(cervicaleHeight_M, g);
- descriptions.insert(cervicaleHeight_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Nape height", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Nape to Floor", "Full measurement description");
+ InitMeasurement(cervicaleHeight_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "cervicale_to_knee_height",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Nape to knee height", "Full measurement name");
- d = VTranslation::translate("Measurements", "Nape to Knee", "Full measurement description");
-
- measurements.insert(cervicaleToKneeHeight_M, m);
- guiTexts.insert(cervicaleToKneeHeight_M, g);
- descriptions.insert(cervicaleToKneeHeight_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Nape to knee height", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Nape to Knee", "Full measurement description");
+ InitMeasurement(cervicaleToKneeHeight_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "waist_height",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Waist height", "Full measurement name");
- d = VTranslation::translate("Measurements", "Waist side to floor", "Full measurement description");
-
- measurements.insert(waistHeight_M, m);
- guiTexts.insert(waistHeight_M, g);
- descriptions.insert(waistHeight_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Waist height", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Waist side to floor", "Full measurement description");
+ InitMeasurement(waistHeight_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "high_hip_height",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "HighHip height", "Full measurement name");
- d = VTranslation::translate("Measurements", "HighHip side to Floor", "Full measurement description");
-
- measurements.insert(highHipHeight_M, m);
- guiTexts.insert(highHipHeight_M, g);
- descriptions.insert(highHipHeight_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "HighHip height", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "HighHip side to Floor", "Full measurement description");
+ InitMeasurement(highHipHeight_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "hip_height",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Hip height", "Full measurement name");
+ g = VTranslation::translate("MeasurementsFullNames", "Hip height", "Full measurement name");
d = VTranslation::translate("Measurements", "Hip side to Floor", "Full measurement description");
-
- measurements.insert(hipHeight_M, m);
- guiTexts.insert(hipHeight_M, g);
- descriptions.insert(hipHeight_M, d);
+ InitMeasurement(hipHeight_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "waist_to_hip_height",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Waist to Hip height", "Full measurement name");
- d = VTranslation::translate("Measurements", "Waist side to Hip", "Full measurement description");
-
- measurements.insert(waistToHipHeight_M, m);
- guiTexts.insert(waistToHipHeight_M, g);
- descriptions.insert(waistToHipHeight_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Waist to Hip height", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Waist side to Hip", "Full measurement description");
+ InitMeasurement(waistToHipHeight_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "waist_to_knee_height",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Waist to Knee height", "Full measurement name");
- d = VTranslation::translate("Measurements", "Waist side to Knee", "Full measurement description");
-
- measurements.insert(waistToKneeHeight_M, m);
- guiTexts.insert(waistToKneeHeight_M, g);
- descriptions.insert(waistToKneeHeight_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Waist to Knee height", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Waist side to Knee", "Full measurement description");
+ InitMeasurement(waistToKneeHeight_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "crotch_height",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Crotch height/Inseam", "Full measurement name");
- d = VTranslation::translate("Measurements", "Crotch to Floor along inside leg", "Full measurement description");
-
- measurements.insert(crotchHeight_M, m);
- guiTexts.insert(crotchHeight_M, g);
- descriptions.insert(crotchHeight_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Crotch height/Inseam", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Crotch to Floor along inside leg",
+ "Full measurement description");
+ InitMeasurement(crotchHeight_M, m, g, d);
//=================================================================================================================
//extended
m = VTranslation::translate("Measurements", "size", "Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Size", "Full measurement name");
- d = VTranslation::translate("Measurements", "Size", "Full measurement description");
-
- measurements.insert(size_M, m);
- guiTexts.insert(size_M, g);
- descriptions.insert(size_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Size", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Size", "Full measurement description");
+ InitMeasurement(size_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "height_front_neck_base_point",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Height front neck base point", "Full measurement name");
- d = VTranslation::translate("Measurements", "Height of the point base of the neck in front",
+ g = VTranslation::translate("MeasurementsFullNames", "Height front neck base point", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Height of the point base of the neck in front",
"Full measurement description");
-
- measurements.insert(heightFrontNeckBasePoint_M, m);
- guiTexts.insert(heightFrontNeckBasePoint_M, g);
- descriptions.insert(heightFrontNeckBasePoint_M, d);
+ InitMeasurement(heightFrontNeckBasePoint_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "height_base_neck_side_point",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Height base neck side point", "Full measurement name");
- d = VTranslation::translate("Measurements", "Height of the base of the neck side point",
+ g = VTranslation::translate("MeasurementsFullNames", "Height base neck side point", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Height of the base of the neck side point",
"Full measurement description");
-
- measurements.insert(heightBaseNeckSidePoint_M, m);
- guiTexts.insert(heightBaseNeckSidePoint_M, g);
- descriptions.insert(heightBaseNeckSidePoint_M, d);
+ InitMeasurement(heightBaseNeckSidePoint_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "height_shoulder_point",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Height shoulder point", "Full measurement name");
- d = VTranslation::translate("Measurements", "The height of the shoulder point", "Full measurement description");
-
- measurements.insert(heightShoulderPoint_M, m);
- guiTexts.insert(heightShoulderPoint_M, g);
- descriptions.insert(heightShoulderPoint_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Height shoulder point", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "The height of the shoulder point",
+ "Full measurement description");
+ InitMeasurement(heightShoulderPoint_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "height_nipple_point",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Height nipple point", "Full measurement name");
- d = VTranslation::translate("Measurements", "Height nipple point", "Full measurement description");
-
- measurements.insert(heightNipplePoint_M, m);
- guiTexts.insert(heightNipplePoint_M, g);
- descriptions.insert(heightNipplePoint_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Height nipple point", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Height nipple point", "Full measurement description");
+ InitMeasurement(heightNipplePoint_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "height_back_angle_axilla",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Height back angle axilla", "Full measurement name");
- d = VTranslation::translate("Measurements", "Height back angle axilla", "Full measurement description");
-
- measurements.insert(heightBackAngleAxilla_M, m);
- guiTexts.insert(heightBackAngleAxilla_M, g);
- descriptions.insert(heightBackAngleAxilla_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Height back angle axilla", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Height back angle axilla", "Full measurement description");
+ InitMeasurement(heightBackAngleAxilla_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "height_scapular_point",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Height scapular point", "Full measurement name");
- d = VTranslation::translate("Measurements", "Height scapular point", "Full measurement description");
-
- measurements.insert(heightScapularPoint_M, m);
- guiTexts.insert(heightScapularPoint_M, g);
- descriptions.insert(heightScapularPoint_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Height scapular point", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Height scapular point", "Full measurement description");
+ InitMeasurement(heightScapularPoint_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "height_under_buttock_folds",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Height under buttock folds", "Full measurement name");
- d = VTranslation::translate("Measurements", "Height under buttock folds", "Full measurement description");
-
- measurements.insert(heightUnderButtockFolds_M, m);
- guiTexts.insert(heightUnderButtockFolds_M, g);
- descriptions.insert(heightUnderButtockFolds_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Height under buttock folds", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Height under buttock folds",
+ "Full measurement description");
+ InitMeasurement(heightUnderButtockFolds_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "hips_excluding_protruding_abdomen",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Hips excluding protruding abdomen", "Full measurement name");
- d = VTranslation::translate("Measurements", "Hips excluding protruding abdomen", "Full measurement description");
-
- measurements.insert(hipsExcludingProtrudingAbdomen_M, m);
- guiTexts.insert(hipsExcludingProtrudingAbdomen_M, g);
- descriptions.insert(hipsExcludingProtrudingAbdomen_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Hips excluding protruding abdomen", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Hips excluding protruding abdomen",
+ "Full measurement description");
+ InitMeasurement(hipsExcludingProtrudingAbdomen_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "girth_foot_instep",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Girth foot instep", "Full measurement name");
- d = VTranslation::translate("Measurements", "Girth foot instep", "Full measurement description");
-
- measurements.insert(girthFootInstep_M, m);
- guiTexts.insert(girthFootInstep_M, g);
- descriptions.insert(girthFootInstep_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Girth foot instep", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Girth foot instep", "Full measurement description");
+ InitMeasurement(girthFootInstep_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "side_waist_to_floor",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Side waist to floor", "Full measurement name");
- d = VTranslation::translate("Measurements", "The distance from the side waist to floor",
+ g = VTranslation::translate("MeasurementsFullNames", "Side waist to floor", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "The distance from the side waist to floor",
"Full measurement description");
-
- measurements.insert(sideWaistToFloor_M, m);
- guiTexts.insert(sideWaistToFloor_M, g);
- descriptions.insert(sideWaistToFloor_M, d);
+ InitMeasurement(sideWaistToFloor_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "front_waist_to_floor",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Front waist to floor", "Full measurement name");
- d = VTranslation::translate("Measurements", "The distance from the front waist to floor",
+ g = VTranslation::translate("MeasurementsFullNames", "Front waist to floor", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "The distance from the front waist to floor",
"Full measurement description");
-
- measurements.insert(frontWaistToFloor_M, m);
- guiTexts.insert(frontWaistToFloor_M, g);
- descriptions.insert(frontWaistToFloor_M, d);
+ InitMeasurement(frontWaistToFloor_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "arc_through_groin_area",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Arc through groin area", "Full measurement name");
- d = VTranslation::translate("Measurements", "Arc through groin area", "Full measurement description");
-
- measurements.insert(arcThroughGroinArea_M, m);
- guiTexts.insert(arcThroughGroinArea_M, g);
- descriptions.insert(arcThroughGroinArea_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Arc through groin area", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Arc through groin area", "Full measurement description");
+ InitMeasurement(arcThroughGroinArea_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "waist_to_plane_seat",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Waist to plane seat", "Full measurement name");
- d = VTranslation::translate("Measurements", "The distance from the waist to the plane seat",
+ g = VTranslation::translate("MeasurementsFullNames", "Waist to plane seat", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "The distance from the waist to the plane seat",
"Full measurement description");
-
- measurements.insert(waistToPlaneSeat_M, m);
- guiTexts.insert(waistToPlaneSeat_M, g);
- descriptions.insert(waistToPlaneSeat_M, d);
+ InitMeasurement(waistToPlaneSeat_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "neck_to_radial_point",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Neck to radial point", "Full measurement name");
- d = VTranslation::translate("Measurements", "The distance from the base of the neck to the side of the radial"
- " point", "Full measurement description");
-
- measurements.insert(neckToRadialPoint_M, m);
- guiTexts.insert(neckToRadialPoint_M, g);
- descriptions.insert(neckToRadialPoint_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Neck to radial point", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "The distance from the base of the neck to the side of the "
+ "radial point", "Full measurement description");
+ InitMeasurement(neckToRadialPoint_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "neck_to_third_finger",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Neck to third finger", "Full measurement name");
- d = VTranslation::translate("Measurements", "Distance from the base of the neck side point to the end of the third"
- " finger", "Full measurement description");
-
- measurements.insert(neckToThirdFinger_M, m);
- guiTexts.insert(neckToThirdFinger_M, g);
- descriptions.insert(neckToThirdFinger_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Neck to third finger", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Distance from the base of the neck side point to the end "
+ "of the third finger", "Full measurement description");
+ InitMeasurement(neckToThirdFinger_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "neck_to_first_line_chest_circumference",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Neck to first line chest circumference", "Full measurement name");
- d = VTranslation::translate("Measurements", "The distance from the base of the neck to the side of the first line"
- " in front of chest circumference", "Full measurement description");
-
- measurements.insert(neckToFirstLineChestCircumference_M, m);
- guiTexts.insert(neckToFirstLineChestCircumference_M, g);
- descriptions.insert(neckToFirstLineChestCircumference_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Neck to first line chest circumference",
+ "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "The distance from the base of the neck to the side of the "
+ "first line in front of chest circumference", "Full measurement description");
+ InitMeasurement(neckToFirstLineChestCircumference_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "front_waist_length",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Front waist length", "Full measurement name");
- d = VTranslation::translate("Measurements", "The distance from the base of the neck to the waist side front (waist"
- " length in the front)", "Full measurement description");
-
- measurements.insert(frontWaistLength_M, m);
- guiTexts.insert(frontWaistLength_M, g);
- descriptions.insert(frontWaistLength_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Front waist length", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "The distance from the base of the neck to the waist side "
+ "front (waist length in the front)", "Full measurement description");
+ InitMeasurement(frontWaistLength_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "arc_through_shoulder_joint",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Arc through shoulder joint", "Full measurement name");
- d = VTranslation::translate("Measurements", "Arc through the highest point of the shoulder joint",
+ g = VTranslation::translate("MeasurementsFullNames", "Arc through shoulder joint", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Arc through the highest point of the shoulder joint",
"Full measurement description");
-
- measurements.insert(arcThroughShoulderJoint_M, m);
- guiTexts.insert(arcThroughShoulderJoint_M, g);
- descriptions.insert(arcThroughShoulderJoint_M, d);
+ InitMeasurement(arcThroughShoulderJoint_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "neck_to_back_line_chest_circumference",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Neck to back line chest circumference", "Full measurement name");
- d = VTranslation::translate("Measurements", "The distance from the base of the neck to the back line of chest"
- " circumference of the first and the second based on ledge vanes",
+ g = VTranslation::translate("MeasurementsFullNames", "Neck to back line chest circumference",
+ "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "The distance from the base of the neck to the back line "
+ "of chest circumference of the first and the second based on ledge vanes",
"Full measurement description");
-
- measurements.insert(neckToBackLineChestCircumference_M, m);
- guiTexts.insert(neckToBackLineChestCircumference_M, g);
- descriptions.insert(neckToBackLineChestCircumference_M, d);
+ InitMeasurement(neckToBackLineChestCircumference_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "waist_to_neck_side",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Waist to neck side", "Full measurement name");
- d = VTranslation::translate("Measurements", "The distance from the waist to the back base of the neck side point",
- "Full measurement description");
-
- measurements.insert(waistToNeckSide_M, m);
- guiTexts.insert(waistToNeckSide_M, g);
- descriptions.insert(waistToNeckSide_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Waist to neck side", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "The distance from the waist to the back base of the neck "
+ "side point", "Full measurement description");
+ InitMeasurement(waistToNeckSide_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "arc_length_upper_body",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Arc length upper body", "Full measurement name");
- d = VTranslation::translate("Measurements", "Arc length of the upper body through the base of the neck side point",
- "Full measurement description");
-
- measurements.insert(arcLengthUpperBody_M, m);
- guiTexts.insert(arcLengthUpperBody_M, g);
- descriptions.insert(arcLengthUpperBody_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Arc length upper body", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Arc length of the upper body through the base of the neck "
+ "side point", "Full measurement description");
+ InitMeasurement(arcLengthUpperBody_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "chest_width",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Chest width", "Full measurement name");
- d = VTranslation::translate("Measurements", "Chest width", "Full measurement description");
-
- measurements.insert(chestWidth_M, m);
- guiTexts.insert(chestWidth_M, g);
- descriptions.insert(chestWidth_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Chest width", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Chest width", "Full measurement description");
+ InitMeasurement(chestWidth_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "anteroposterior_diameter_hands",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Anteroposterior diameter hands", "Full measurement name");
- d = VTranslation::translate("Measurements", "Anteroposterior diameter of the hands",
+ g = VTranslation::translate("MeasurementsFullNames", "Anteroposterior diameter hands", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Anteroposterior diameter of the hands",
"Full measurement description");
-
- measurements.insert(anteroposteriorDiameterHands_M, m);
- guiTexts.insert(anteroposteriorDiameterHands_M, g);
- descriptions.insert(anteroposteriorDiameterHands_M, d);
+ InitMeasurement(anteroposteriorDiameterHands_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "height_clavicular_point",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Height clavicular point", "Full measurement name");
- d = VTranslation::translate("Measurements", "Height clavicular point", "Full measurement description");
-
- measurements.insert(heightClavicularPoint_M, m);
- guiTexts.insert(heightClavicularPoint_M, g);
- descriptions.insert(heightClavicularPoint_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Height clavicular point", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Height clavicular point", "Full measurement description");
+ InitMeasurement(heightClavicularPoint_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "height_armhole_slash",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Height armhole slash", "Full measurement name");
- d = VTranslation::translate("Measurements", "The distance from the point to the cervical level of the posterior"
- " angle of the front armpit (underarm height oblique)", "Full measurement description");
-
- measurements.insert(heightArmholeSlash_M, m);
- guiTexts.insert(heightArmholeSlash_M, g);
- descriptions.insert(heightArmholeSlash_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Height armhole slash", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "The distance from the point to the cervical level of the "
+ "posterior angle of the front armpit (underarm height oblique)",
+ "Full measurement description");
+ InitMeasurement(heightArmholeSlash_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "slash_shoulder_height",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Slash shoulder height", "Full measurement name");
- d = VTranslation::translate("Measurements", "Slash shoulder height", "Full measurement description");
-
- measurements.insert(slashShoulderHeight_M, m);
- guiTexts.insert(slashShoulderHeight_M, g);
- descriptions.insert(slashShoulderHeight_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Slash shoulder height", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Slash shoulder height", "Full measurement description");
+ InitMeasurement(slashShoulderHeight_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "half_girth_neck",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Half girth neck", "Full measurement name");
- d = VTranslation::translate("Measurements", "Half girth neck", "Full measurement description");
-
- measurements.insert(halfGirthNeck_M, m);
- guiTexts.insert(halfGirthNeck_M, g);
- descriptions.insert(halfGirthNeck_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Half girth neck", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Half girth neck", "Full measurement description");
+ InitMeasurement(halfGirthNeck_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "half_girth_neck_for_shirts",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Half girth neck for shirts", "Full measurement name");
- d = VTranslation::translate("Measurements", "Half girth neck for shirts", "Full measurement description");
-
- measurements.insert(halfGirthNeckForShirts_M, m);
- guiTexts.insert(halfGirthNeckForShirts_M, g);
- descriptions.insert(halfGirthNeckForShirts_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Half girth neck for shirts", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Half girth neck for shirts",
+ "Full measurement description");
+ InitMeasurement(halfGirthNeckForShirts_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "half_girth_chest_first",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Half girth chest first", "Full measurement name");
- d = VTranslation::translate("Measurements", "Half girth chest first", "Full measurement description");
-
- measurements.insert(halfGirthChestFirst_M, m);
- guiTexts.insert(halfGirthChestFirst_M, g);
- descriptions.insert(halfGirthChestFirst_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Half girth chest first", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Half girth chest first", "Full measurement description");
+ InitMeasurement(halfGirthChestFirst_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "half_girth_chest_second",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Half girth chest second", "Full measurement name");
- d = VTranslation::translate("Measurements", "Half girth chest second", "Full measurement description");
-
- measurements.insert(halfGirthChestSecond_M, m);
- guiTexts.insert(halfGirthChestSecond_M, g);
- descriptions.insert(halfGirthChestSecond_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Half girth chest second", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Half girth chest second", "Full measurement description");
+ InitMeasurement(halfGirthChestSecond_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "half_girth_chest_third",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Half girth chest third", "Full measurement name");
- d = VTranslation::translate("Measurements", "Half girth chest third", "Full measurement description");
-
- measurements.insert(halfGirthChestThird_M, m);
- guiTexts.insert(halfGirthChestThird_M, g);
- descriptions.insert(halfGirthChestThird_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Half girth chest third", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Half girth chest third", "Full measurement description");
+ InitMeasurement(halfGirthChestThird_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "half_girth_waist",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Half girth waist", "Full measurement name");
- d = VTranslation::translate("Measurements", "Half girth waist", "Full measurement description");
-
- measurements.insert(halfGirthWaist_M, m);
- guiTexts.insert(halfGirthWaist_M, g);
- descriptions.insert(halfGirthWaist_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Half girth waist", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Half girth waist", "Full measurement description");
+ InitMeasurement(halfGirthWaist_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "half_girth_hips_considering_protruding_abdomen",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Half girth hips considering protruding abdomen",
+ g = VTranslation::translate("MeasurementsFullNames", "Half girth hips considering protruding abdomen",
"Full measurement name");
- d = VTranslation::translate("Measurements", "Half girth hips considering protruding abdomen",
+ d = VTranslation::translate("MeasurementsDescriptions", "Half girth hips considering protruding abdomen",
"Full measurement description");
-
- measurements.insert(halfGirthHipsConsideringProtrudingAbdomen_M, m);
- guiTexts.insert(halfGirthHipsConsideringProtrudingAbdomen_M, g);
- descriptions.insert(halfGirthHipsConsideringProtrudingAbdomen_M, d);
+ InitMeasurement(halfGirthHipsConsideringProtrudingAbdomen_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "half_girth_hips_excluding_protruding_abdomen",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Half girth hips excluding protruding abdomen",
+ g = VTranslation::translate("MeasurementsFullNames", "Half girth hips excluding protruding abdomen",
"Full measurement name");
- d = VTranslation::translate("Measurements", "Half girth hips excluding protruding abdomen",
+ d = VTranslation::translate("MeasurementsDescriptions", "Half girth hips excluding protruding abdomen",
"Full measurement description");
-
- measurements.insert(halfGirthHipsExcludingProtrudingAbdomen_M, m);
- guiTexts.insert(halfGirthHipsExcludingProtrudingAbdomen_M, g);
- descriptions.insert(halfGirthHipsExcludingProtrudingAbdomen_M, d);
+ InitMeasurement(halfGirthHipsExcludingProtrudingAbdomen_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "girth_knee_flexed_feet",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Girth knee flexed feet", "Full measurement name");
- d = VTranslation::translate("Measurements", "Girth knee flexed feet", "Full measurement description");
-
- measurements.insert(girthKneeFlexedFeet_M, m);
- guiTexts.insert(girthKneeFlexedFeet_M, g);
- descriptions.insert(girthKneeFlexedFeet_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Girth knee flexed feet", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Girth knee flexed feet", "Full measurement description");
+ InitMeasurement(girthKneeFlexedFeet_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "neck_transverse_diameter",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Neck transverse diameter", "Full measurement name");
- d = VTranslation::translate("Measurements", "Neck transverse diameter", "Full measurement description");
-
- measurements.insert(neckTransverseDiameter_M, m);
- guiTexts.insert(neckTransverseDiameter_M, g);
- descriptions.insert(neckTransverseDiameter_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Neck transverse diameter", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Neck transverse diameter", "Full measurement description");
+ InitMeasurement(neckTransverseDiameter_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "front_slash_shoulder_height",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Front slash shoulder height", "Full measurement name");
- d = VTranslation::translate("Measurements", "Front slash shoulder height", "Full measurement description");
-
- measurements.insert(frontSlashShoulderHeight_M, m);
- guiTexts.insert(frontSlashShoulderHeight_M, g);
- descriptions.insert(frontSlashShoulderHeight_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Front slash shoulder height", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Front slash shoulder height",
+ "Full measurement description");
+ InitMeasurement(frontSlashShoulderHeight_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "neck_to_front_waist_line",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Neck to front waist line", "Full measurement name");
- d = VTranslation::translate("Measurements", "The distance from the base of the neck to the waist line front",
- "Full measurement description");
-
- measurements.insert(neckToFrontWaistLine_M, m);
- guiTexts.insert(neckToFrontWaistLine_M, g);
- descriptions.insert(neckToFrontWaistLine_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Neck to front waist line", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "The distance from the base of the neck to the waist line "
+ "front", "Full measurement description");
+ InitMeasurement(neckToFrontWaistLine_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "hand_vertical_diameter",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Hand vertical diameter", "Full measurement name");
- d = VTranslation::translate("Measurements", "Hand vertical diameter", "Full measurement description");
-
- measurements.insert(handVerticalDiameter_M, m);
- guiTexts.insert(handVerticalDiameter_M, g);
- descriptions.insert(handVerticalDiameter_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Hand vertical diameter", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Hand vertical diameter", "Full measurement description");
+ InitMeasurement(handVerticalDiameter_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "neck_to_knee_point",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Neck to knee point", "Full measurement name");
- d = VTranslation::translate("Measurements", "Distance from neck to knee point", "Full measurement description");
-
- measurements.insert(neckToKneePoint_M, m);
- guiTexts.insert(neckToKneePoint_M, g);
- descriptions.insert(neckToKneePoint_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Neck to knee point", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Distance from neck to knee point",
+ "Full measurement description");
+ InitMeasurement(neckToKneePoint_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "waist_to_knee",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Waist to knee", "Full measurement name");
- d = VTranslation::translate("Measurements", "The distance from the waist to the knee",
+ g = VTranslation::translate("MeasurementsFullNames", "Waist to knee", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "The distance from the waist to the knee",
"Full measurement description");
-
- measurements.insert(waistToKnee_M, m);
- guiTexts.insert(waistToKnee_M, g);
- descriptions.insert(waistToKnee_M, d);
+ InitMeasurement(waistToKnee_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "shoulder_height",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Shoulder height", "Full measurement name");
- d = VTranslation::translate("Measurements", "Shoulder height", "Full measurement description");
-
- measurements.insert(shoulderHeight_M, m);
- guiTexts.insert(shoulderHeight_M, g);
- descriptions.insert(shoulderHeight_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Shoulder height", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Shoulder height", "Full measurement description");
+ InitMeasurement(shoulderHeight_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "head_height",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Head height", "Full measurement name");
- d = VTranslation::translate("Measurements", "Head height", "Full measurement description");
-
- measurements.insert(headHeight_M, m);
- guiTexts.insert(headHeight_M, g);
- descriptions.insert(headHeight_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Head height", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Head height", "Full measurement description");
+ InitMeasurement(headHeight_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "body_position",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Body position", "Full measurement name");
- d = VTranslation::translate("Measurements", "Body position", "Full measurement description");
-
- measurements.insert(bodyPosition_M, m);
- guiTexts.insert(bodyPosition_M, g);
- descriptions.insert(bodyPosition_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Body position", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Body position", "Full measurement description");
+ InitMeasurement(bodyPosition_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "arc_behind_shoulder_girdle",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Arc behind shoulder girdle", "Full measurement name");
- d = VTranslation::translate("Measurements", "Arc behind the shoulder girdle", "Full measurement description");
-
- measurements.insert(arcBehindShoulderGirdle_M, m);
- guiTexts.insert(arcBehindShoulderGirdle_M, g);
- descriptions.insert(arcBehindShoulderGirdle_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Arc behind shoulder girdle", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Arc behind the shoulder girdle",
+ "Full measurement description");
+ InitMeasurement(arcBehindShoulderGirdle_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "neck_to_neck_base",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Neck to neck base", "Full measurement name");
- d = VTranslation::translate("Measurements", "Distance from neck point to point on the base of the neck side neck"
- " girth measurement line", "Full measurement description");
-
- measurements.insert(neckToNeckBase_M, m);
- guiTexts.insert(neckToNeckBase_M, g);
- descriptions.insert(neckToNeckBase_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Neck to neck base", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Distance from neck point to point on the base of the neck "
+ "side neck girth measurement line", "Full measurement description");
+ InitMeasurement(neckToNeckBase_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "depth_waist_first",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Depth waist first", "Full measurement name");
- d = VTranslation::translate("Measurements", "Depth waist first", "Full measurement description");
-
- measurements.insert(depthWaistFirst_M, m);
- guiTexts.insert(depthWaistFirst_M, g);
- descriptions.insert(depthWaistFirst_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Depth waist first", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Depth waist first", "Full measurement description");
+ InitMeasurement(depthWaistFirst_M, m, g, d);
//=================================================================================================================
m = VTranslation::translate("Measurements", "depth_waist_second",
"Short measurement name. Don't use math symbols in name!!!!");
- g = VTranslation::translate("Measurements", "Depth waist second", "Full measurement name");
- d = VTranslation::translate("Measurements", "Depth waist second", "Full measurement description");
-
- measurements.insert(depthWaistSecond_M, m);
- guiTexts.insert(depthWaistSecond_M, g);
- descriptions.insert(depthWaistSecond_M, d);
+ g = VTranslation::translate("MeasurementsFullNames", "Depth waist second", "Full measurement name");
+ d = VTranslation::translate("MeasurementsDescriptions", "Depth waist second", "Full measurement description");
+ InitMeasurement(depthWaistSecond_M, m, g, d);
}
//---------------------------------------------------------------------------------------------------------------------
diff --git a/src/app/widgets/vapplication.h b/src/app/widgets/vapplication.h
index cb2ede052..a904cb31b 100644
--- a/src/app/widgets/vapplication.h
+++ b/src/app/widgets/vapplication.h
@@ -146,6 +146,8 @@ private:
void CorrectionsPositions(int position, int bias, QMap &tokens,
QMap &numbers);
void BiasTokens(int position, int bias, QMap &tokens) const;
+ void InitMeasurement(const QString &name, const VTranslation &m, const VTranslation &g,
+ const VTranslation &d);
};
//---------------------------------------------------------------------------------------------------------------------
diff --git a/src/app/xml/vabstractmeasurements.cpp b/src/app/xml/vabstractmeasurements.cpp
index 37c660a99..81c6a7f0c 100644
--- a/src/app/xml/vabstractmeasurements.cpp
+++ b/src/app/xml/vabstractmeasurements.cpp
@@ -51,6 +51,7 @@ VAbstractMeasurements::~VAbstractMeasurements()
*/
void VAbstractMeasurements::Measurements()
{
+ //Set of measurements common for both standard.
//head and neck
Measurement(headGirth_M);
Measurement(midNeckGirth_M);
@@ -102,6 +103,10 @@ void VAbstractMeasurements::Measurements()
Measurement(backWaistSlope_M);
Measurement(frontNeckToUpperChestHeight_M);
Measurement(frontNeckToBustHeight_M);
+ Measurement(frontWaistToUpperChest_M);
+ Measurement(frontWaistToLowerBreast_M);
+ Measurement(backWaistToUpperChest_M);
+ Measurement(strapLength_M);
//arm
Measurement(armscyeGirth_M);
Measurement(elbowGirth_M);
@@ -251,7 +256,7 @@ void VAbstractMeasurements::Measurement(const QString &tag)
const QDomNodeList nodeList = this->elementsByTagName(tag);
if (nodeList.isEmpty())
{
- qDebug()<<"Measurement" << tag <<"doesn't exist"<getMainWindow());
+ emit ClearMainWindow();
+ return;
}
}