valentina_old/src/libs/vpatterndb/vtranslatemeasurements.cpp
Roman Telezhynskyi bfd2620fad Next try to fix problem with tests.
Because different compilers and even different version from same vendor may
produce little bit different result this cause of test fails because it expect
too accurate result. We don't need such accuracy and can use variable
VGObject::accuracyPointOnLine to compare two points.

--HG--
branch : develop
2017-06-01 13:04:25 +03:00

2132 lines
160 KiB
C++

/************************************************************************
**
** @file vtranslatemeasurements.cpp
** @author Roman Telezhynskyi <dismine(at)gmail.com>
** @date 2 8, 2015
**
** @brief
** @copyright
** This source code is part of the Valentine project, a pattern making
** program, whose allow create and modeling patterns of clothing.
** Copyright (C) 2015 Valentina project
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
**
** Valentina is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation, either version 3 of the License, or
** (at your option) any later version.
**
** Valentina is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with Valentina. If not, see <http://www.gnu.org/licenses/>.
**
*************************************************************************/
#include "vtranslatemeasurements.h"
#include "../qmuparser/qmutranslation.h"
#include "measurements.h"
//---------------------------------------------------------------------------------------------------------------------
VTranslateMeasurements::VTranslateMeasurements()
:measurements(QMap<QString, qmu::QmuTranslation>()),
guiTexts(QMap<QString, qmu::QmuTranslation>()),
descriptions(QMap<QString, qmu::QmuTranslation>()),
numbers(QMap<QString, QString>()),
formulas(QMap<QString, QString>())
{
InitMeasurements();
}
//---------------------------------------------------------------------------------------------------------------------
VTranslateMeasurements::~VTranslateMeasurements()
{}
//---------------------------------------------------------------------------------------------------------------------
/**
* @brief MeasurementsFromUser translate measurement to internal look.
* @param newFormula [in|out] expression to translate
* @param position token position
* @param token token to translate
* @param bias hold change of length between translated and origin token string
* @return true if was found measurement with same name.
*/
bool VTranslateMeasurements::MeasurementsFromUser(QString &newFormula, int position, const QString &token,
int &bias) const
{
QMap<QString, qmu::QmuTranslation>::const_iterator i = measurements.constBegin();
while (i != measurements.constEnd())
{
if (token == i.value().translate())
{
newFormula.replace(position, token.length(), i.key());
bias = token.length() - i.key().length();
return true;
}
++i;
}
return false;
}
//---------------------------------------------------------------------------------------------------------------------
QString VTranslateMeasurements::MToUser(const QString &measurement) const
{
if (measurements.contains(measurement))
{
return measurements.value(measurement).translate();
}
else
{
return measurement;
}
}
//---------------------------------------------------------------------------------------------------------------------
QString VTranslateMeasurements::MNumber(const QString &measurement) const
{
if (numbers.contains(measurement))
{
return numbers.value(measurement);
}
else
{
return QString();
}
}
//---------------------------------------------------------------------------------------------------------------------
QString VTranslateMeasurements::MFormula(const QString &measurement) const
{
return formulas.value(measurement);
}
//---------------------------------------------------------------------------------------------------------------------
QString VTranslateMeasurements::GuiText(const QString &measurement) const
{
if (guiTexts.contains(measurement))
{
return guiTexts.value(measurement).translate();
}
else
{
return measurement;
}
}
//---------------------------------------------------------------------------------------------------------------------
QString VTranslateMeasurements::Description(const QString &measurement) const
{
if (descriptions.contains(measurement))
{
return descriptions.value(measurement).translate();
}
else
{
return measurement;
}
}
//---------------------------------------------------------------------------------------------------------------------
void VTranslateMeasurements::Retranslate()
{
measurements.clear();
guiTexts.clear();
descriptions.clear();
numbers.clear();
formulas.clear();
InitMeasurements();
}
//---------------------------------------------------------------------------------------------------------------------
void VTranslateMeasurements::InitMeasurements()
{
InitGroupA(); // Direct Height
InitGroupB(); // Direct Width
InitGroupC(); // Indentation
InitGroupD(); // Circumference and Arc
InitGroupE(); // Vertical
InitGroupF(); // Horizontal
InitGroupG(); // Bust
InitGroupH(); // Balance
InitGroupI(); // Arm
InitGroupJ(); // Leg
InitGroupK(); // Crotch and Rise
InitGroupL(); // Hand
InitGroupM(); // Foot
InitGroupN(); // Head
InitGroupO(); // Men & Tailoring
InitGroupP(); // Historical & Specialty
InitGroupQ(); // Patternmaking measurements
}
//---------------------------------------------------------------------------------------------------------------------
void VTranslateMeasurements::InitMeasurement(const QString &name, const qmu::QmuTranslation &m,
const qmu::QmuTranslation &g, const qmu::QmuTranslation &d,
const QString &number, const QString &formula)
{
measurements.insert(name, m);
guiTexts.insert(name, g);
descriptions.insert(name, d);
numbers.insert(name, number);
formulas.insert(name, formula);
}
#define translate(context, source, disambiguation) qmu::QmuTranslation::translate((context), (source), (disambiguation))
//---------------------------------------------------------------------------------------------------------------------
void VTranslateMeasurements::InitGroupA()
{
//Note. We can't use here function and variables because lupdate tool doesn't see string in variables and doesn't
//mark such string to translation.
qmu::QmuTranslation m;
qmu::QmuTranslation g;
qmu::QmuTranslation d;
//=================================================================================================================
m = translate("VTranslateMeasurements", "height",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Height: Total", "Full measurement name.");
d = translate("VTranslateMeasurements", "Vertical distance from crown of head to floor.",
"Full measurement description.");
InitMeasurement(height_M, m, g, d, "A01");
//=================================================================================================================
m = translate("VTranslateMeasurements", "height_neck_back",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Height: Neck Back", "Full measurement name.");
d = translate("VTranslateMeasurements", "Vertical distance from the Neck Back (cervicale vertebra) to the floor.",
"Full measurement description.");
InitMeasurement(heightNeckBack_M, m, g, d, "A02");
//=================================================================================================================
m = translate("VTranslateMeasurements", "height_scapula",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Height: Scapula", "Full measurement name.");
d = translate("VTranslateMeasurements", "Vertical distance from the Scapula (Blade point) to the floor.",
"Full measurement description.");
InitMeasurement(heightScapula_M, m, g, d, "A03");
//=================================================================================================================
m = translate("VTranslateMeasurements", "height_armpit",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Height: Armpit", "Full measurement name.");
d = translate("VTranslateMeasurements", "Vertical distance from the Armpit to the floor.",
"Full measurement description.");
InitMeasurement(heightArmpit_M, m, g, d, "A04");
//=================================================================================================================
m = translate("VTranslateMeasurements", "height_waist_side",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Height: Waist Side", "Full measurement name.");
d = translate("VTranslateMeasurements", "Vertical distance from the Waist Side to the floor.",
"Full measurement description.");
InitMeasurement(heightWaistSide_M, m, g, d, "A05");
//=================================================================================================================
m = translate("VTranslateMeasurements", "height_hip",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Height: Hip", "Full measurement name.");
d = translate("VTranslateMeasurements", "Vertical distance from the Hip level to the floor.",
"Full measurement description.");
InitMeasurement(heightHip_M, m, g, d, "A06");
//=================================================================================================================
m = translate("VTranslateMeasurements", "height_gluteal_fold",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Height: Gluteal Fold", "Full measurement name.");
d = translate("VTranslateMeasurements", "Vertical distance from the Gluteal fold, where the Gluteal muscle meets "
"the top of the back thigh, to the floor.", "Full measurement description.");
InitMeasurement(heightGlutealFold_M, m, g, d, "A07");
//=================================================================================================================
m = translate("VTranslateMeasurements", "height_knee",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Height: Knee", "Full measurement name.");
d = translate("VTranslateMeasurements", "Vertical distance from the fold at the back of the Knee to the floor.",
"Full measurement description.");
InitMeasurement(heightKnee_M, m, g, d, "A08");
//=================================================================================================================
m = translate("VTranslateMeasurements", "height_calf",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Height: Calf", "Full measurement name.");
d = translate("VTranslateMeasurements", "Vertical distance from the widest point of the calf to the floor.",
"Full measurement description.");
InitMeasurement(heightCalf_M, m, g, d, "A09");
//=================================================================================================================
m = translate("VTranslateMeasurements", "height_ankle_high",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Height: Ankle High", "Full measurement name.");
d = translate("VTranslateMeasurements", "Vertical distance from the deepest indentation of the back of the ankle "
"to the floor.", "Full measurement description.");
InitMeasurement(heightAnkleHigh_M, m, g, d, "A10");
//=================================================================================================================
m = translate("VTranslateMeasurements", "height_ankle",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Height: Ankle", "Full measurement name.");
d = translate("VTranslateMeasurements", "Vertical distance from point where the front leg meets the foot to the "
"floor.", "Full measurement description.");
InitMeasurement(heightAnkle_M, m, g, d, "A11");
//=================================================================================================================
m = translate("VTranslateMeasurements", "height_highhip",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Height: Highhip", "Full measurement name.");
d = translate("VTranslateMeasurements", "Vertical distance from the Highhip level, where front abdomen is most "
"prominent, to the floor.", "Full measurement description.");
InitMeasurement(heightHighhip_M, m, g, d, "A12");
//=================================================================================================================
m = translate("VTranslateMeasurements", "height_waist_front",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Height: Waist Front", "Full measurement name.");
d = translate("VTranslateMeasurements", "Vertical distance from the Waist Front to the floor.",
"Full measurement description.");
InitMeasurement(heightWaistFront_M, m, g, d, "A13");
//=================================================================================================================
m = translate("VTranslateMeasurements", "height_bustpoint",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Height: Bustpoint", "Full measurement name.");
d = translate("VTranslateMeasurements", "Vertical distance from Bustpoint to the floor.",
"Full measurement description.");
InitMeasurement(heightBustpoint_M, m, g, d, "A14");
//=================================================================================================================
m = translate("VTranslateMeasurements", "height_shoulder_tip",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Height: Shoulder Tip", "Full measurement name.");
d = translate("VTranslateMeasurements", "Vertical distance from the Shoulder Tip to the floor.",
"Full measurement description.");
InitMeasurement(heightShoulderTip_M, m, g, d, "A15");
//=================================================================================================================
m = translate("VTranslateMeasurements", "height_neck_front",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Height: Neck Front", "Full measurement name.");
d = translate("VTranslateMeasurements", "Vertical distance from the Neck Front to the floor.",
"Full measurement description.");
InitMeasurement(heightNeckFront_M, m, g, d, "A16");
//=================================================================================================================
m = translate("VTranslateMeasurements", "height_neck_side",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Height: Neck Side", "Full measurement name.");
d = translate("VTranslateMeasurements", "Vertical distance from the Neck Side to the floor.",
"Full measurement description.");
InitMeasurement(heightNeckSide_M, m, g, d, "A17");
//=================================================================================================================
m = translate("VTranslateMeasurements", "height_neck_back_to_knee",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Height: Neck Back to Knee", "Full measurement name.");
d = translate("VTranslateMeasurements", "Vertical distance from the Neck Back (cervicale vertebra) to the fold at "
"the back of the knee.", "Full measurement description.");
InitMeasurement(heightNeckBackToKnee_M, m, g, d, "A18", "(height_neck_back - height_knee)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "height_waist_side_to_knee",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Height: Waist Side to Knee", "Full measurement name.");
d = translate("VTranslateMeasurements",
"Vertical distance from the Waist Side to the fold at the back of the knee.",
"Full measurement description.");
InitMeasurement(heightWaistSideToKnee_M, m, g, d, "A19", "(height_waist_side - height_knee)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "height_waist_side_to_hip",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Height: Waist Side to Hip", "Full measurement name.");
d = translate("VTranslateMeasurements", "Vertical distance from the Waist Side to the Hip level.",
"Full measurement description.");
InitMeasurement(heightWaistSideToHip_M, m, g, d, "A20", "(height_waist_side - height_hip)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "height_knee_to_ankle",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Height: Knee to Ankle", "Full measurement name.");
d = translate("VTranslateMeasurements", "Vertical distance from the fold at the back of the knee to the point "
"where the front leg meets the top of the foot.", "Full measurement description.");
InitMeasurement(heightKneeToAnkle_M, m, g, d, "A21", "(height_knee - height_ankle)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "height_neck_back_to_waist_side",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Height: Neck Back to Waist Side", "Full measurement name.");
d = translate("VTranslateMeasurements", "Vertical distance from Neck Back to Waist Side. ('Height: Neck Back' - "
"'Height: Waist Side').", "Full measurement description.");
InitMeasurement(heightNeckBackToWaistSide_M, m, g, d, "A22", "(height_neck_back - height_waist_side)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "height_waist_back",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Height: Waist Back", "Full measurement name.");
d = translate("VTranslateMeasurements", "Vertical height from Waist Back to floor. ('Height: Waist Front'' - "
"'Leg: Crotch to floor'').", "Full measurement description.");
InitMeasurement(heightWaistBack_M, m, g, d, "A23", "(height_waist_front - leg_crotch_to_floor)");
//=================================================================================================================
}
//---------------------------------------------------------------------------------------------------------------------
void VTranslateMeasurements::InitGroupB()
{
//Note. We can't use here function and variables because lupdate tool doesn't see string in variables and doesn't
//mark such string to translation.
qmu::QmuTranslation m;
qmu::QmuTranslation g;
qmu::QmuTranslation d;
//=================================================================================================================
m = translate("VTranslateMeasurements", "width_shoulder",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Width: Shoulder", "Full measurement name.");
d = translate("VTranslateMeasurements", "Horizontal distance from Shoulder Tip to Shoulder Tip.",
"Full measurement description.");
InitMeasurement(widthShoulder_M, m, g, d, "B01");
//=================================================================================================================
m = translate("VTranslateMeasurements", "width_bust",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Width: Bust", "Full measurement name.");
d = translate("VTranslateMeasurements", "Horizontal distance from Bust Side to Bust Side.",
"Full measurement description.");
InitMeasurement(widthBust_M, m, g, d, "B02");
//=================================================================================================================
m = translate("VTranslateMeasurements", "width_waist",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Width: Waist", "Full measurement name.");
d = translate("VTranslateMeasurements", "Horizontal distance from Waist Side to Waist Side.",
"Full measurement description.");
InitMeasurement(widthWaist_M, m, g, d, "B03");
//=================================================================================================================
m = translate("VTranslateMeasurements", "width_hip",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Width: Hip", "Full measurement name.");
d = translate("VTranslateMeasurements", "Horizontal distance from Hip Side to Hip Side.",
"Full measurement description.");
InitMeasurement(widthHip_M, m, g, d, "B04");
//=================================================================================================================
m = translate("VTranslateMeasurements", "width_abdomen_to_hip",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Width: Abdomen to Hip", "Full measurement name.");
d = translate("VTranslateMeasurements", "Horizontal distance from the greatest abdomen prominence to the greatest "
"hip prominence.", "Full measurement description.");
InitMeasurement(widthAbdomenToHip_M, m, g, d, "B05");
//=================================================================================================================
}
//---------------------------------------------------------------------------------------------------------------------
void VTranslateMeasurements::InitGroupC()
{
//Note. We can't use here function and variables because lupdate tool doesn't see string in variables and doesn't
//mark such string to translation.
qmu::QmuTranslation m;
qmu::QmuTranslation g;
qmu::QmuTranslation d;
//=================================================================================================================
m = translate("VTranslateMeasurements", "indent_neck_back",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Indent: Neck Back", "Full measurement name.");
d = translate("VTranslateMeasurements", "Horizontal distance from Scapula (Blade point) to the Neck Back.",
"Full measurement description.");
InitMeasurement(indentNeckBack_M, m, g, d, "C01");
//=================================================================================================================
m = translate("VTranslateMeasurements", "indent_waist_back",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Indent: Waist Back", "Full measurement name.");
d = translate("VTranslateMeasurements", "Horizontal distance between a flat stick, placed to touch Hip and "
"Scapula, and Waist Back.", "Full measurement description.");
InitMeasurement(indentWaistBack_M, m, g, d, "C02");
//=================================================================================================================
m = translate("VTranslateMeasurements", "indent_ankle_high",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Indent: Ankle High", "Full measurement name.");
d = translate("VTranslateMeasurements", "Horizontal Distance between a flat stick, placed perpendicular to Heel, "
"and the greatest indentation of Ankle.", "Full measurement description.");
InitMeasurement(indentAnkleHigh_M, m, g, d, "C03");
//=================================================================================================================
}
//---------------------------------------------------------------------------------------------------------------------
void VTranslateMeasurements::InitGroupD()
{
//Note. We can't use here function and variables because lupdate tool doesn't see string in variables and doesn't
//mark such string to translation.
qmu::QmuTranslation m;
qmu::QmuTranslation g;
qmu::QmuTranslation d;
//=================================================================================================================
m = translate("VTranslateMeasurements", "hand_palm_length",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Hand: Palm length", "Full measurement name.");
d = translate("VTranslateMeasurements", "Length from Wrist line to base of middle finger.",
"Full measurement description.");
InitMeasurement(handPalmLength_M, m, g, d, "D01");
//=================================================================================================================
m = translate("VTranslateMeasurements", "hand_length",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Hand: Length", "Full measurement name.");
d = translate("VTranslateMeasurements", "Length from Wrist line to end of middle finger.",
"Full measurement description.");
InitMeasurement(handLength_M, m, g, d, "D02");
//=================================================================================================================
m = translate("VTranslateMeasurements", "hand_palm_width",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Hand: Palm width", "Full measurement name.");
d = translate("VTranslateMeasurements", "Measure where Palm is widest.", "Full measurement description.");
InitMeasurement(handPalmWidth_M, m, g, d, "D03");
//=================================================================================================================
m = translate("VTranslateMeasurements", "hand_palm_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Hand: Palm circumference", "Full measurement name.");
d = translate("VTranslateMeasurements", "Circumference where Palm is widest.", "Full measurement description.");
InitMeasurement(handPalmCirc_M, m, g, d, "D04");
//=================================================================================================================
m = translate("VTranslateMeasurements", "hand_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Hand: Circumference", "Full measurement name.");
d = translate("VTranslateMeasurements", "Tuck thumb toward smallest finger, bring fingers close together. Measure "
"circumference around widest part of hand.", "Full measurement description.");
InitMeasurement(handCirc_M, m, g, d, "D05");
//=================================================================================================================
}
//---------------------------------------------------------------------------------------------------------------------
void VTranslateMeasurements::InitGroupE()
{
//Note. We can't use here function and variables because lupdate tool doesn't see string in variables and doesn't
//mark such string to translation.
qmu::QmuTranslation m;
qmu::QmuTranslation g;
qmu::QmuTranslation d;
//=================================================================================================================
m = translate("VTranslateMeasurements", "foot_width",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Foot: Width", "Full measurement name.");
d = translate("VTranslateMeasurements", "Measure at widest part of foot.", "Full measurement description.");
InitMeasurement(footWidth_M, m, g, d, "E01");
//=================================================================================================================
m = translate("VTranslateMeasurements", "foot_length",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Foot: Length", "Full measurement name.");
d = translate("VTranslateMeasurements", "Measure from back of heel to end of longest toe.",
"Full measurement description.");
InitMeasurement(footLength_M, m, g, d, "E02");
//=================================================================================================================
m = translate("VTranslateMeasurements", "foot_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Foot: Circumference", "Full measurement name.");
d = translate("VTranslateMeasurements", "Measure circumference around widest part of foot.",
"Full measurement description.");
InitMeasurement(footCirc_M, m, g, d, "E03");
//=================================================================================================================
m = translate("VTranslateMeasurements", "foot_instep_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Foot: Instep circumference", "Full measurement name.");
d = translate("VTranslateMeasurements", "Measure circumference at tallest part of instep.",
"Full measurement description.");
InitMeasurement(footInstepCirc_M, m, g, d, "E04");
//=================================================================================================================
}
//---------------------------------------------------------------------------------------------------------------------
void VTranslateMeasurements::InitGroupF()
{
//Note. We can't use here function and variables because lupdate tool doesn't see string in variables and doesn't
//mark such string to translation.
qmu::QmuTranslation m;
qmu::QmuTranslation g;
qmu::QmuTranslation d;
//=================================================================================================================
m = translate("VTranslateMeasurements", "head_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Head: Circumference", "Full measurement name.");
d = translate("VTranslateMeasurements", "Measure circumference at largest level of head.",
"Full measurement description.");
InitMeasurement(headCirc_M, m, g, d, "F01");
//=================================================================================================================
m = translate("VTranslateMeasurements", "head_length",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Head: Length", "Full measurement name.");
d = translate("VTranslateMeasurements", "Vertical distance from Head Crown to bottom of jaw.",
"Full measurement description.");
InitMeasurement(headLength_M, m, g, d, "F02");
//=================================================================================================================
m = translate("VTranslateMeasurements", "head_depth",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Head: Depth", "Full measurement name.");
d = translate("VTranslateMeasurements", "Horizontal distance from front of forehead to back of head.",
"Full measurement description.");
InitMeasurement(headDepth_M, m, g, d, "F03");
//=================================================================================================================
m = translate("VTranslateMeasurements", "head_width",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Head: Width", "Full measurement name.");
d = translate("VTranslateMeasurements", "Horizontal distance from Head Side to Head Side, where Head is widest.",
"Full measurement description.");
InitMeasurement(headWidth_M, m, g, d, "F04");
//=================================================================================================================
m = translate("VTranslateMeasurements", "head_crown_to_neck_back",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Head: Crown to Neck Back", "Full measurement name.");
d = translate("VTranslateMeasurements", "Vertical distance from Crown to Neck Back. ('Height: Total' - 'Height: "
"Neck Back').", "Full measurement description.");
InitMeasurement(headCrownToNeckBack_M, m, g, d, "F05", "(height - height_neck_back)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "head_chin_to_neck_back",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Head: Chin to Neck Back", "Full measurement name.");
d = translate("VTranslateMeasurements",
"Vertical distance from Chin to Neck Back. ('Height' - 'Height: Neck Back' - 'Head: Length')",
"Full measurement description.");
InitMeasurement(headChinToNeckBack_M, m, g, d, "F06", "(height - height_neck_back - head_length)");
//=================================================================================================================
}
//---------------------------------------------------------------------------------------------------------------------
void VTranslateMeasurements::InitGroupG()
{
//Note. We can't use here function and variables because lupdate tool doesn't see string in variables and doesn't
//mark such string to translation.
qmu::QmuTranslation m;
qmu::QmuTranslation g;
qmu::QmuTranslation d;
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_mid_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck circumference, midsection", "Full measurement name.");
d = translate("VTranslateMeasurements", "Circumference of Neck midsection, about halfway between jaw and torso.",
"Full measurement description.");
InitMeasurement(neckMidCirc_M, m, g, d, "G01");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck circumference", "Full measurement name.");
d = translate("VTranslateMeasurements",
"Neck circumference at base of Neck, touching Neck Back, Neck Sides, and Neck Front.",
"Full measurement description.");
InitMeasurement(neckCirc_M, m, g, d, "G02");
//=================================================================================================================
m = translate("VTranslateMeasurements", "highbust_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Highbust circumference", "Full measurement name.");
d = translate("VTranslateMeasurements", "Circumference at Highbust, following shortest distance between Armfolds "
"across chest, high under armpits.", "Full measurement description.");
InitMeasurement(highbustCirc_M, m, g, d, "G03");
//=================================================================================================================
m = translate("VTranslateMeasurements", "bust_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Bust circumference", "Full measurement name.");
d = translate("VTranslateMeasurements", "Circumference around Bust, parallel to floor.",
"Full measurement description.");
InitMeasurement(bustCirc_M, m, g, d, "G04");
//=================================================================================================================
m = translate("VTranslateMeasurements", "lowbust_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Lowbust circumference", "Full measurement name.");
d = translate("VTranslateMeasurements", "Circumference around LowBust under the breasts, parallel to floor.",
"Full measurement description.");
InitMeasurement(lowbustCirc_M, m, g, d, "G05");
//=================================================================================================================
m = translate("VTranslateMeasurements", "rib_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Rib circumference", "Full measurement name.");
d = translate("VTranslateMeasurements",
"Circumference around Ribs at level of the lowest rib at the side, parallel to floor.",
"Full measurement description.");
InitMeasurement(ribCirc_M, m, g, d, "G06");
//=================================================================================================================
m = translate("VTranslateMeasurements", "waist_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Waist circumference", "Full measurement name.");
d = translate("VTranslateMeasurements",
"Circumference around Waist, following natural contours. Waists are typically higher in back.",
"Full measurement description.");
InitMeasurement(waistCirc_M, m, g, d, "G07");
//=================================================================================================================
m = translate("VTranslateMeasurements", "highhip_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Highhip circumference", "Full measurement name.");
d = translate("VTranslateMeasurements",
"Circumference around Highhip, where Abdomen protrusion is greatest, parallel to floor.",
"Full measurement description.");
InitMeasurement(highhipCirc_M, m, g, d, "G08");
//=================================================================================================================
m = translate("VTranslateMeasurements", "hip_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Hip circumference", "Full measurement name.");
d = translate("VTranslateMeasurements",
"Circumference around Hip where Hip protrusion is greatest, parallel to floor.",
"Full measurement description.");
InitMeasurement(hipCirc_M, m, g, d, "G09");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_arc_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck arc, front", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Neck Side to Neck Side through Neck Front.",
"Full measurement description.");
InitMeasurement(neckArcF_M, m, g, d, "G10");
//=================================================================================================================
m = translate("VTranslateMeasurements", "highbust_arc_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Highbust arc, front", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest.",
"Full measurement description.");
InitMeasurement(highbustArcF_M, m, g, d, "G11");
//=================================================================================================================
m = translate("VTranslateMeasurements", "bust_arc_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Bust arc, front", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Bust Side to Bust Side across chest.",
"Full measurement description.");
InitMeasurement(bustArcF_M, m, g, d, "G12");
//=================================================================================================================
m = translate("VTranslateMeasurements", "lowbust_arc_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Lowbust arc, front", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Lowbust Side to Lowbust Side across front.",
"Full measurement description.");
InitMeasurement(lowbustArcF_M, m, g, d, "G13");
//=================================================================================================================
m = translate("VTranslateMeasurements", "rib_arc_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Rib arc, front", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Rib Side to Rib Side, across front.",
"Full measurement description.");
InitMeasurement(ribArcF_M, m, g, d, "G14");
//=================================================================================================================
m = translate("VTranslateMeasurements", "waist_arc_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Waist arc, front", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Waist Side to Waist Side across front.",
"Full measurement description.");
InitMeasurement(waistArcF_M, m, g, d, "G15");
//=================================================================================================================
m = translate("VTranslateMeasurements", "highhip_arc_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Highhip arc, front", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Highhip Side to Highhip Side across front.",
"Full measurement description.");
InitMeasurement(highhipArcF_M, m, g, d, "G16");
//=================================================================================================================
m = translate("VTranslateMeasurements", "hip_arc_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Hip arc, front", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Hip Side to Hip Side across Front.",
"Full measurement description.");
InitMeasurement(hipArcF_M, m, g, d, "G17");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_arc_half_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck arc, front, half", "Full measurement name.");
d = translate("VTranslateMeasurements", "Half of 'Neck arc, front'. ('Neck arc, front' / 2).",
"Full measurement description.");
InitMeasurement(neckArcHalfF_M, m, g, d, "G18", "(neck_arc_f/2)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "highbust_arc_half_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Highbust arc, front, half", "Full measurement name.");
d = translate("VTranslateMeasurements",
"Half of 'Highbust arc, front'. From Highbust Front to Highbust Side. ('Highbust arc, front' / 2).",
"Full measurement description.");
InitMeasurement(highbustArcHalfF_M, m, g, d, "G19", "(highbust_arc_f/2)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "bust_arc_half_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Bust arc, front, half", "Full measurement name.");
d = translate("VTranslateMeasurements", "Half of 'Bust arc, front'. ('Bust arc, front'/2).",
"Full measurement description.");
InitMeasurement(bustArcHalfF_M, m, g, d, "G20", "(bust_arc_f/2)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "lowbust_arc_half_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Lowbust arc, front, half", "Full measurement name.");
d = translate("VTranslateMeasurements", "Half of 'Lowbust arc, front'. ('Lowbust Arc, front' / 2).",
"Full measurement description.");
InitMeasurement(lowbustArcHalfF_M, m, g, d, "G21", "(lowbust_arc_f/2)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "rib_arc_half_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Rib arc, front, half", "Full measurement name.");
d = translate("VTranslateMeasurements", "Half of 'Rib arc, front'. ('Rib Arc, front' / 2).",
"Full measurement description.");
InitMeasurement(ribArcHalfF_M, m, g, d, "G22", "(rib_arc_f/2)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "waist_arc_half_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Waist arc, front, half", "Full measurement name.");
d = translate("VTranslateMeasurements", "Half of 'Waist arc, front'. ('Waist arc, front' / 2).",
"Full measurement description.");
InitMeasurement(waistArcHalfF_M, m, g, d, "G23", "(waist_arc_f/2)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "highhip_arc_half_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Highhip arc, front, half", "Full measurement name.");
d = translate("VTranslateMeasurements", "Half of 'Highhip arc, front'. ('Highhip arc, front' / 2).",
"Full measurement description.");
InitMeasurement(highhipArcHalfF_M, m, g, d, "G24", "(highhip_arc_f/2)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "hip_arc_half_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Hip arc, front, half", "Full measurement name.");
d = translate("VTranslateMeasurements", "Half of 'Hip arc, front'. ('Hip arc, front' / 2).",
"Full measurement description.");
InitMeasurement(hipArcHalfF_M, m, g, d, "G25", "(hip_arc_f/2)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_arc_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck arc, back", "Full measurement name.");
d = translate("VTranslateMeasurements",
"From Neck Side to Neck Side across back. ('Neck circumference' - 'Neck arc, front').",
"Full measurement description.");
InitMeasurement(neckArcB_M, m, g, d, "G26", "(neck_circ - neck_arc_f)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "highbust_arc_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Highbust arc, back", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Highbust Side to Highbust Side across back. ('Highbust "
"circumference' - 'Highbust arc, front').", "Full measurement description.");
InitMeasurement(highbustArcB_M, m, g, d, "G27", "(highbust_circ - highbust_arc_f)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "bust_arc_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Bust arc, back", "Full measurement name.");
d = translate("VTranslateMeasurements",
"From Bust Side to Bust Side across back. ('Bust circumference' - 'Bust arc, front').",
"Full measurement description.");
InitMeasurement(bustArcB_M, m, g, d, "G28", "(bust_circ - bust_arc_f)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "lowbust_arc_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Lowbust arc, back", "Full measurement name.");
d = translate("VTranslateMeasurements",
"From Lowbust Side to Lowbust Side across back. ('Lowbust circumference' - 'Lowbust arc, front').",
"Full measurement description.");
InitMeasurement(lowbustArcB_M, m, g, d, "G29", "(lowbust_circ - lowbust_arc_f)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "rib_arc_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Rib arc, back", "Full measurement name.");
d = translate("VTranslateMeasurements",
"From Rib Side to Rib side across back. ('Rib circumference' - 'Rib arc, front').",
"Full measurement description.");
InitMeasurement(ribArcB_M, m, g, d, "G30", "(rib_circ - rib_arc_f)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "waist_arc_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Waist arc, back", "Full measurement name.");
d = translate("VTranslateMeasurements",
"From Waist Side to Waist Side across back. ('Waist circumference' - 'Waist arc, front').",
"Full measurement description.");
InitMeasurement(waistArcB_M, m, g, d, "G31", "(waist_circ - waist_arc_f)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "highhip_arc_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Highhip arc, back", "Full measurement name.");
d = translate("VTranslateMeasurements",
"From Highhip Side to Highhip Side across back. ('Highhip circumference' - 'Highhip arc, front').",
"Full measurement description.");
InitMeasurement(highhipArcB_M, m, g, d, "G32", "(highhip_circ - highhip_arc_f)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "hip_arc_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Hip arc, back", "Full measurement name.");
d = translate("VTranslateMeasurements",
"From Hip Side to Hip Side across back. ('Hip circumference' - 'Hip arc, front').",
"Full measurement description.");
InitMeasurement(hipArcB_M, m, g, d, "G33", "(hip_circ - hip_arc_f)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_arc_half_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck arc, back, half", "Full measurement name.");
d = translate("VTranslateMeasurements", "Half of 'Neck arc, back'. ('Neck arc, back' / 2).",
"Full measurement description.");
InitMeasurement(neckArcHalfB_M, m, g, d, "G34", "(neck_arc_b/2)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "highbust_arc_half_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Highbust arc, back, half", "Full measurement name.");
d = translate("VTranslateMeasurements",
"Half of 'Highbust arc, back'. From Highbust Back to Highbust Side. ('Highbust arc, back' / 2).",
"Full measurement description.");
InitMeasurement(highbustArcHalfB_M, m, g, d, "G35", "(highbust_arc_b/2)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "bust_arc_half_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Bust arc, back, half", "Full measurement name.");
d = translate("VTranslateMeasurements", "Half of 'Bust arc, back'. ('Bust arc, back' / 2).",
"Full measurement description.");
InitMeasurement(bustArcHalfB_M, m, g, d, "G36", "(bust_arc_b/2)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "lowbust_arc_half_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Lowbust arc, back, half", "Full measurement name.");
d = translate("VTranslateMeasurements", "Half of 'Lowbust Arc, back'. ('Lowbust arc, back' / 2).",
"Full measurement description.");
InitMeasurement(lowbustArcHalfB_M, m, g, d, "G37", "(lowbust_arc_b/2)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "rib_arc_half_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Rib arc, back, half", "Full measurement name.");
d = translate("VTranslateMeasurements", "Half of 'Rib arc, back'. ('Rib arc, back' / 2).",
"Full measurement description.");
InitMeasurement(ribArcHalfB_M, m, g, d, "G38", "(rib_arc_b/2)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "waist_arc_half_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Waist arc, back, half", "Full measurement name.");
d = translate("VTranslateMeasurements", "Half of 'Waist arc, back'. ('Waist arc, back' / 2).",
"Full measurement description.");
InitMeasurement(waistArcHalfB_M, m, g, d, "G39", "(waist_arc_b/2)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "highhip_arc_half_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Highhip arc, back, half", "Full measurement name.");
d = translate("VTranslateMeasurements",
"Half of 'Highhip arc, back'. From Highhip Back to Highbust Side. ('Highhip arc, back'/ 2).",
"Full measurement description.");
InitMeasurement(highhipArcHalfB_M, m, g, d, "G40", "(highhip_arc_b/2)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "hip_arc_half_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Hip arc, back, half", "Full measurement name.");
d = translate("VTranslateMeasurements", "Half of 'Hip arc, back'. ('Hip arc, back' / 2).",
"Full measurement description.");
InitMeasurement(hipArcHalfB_M, m, g, d, "G41", "(hip_arc_b/2)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "hip_with_abdomen_arc_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Hip arc with Abdomen, front", "Full measurement name.");
d = translate("VTranslateMeasurements",
"Curve stiff paper around front of abdomen, tape at sides. Measure from Hip Side to Hip Side over "
"paper across front.", "Full measurement description.");
InitMeasurement(hipWithAbdomenArcF_M, m, g, d, "G42");
//=================================================================================================================
m = translate("VTranslateMeasurements", "body_armfold_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Body circumference at Armfold level", "Full measurement name.");
d = translate("VTranslateMeasurements", "Measure around arms and torso at Armfold level.",
"Full measurement description.");
InitMeasurement(bodyArmfoldCirc_M, m, g, d, "G43");
//=================================================================================================================
m = translate("VTranslateMeasurements", "body_bust_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Body circumference at Bust level", "Full measurement name.");
d = translate("VTranslateMeasurements", "Measure around arms and torso at Bust level.",
"Full measurement description.");
InitMeasurement(bodyBustCirc_M, m, g, d, "G44");
//=================================================================================================================
m = translate("VTranslateMeasurements", "body_torso_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Body circumference of full torso", "Full measurement name.");
d = translate("VTranslateMeasurements",
"Circumference around torso from mid-shoulder around crotch back up to mid-shoulder.",
"Full measurement description.");
InitMeasurement(bodyTorsoCirc_M, m, g, d, "G45");
//=================================================================================================================
m = translate("VTranslateMeasurements", "hip_circ_with_abdomen",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Hip circumference, including Abdomen", "Full measurement name.");
d = translate("VTranslateMeasurements",
"Measurement at Hip level, including the depth of the Abdomen. (Hip arc, back + Hip arc with "
"abdomen, front).", "Full measurement description.");
InitMeasurement(hipCircWithAbdomen_M, m, g, d, "G46", "(hip_arc_b + hip_with_abdomen_arc_f)");
//=================================================================================================================
}
//---------------------------------------------------------------------------------------------------------------------
void VTranslateMeasurements::InitGroupH()
{
//Note. We can't use here function and variables because lupdate tool doesn't see string in variables and doesn't
//mark such string to translation.
qmu::QmuTranslation m;
qmu::QmuTranslation g;
qmu::QmuTranslation d;
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_front_to_waist_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Front to Waist Front", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Neck Front, over tape between Breastpoints, down to Waist Front.",
"Full measurement description.");
InitMeasurement(neckFrontToWaistF_M, m, g, d, "H01");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_front_to_waist_flat_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Front to Waist Front flat", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Neck Front down between breasts to Waist Front.",
"Full measurement description.");
InitMeasurement(neckFrontToWaistFlatF_M, m, g, d, "H02");
//=================================================================================================================
m = translate("VTranslateMeasurements", "armpit_to_waist_side",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Armpit to Waist Side", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Armpit down to Waist Side.", "Full measurement description.");
InitMeasurement(armpitToWaistSide_M, m, g, d, "H03");
//=================================================================================================================
m = translate("VTranslateMeasurements", "shoulder_tip_to_waist_side_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Shoulder Tip to Waist Side, front", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Shoulder Tip, curving around Armscye Front, then down to Waist Side.",
"Full measurement description.");
InitMeasurement(shoulderTipToWaistSideF_M, m, g, d, "H04");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_side_to_waist_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Side to Waist level, front", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Neck Side straight down front to Waist level.",
"Full measurement description.");
InitMeasurement(neckSideToWaistF_M, m, g, d, "H05");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_side_to_waist_bustpoint_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Side to Waist level, through Bustpoint", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Neck Side over Bustpoint to Waist level, forming a straight line.",
"Full measurement description.");
InitMeasurement(neckSideToWaistBustpointF_M, m, g, d, "H06");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_front_to_highbust_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Front to Highbust Front", "Full measurement name.");
d = translate("VTranslateMeasurements", "Neck Front down to Highbust Front.", "Full measurement description.");
InitMeasurement(neckFrontToHighbustF_M, m, g, d, "H07");
//=================================================================================================================
m = translate("VTranslateMeasurements", "highbust_to_waist_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Highbust Front to Waist Front", "Full measurement name.");
d = translate("VTranslateMeasurements",
"From Highbust Front to Waist Front. Use tape to bridge gap between Bustpoints. ('Neck Front to "
"Waist Front' - 'Neck Front to Highbust Front').", "Full measurement description.");
InitMeasurement(highbustToWaistF_M, m, g, d, "H08", "(neck_front_to_waist_f - neck_front_to_highbust_f)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_front_to_bust_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Front to Bust Front", "Full measurement name.");
d = translate("VTranslateMeasurements",
"From Neck Front down to Bust Front. Requires tape to cover gap between Bustpoints.",
"Full measurement description.");
InitMeasurement(neckFrontToBustF_M, m, g, d, "H09");
//=================================================================================================================
m = translate("VTranslateMeasurements", "bust_to_waist_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Bust Front to Waist Front", "Full measurement name.");
d = translate("VTranslateMeasurements",
"From Bust Front down to Waist level. ('Neck Front to Waist Front' - 'Neck Front to Bust Front').",
"Full measurement description.");
InitMeasurement(bustToWaistF_M, m, g, d, "H10", "(neck_front_to_waist_f - neck_front_to_bust_f)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "lowbust_to_waist_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Lowbust Front to Waist Front", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Lowbust Front down to Waist Front.", "Full measurement description.");
InitMeasurement(lowbustToWaistF_M, m, g, d, "H11");
//=================================================================================================================
m = translate("VTranslateMeasurements", "rib_to_waist_side",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Rib Side to Waist Side", "Full measurement name.");
d = translate("VTranslateMeasurements", "From lowest rib at side down to Waist Side.",
"Full measurement description.");
InitMeasurement(ribToWaistSide_M, m, g, d, "H12");
//=================================================================================================================
m = translate("VTranslateMeasurements", "shoulder_tip_to_armfold_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Shoulder Tip to Armfold Front", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Shoulder Tip around Armscye down to Armfold Front.",
"Full measurement description.");
InitMeasurement(shoulderTipToArmfoldF_M, m, g, d, "H13");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_side_to_bust_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Side to Bust level, front", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Neck Side straight down front to Bust level.",
"Full measurement description.");
InitMeasurement(neckSideToBustF_M, m, g, d, "H14");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_side_to_highbust_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Side to Highbust level, front", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Neck Side straight down front to Highbust level.",
"Full measurement description.");
InitMeasurement(neckSideToHighbustF_M, m, g, d, "H15");
//=================================================================================================================
m = translate("VTranslateMeasurements", "shoulder_center_to_highbust_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Shoulder center to Highbust level, front", "Full measurement name.");
d = translate("VTranslateMeasurements", "From mid-Shoulder down front to Highbust level, aimed at Bustpoint.",
"Full measurement description.");
InitMeasurement(shoulderCenterToHighbustF_M, m, g, d, "H16");
//=================================================================================================================
m = translate("VTranslateMeasurements", "shoulder_tip_to_waist_side_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Shoulder Tip to Waist Side, back", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Shoulder Tip, curving around Armscye Back, then down to Waist Side.",
"Full measurement description.");
InitMeasurement(shoulderTipToWaistSideB_M, m, g, d, "H17");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_side_to_waist_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Side to Waist level, back", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Neck Side straight down back to Waist level.",
"Full measurement description.");
InitMeasurement(neckSideToWaistB_M, m, g, d, "H18");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_back_to_waist_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Back to Waist Back", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Neck Back down to Waist Back.", "Full measurement description.");
InitMeasurement(neckBackToWaistB_M, m, g, d, "H19");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_side_to_waist_scapula_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Side to Waist level, through Scapula", "Full measurement name.");
d = translate("VTranslateMeasurements",
"From Neck Side across Scapula down to Waist level, forming a straight line.",
"Full measurement description.");
InitMeasurement(neckSideToWaistScapulaB_M, m, g, d, "H20");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_back_to_highbust_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Back to Highbust Back", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Neck Back down to Highbust Back.", "Full measurement description.");
InitMeasurement(neckBackToHighbustB_M, m, g, d, "H21");
//=================================================================================================================
m = translate("VTranslateMeasurements", "highbust_to_waist_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Highbust Back to Waist Back", "Full measurement name.");
d = translate("VTranslateMeasurements",
"From Highbust Back down to Waist Back. ('Neck Back to Waist Back' - 'Neck Back to Highbust Back').",
"Full measurement description.");
InitMeasurement(highbustToWaistB_M, m, g, d, "H22", "(neck_back_to_waist_b - neck_back_to_highbust_b)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_back_to_bust_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Back to Bust Back", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Neck Back down to Bust Back.", "Full measurement description.");
InitMeasurement(neckBackToBustB_M, m, g, d, "H23");
//=================================================================================================================
m = translate("VTranslateMeasurements", "bust_to_waist_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Bust Back to Waist Back", "Full measurement name.");
d = translate("VTranslateMeasurements",
"From Bust Back down to Waist level. ('Neck Back to Waist Back' - 'Neck Back to Bust Back').",
"Full measurement description.");
InitMeasurement(bustToWaistB_M, m, g, d, "H24", "(neck_back_to_waist_b - neck_back_to_bust_b)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "lowbust_to_waist_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Lowbust Back to Waist Back", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Lowbust Back down to Waist Back.", "Full measurement description.");
InitMeasurement(lowbustToWaistB_M, m, g, d, "H25");
//=================================================================================================================
m = translate("VTranslateMeasurements", "shoulder_tip_to_armfold_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Shoulder Tip to Armfold Back", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Shoulder Tip around Armscye down to Armfold Back.",
"Full measurement description.");
InitMeasurement(shoulderTipToArmfoldB_M, m, g, d, "H26");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_side_to_bust_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Side to Bust level, back", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Neck Side straight down back to Bust level.",
"Full measurement description.");
InitMeasurement(neckSideToBustB_M, m, g, d, "H27");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_side_to_highbust_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Side to Highbust level, back", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Neck Side straight down back to Highbust level.",
"Full measurement description.");
InitMeasurement(neckSideToHighbustB_M, m, g, d, "H28");
//=================================================================================================================
m = translate("VTranslateMeasurements", "shoulder_center_to_highbust_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Shoulder center to Highbust level, back", "Full measurement name.");
d = translate("VTranslateMeasurements", "From mid-Shoulder down back to Highbust level, aimed through Scapula.",
"Full measurement description.");
InitMeasurement(shoulderCenterToHighbustB_M, m, g, d, "H29");
//=================================================================================================================
m = translate("VTranslateMeasurements", "waist_to_highhip_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Waist Front to Highhip Front", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Waist Front to Highhip Front.", "Full measurement description.");
InitMeasurement(waistToHighhipF_M, m, g, d, "H30");
//=================================================================================================================
m = translate("VTranslateMeasurements", "waist_to_hip_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Waist Front to Hip Front", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Waist Front to Hip Front.", "Full measurement description.");
InitMeasurement(waistToHipF_M, m, g, d, "H31");
//=================================================================================================================
m = translate("VTranslateMeasurements", "waist_to_highhip_side",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Waist Side to Highhip Side", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Waist Side to Highhip Side.", "Full measurement description.");
InitMeasurement(waistToHighhipSide_M, m, g, d, "H32");
//=================================================================================================================
m = translate("VTranslateMeasurements", "waist_to_highhip_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Waist Back to Highhip Back", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Waist Back down to Highhip Back.", "Full measurement description.");
InitMeasurement(waistToHighhipB_M, m, g, d, "H33");
//=================================================================================================================
m = translate("VTranslateMeasurements", "waist_to_hip_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Waist Back to Hip Back", "Full measurement name.");
d = translate("VTranslateMeasurements",
"From Waist Back down to Hip Back. Requires tape to cover the gap between buttocks.",
"Full measurement description.");
InitMeasurement(waistToHipB_M, m, g, d, "H34");
//=================================================================================================================
m = translate("VTranslateMeasurements", "waist_to_hip_side",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Waist Side to Hip Side", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Waist Side to Hip Side.", "Full measurement description.");
InitMeasurement(waistToHipSide_M, m, g, d, "H35");
//=================================================================================================================
m = translate("VTranslateMeasurements", "shoulder_slope_neck_side_angle",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Shoulder Slope Angle from Neck Side", "Full measurement name.");
d = translate("VTranslateMeasurements",
"Angle formed by line from Neck Side to Shoulder Tip and line from Neck Side parallel to floor.",
"Full measurement description.");
InitMeasurement(shoulderSlopeNeckSideAngle_M, m, g, d, "H36");
//=================================================================================================================
m = translate("VTranslateMeasurements", "shoulder_slope_neck_side_length",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Shoulder Slope length from Neck Side", "Full measurement name.");
d = translate("VTranslateMeasurements", "Vertical distance between Neck Side and Shoulder Tip.",
"Full measurement description.");
InitMeasurement(shoulderSlopeNeckSideLength_M, m, g, d, "H37");
//=================================================================================================================
m = translate("VTranslateMeasurements", "shoulder_slope_neck_back_angle",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Shoulder Slope Angle from Neck Back", "Full measurement name.");
d = translate("VTranslateMeasurements",
"Angle formed by line from Neck Back to Shoulder Tip and line from Neck Back parallel to floor.",
"Full measurement description.");
InitMeasurement(shoulderSlopeNeckBackAngle_M, m, g, d, "H38");
//=================================================================================================================
m = translate("VTranslateMeasurements", "shoulder_slope_neck_back_height",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Shoulder Slope length from Neck Back", "Full measurement name.");
d = translate("VTranslateMeasurements", "Vertical distance between Neck Back and Shoulder Tip.",
"Full measurement description.");
InitMeasurement(shoulderSlopeNeckBackHeight_M, m, g, d, "H39");
//=================================================================================================================
m = translate("VTranslateMeasurements", "shoulder_slope_shoulder_tip_angle",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Shoulder Slope Angle from Shoulder Tip",
"Full measurement name.");
d = translate("VTranslateMeasurements",
"Angle formed by line from Neck Side to Shoulder Tip and vertical line at Shoulder Tip.",
"Full measurement description.");
InitMeasurement(shoulderSlopeShoulderTipAngle_M, m, g, d, "H40");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_back_to_across_back",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Back to Across Back", "Full measurement name.");
d = translate("VTranslateMeasurements", "From neck back, down to level of Across Back measurement.",
"Full measurement description.");
InitMeasurement(neckBackToAcrossBack_M, m, g, d, "H41");
//=================================================================================================================
m = translate("VTranslateMeasurements", "across_back_to_waist_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Across Back to Waist back", "Full measurement name.");
d = translate("VTranslateMeasurements", "From middle of Across Back down to Waist back.",
"Full measurement description.");
InitMeasurement(acrossBackToWaistB_M, m, g, d, "H42", "(neck_back_to_waist_b - neck_back_to_across_back)");
//=================================================================================================================
}
//---------------------------------------------------------------------------------------------------------------------
void VTranslateMeasurements::InitGroupI()
{
//Note. We can't use here function and variables because lupdate tool doesn't see string in variables and doesn't
//mark such string to translation.
qmu::QmuTranslation m;
qmu::QmuTranslation g;
qmu::QmuTranslation d;
//=================================================================================================================
m = translate("VTranslateMeasurements", "shoulder_length",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Shoulder length", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Neck Side to Shoulder Tip.", "Full measurement description.");
InitMeasurement(shoulderLength_M, m, g, d, "I01");
//=================================================================================================================
m = translate("VTranslateMeasurements", "shoulder_tip_to_shoulder_tip_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Shoulder Tip to Shoulder Tip, front", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Shoulder Tip to Shoulder Tip, across front.",
"Full measurement description.");
InitMeasurement(shoulderTipToShoulderTipF_M, m, g, d, "I02");
//=================================================================================================================
m = translate("VTranslateMeasurements", "across_chest_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Across Chest", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Armscye to Armscye at narrowest width across chest.",
"Full measurement description.");
InitMeasurement(acrossChestF_M, m, g, d, "I03");
//=================================================================================================================
m = translate("VTranslateMeasurements", "armfold_to_armfold_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Armfold to Armfold, front", "Full measurement name.");
d = translate("VTranslateMeasurements",
"From Armfold to Armfold, shortest distance between Armfolds, not parallel to floor.",
"Full measurement description.");
InitMeasurement(armfoldToArmfoldF_M, m, g, d, "I04");
//=================================================================================================================
m = translate("VTranslateMeasurements", "shoulder_tip_to_shoulder_tip_half_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Shoulder Tip to Shoulder Tip, front, half", "Full measurement name.");
d = translate("VTranslateMeasurements",
"Half of' Shoulder Tip to Shoulder tip, front'. ('Shoulder Tip to Shoulder Tip, front' / 2).",
"Full measurement description.");
InitMeasurement(shoulderTipToShoulderTipHalfF_M, m, g, d, "I05", "(shoulder_tip_to_shoulder_tip_f/2)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "across_chest_half_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Across Chest, half", "Full measurement name.");
d = translate("VTranslateMeasurements", "Half of 'Across Chest'. ('Across Chest' / 2).",
"Full measurement description.");
InitMeasurement(acrossChestHalfF_M, m, g, d, "I06", "(across_chest_f/2)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "shoulder_tip_to_shoulder_tip_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Shoulder Tip to Shoulder Tip, back", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Shoulder Tip to Shoulder Tip, across the back.",
"Full measurement description.");
InitMeasurement(shoulderTipToShoulderTipB_M, m, g, d, "I07");
//=================================================================================================================
m = translate("VTranslateMeasurements", "across_back_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Across Back", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Armscye to Armscye at the narrowest width of the back.",
"Full measurement description.");
InitMeasurement(acrossBackB_M, m, g, d, "I08");
//=================================================================================================================
m = translate("VTranslateMeasurements", "armfold_to_armfold_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Armfold to Armfold, back", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Armfold to Armfold across the back.",
"Full measurement description.");
InitMeasurement(armfoldToArmfoldB_M, m, g, d, "I09");
//=================================================================================================================
m = translate("VTranslateMeasurements", "shoulder_tip_to_shoulder_tip_half_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Shoulder Tip to Shoulder Tip, back, half", "Full measurement name.");
d = translate("VTranslateMeasurements",
"Half of 'Shoulder Tip to Shoulder Tip, back'. ('Shoulder Tip to Shoulder Tip, back' / 2).",
"Full measurement description.");
InitMeasurement(shoulderTipToShoulderTipHalfB_M, m, g, d, "I10", "(shoulder_tip_to_shoulder_tip_b/2)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "across_back_half_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Across Back, half", "Full measurement name.");
d = translate("VTranslateMeasurements", "Half of 'Across Back'. ('Across Back' / 2).",
"Full measurement description.");
InitMeasurement(acrossBackHalfB_M, m, g, d, "I11", "(across_back_b/2)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_front_to_shoulder_tip_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Front to Shoulder Tip", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Neck Front to Shoulder Tip.", "Full measurement description.");
InitMeasurement(neckFrontToShoulderTipF_M, m, g, d, "I12");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_back_to_shoulder_tip_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Back to Shoulder Tip", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Neck Back to Shoulder Tip.", "Full measurement description.");
InitMeasurement(neckBackToShoulderTipB_M, m, g, d, "I13");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_width",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Width", "Full measurement name.");
d = translate("VTranslateMeasurements",
"Measure between the 'legs' of an unclosed necklace or chain draped around the neck.",
"Full measurement description.");
InitMeasurement(neckWidth_M, m, g, d, "I14");
//=================================================================================================================
}
//---------------------------------------------------------------------------------------------------------------------
void VTranslateMeasurements::InitGroupJ()
{
//Note. We can't use here function and variables because lupdate tool doesn't see string in variables and doesn't
//mark such string to translation.
qmu::QmuTranslation m;
qmu::QmuTranslation g;
qmu::QmuTranslation d;
//=================================================================================================================
m = translate("VTranslateMeasurements", "bustpoint_to_bustpoint",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Bustpoint to Bustpoint", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Bustpoint to Bustpoint.", "Full measurement description.");
InitMeasurement(bustpointToBustpoint_M, m, g, d, "J01");
//=================================================================================================================
m = translate("VTranslateMeasurements", "bustpoint_to_neck_side",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Bustpoint to Neck Side", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Neck Side to Bustpoint.", "Full measurement description.");
InitMeasurement(bustpointToNeckSide_M, m, g, d, "J02");
//=================================================================================================================
m = translate("VTranslateMeasurements", "bustpoint_to_lowbust",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Bustpoint to Lowbust", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Bustpoint down to Lowbust level, following curve of bust or chest.",
"Full measurement description.");
InitMeasurement(bustpointToLowbust_M, m, g, d, "J03");
//=================================================================================================================
m = translate("VTranslateMeasurements", "bustpoint_to_waist",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Bustpoint to Waist level", "Full measurement name.");
d = translate("VTranslateMeasurements",
"From Bustpoint to straight down to Waist level, forming a straight line (not curving along the "
"body).", "Full measurement description.");
InitMeasurement(bustpointToWaist_M, m, g, d, "J04");
//=================================================================================================================
m = translate("VTranslateMeasurements", "bustpoint_to_bustpoint_half",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Bustpoint to Bustpoint, half", "Full measurement name.");
d = translate("VTranslateMeasurements", "Half of 'Bustpoint to Bustpoint'. ('Bustpoint to Bustpoint' / 2).",
"Full measurement description.");
InitMeasurement(bustpointToBustpointHalf_M, m, g, d, "J05", "(bustpoint_to_bustpoint/2)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "bustpoint_neck_side_to_waist",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Bustpoint, Neck Side to Waist level", "Full measurement name.");
d = translate("VTranslateMeasurements",
"From Neck Side to Bustpoint, then straight down to Waist level. ('Neck Side to Bustpoint' + "
"'Bustpoint to Waist level').", "Full measurement description.");
InitMeasurement(bustpointNeckSideToWaist_M, m, g, d, "J06", "(bustpoint_to_neck_side + bustpoint_to_waist)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "bustpoint_to_shoulder_tip",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Bustpoint to Shoulder Tip", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Bustpoint to Shoulder tip.", "Full measurement description.");
InitMeasurement(bustpointToShoulderTip_M, m, g, d, "J07");
//=================================================================================================================
m = translate("VTranslateMeasurements", "bustpoint_to_waist_front",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Bustpoint to Waist Front", "Full measurement name.");
d = translate("VTranslateMeasurements",
"From Bustpoint to Waist Front, in a straight line, not following the curves of the body.",
"Full measurement description.");
InitMeasurement(bustpointToWaistFront_M, m, g, d, "J08");
//=================================================================================================================
m = translate("VTranslateMeasurements", "bustpoint_to_bustpoint_halter",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Bustpoint to Bustpoint Halter", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Bustpoint around Neck Back down to other Bustpoint.",
"Full measurement description.");
InitMeasurement(bustpointToBustpointHalter_M, m, g, d, "J09");
//=================================================================================================================
m = translate("VTranslateMeasurements", "bustpoint_to_shoulder_center",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Bustpoint to Shoulder Center", "Full measurement name.");
d = translate("VTranslateMeasurements", "From center of Shoulder to Bustpoint.", "Full measurement description.");
InitMeasurement(bustpointToShoulderCenter_M, m, g, d, "J10");
//=================================================================================================================
}
//---------------------------------------------------------------------------------------------------------------------
void VTranslateMeasurements::InitGroupK()
{
//Note. We can't use here function and variables because lupdate tool doesn't see string in variables and doesn't
//mark such string to translation.
qmu::QmuTranslation m;
qmu::QmuTranslation g;
qmu::QmuTranslation d;
//=================================================================================================================
m = translate("VTranslateMeasurements", "shoulder_tip_to_waist_front",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Shoulder Tip to Waist Front", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Shoulder Tip diagonal to Waist Front.",
"Full measurement description.");
InitMeasurement(shoulderTipToWaistFront_M, m, g, d, "K01");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_front_to_waist_side",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Front to Waist Side", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Neck Front diagonal to Waist Side.",
"Full measurement description.");
InitMeasurement(neckFrontToWaistSide_M, m, g, d, "K02");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_side_to_waist_side_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Side to Waist Side, front", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Neck Side diagonal across front to Waist Side.",
"Full measurement description.");
InitMeasurement(neckSideToWaistSideF_M, m, g, d, "K03");
//=================================================================================================================
m = translate("VTranslateMeasurements", "shoulder_tip_to_waist_back",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Shoulder Tip to Waist Back", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Shoulder Tip diagonal to Waist Back.",
"Full measurement description.");
InitMeasurement(shoulderTipToWaistBack_M, m, g, d, "K04");
//=================================================================================================================
m = translate("VTranslateMeasurements", "shoulder_tip_to_waist_b_1in_offset",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Shoulder Tip to Waist Back, with 1in (2.54cm) offset",
"Full measurement name.");
d = translate("VTranslateMeasurements", "Mark 1in (2.54cm) outward from Waist Back along Waist level. Measure "
"from Shoulder Tip diagonal to mark.", "Full measurement description.");
InitMeasurement(shoulderTipToWaistB_1inOffset_M, m, g, d, "K05");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_back_to_waist_side",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Back to Waist Side", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Neck Back diagonal across back to Waist Side.",
"Full measurement description.");
InitMeasurement(neckBackToWaistSide_M, m, g, d, "K06");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_side_to_waist_side_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Side to Waist Side, back", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Neck Side diagonal across back to Waist Side.",
"Full measurement description.");
InitMeasurement(neckSideToWaistSideB_M, m, g, d, "K07");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_side_to_armfold_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Side to Armfold Front", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Neck Side diagonal to Armfold Front.",
"Full measurement description.");
InitMeasurement(neckSideToArmfoldF_M, m, g, d, "K08");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_side_to_armpit_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Side to Highbust Side, front", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Neck Side diagonal across front to Highbust Side (Armpit).",
"Full measurement description.");
InitMeasurement(neckSideToArmpitF_M, m, g, d, "K09");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_side_to_bust_side_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Side to Bust Side, front", "Full measurement name.");
d = translate("VTranslateMeasurements", "Neck Side diagonal across front to Bust Side.",
"Full measurement description.");
InitMeasurement(neckSideToBustSideF_M, m, g, d, "K10");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_side_to_armfold_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Side to Armfold Back", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Neck Side diagonal to Armfold Back.",
"Full measurement description.");
InitMeasurement(neckSideToArmfoldB_M, m, g, d, "K11");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_side_to_armpit_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Side to Highbust Side, back", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Neck Side diagonal across back to Highbust Side (Armpit).",
"Full measurement description.");
InitMeasurement(neckSideToArmpitB_M, m, g, d, "K12");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_side_to_bust_side_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Side to Bust Side, back", "Full measurement name.");
d = translate("VTranslateMeasurements", "Neck Side diagonal across back to Bust Side.",
"Full measurement description.");
InitMeasurement(neckSideToBustSideB_M, m, g, d, "K13");
//=================================================================================================================
}
//---------------------------------------------------------------------------------------------------------------------
void VTranslateMeasurements::InitGroupL()
{
//Note. We can't use here function and variables because lupdate tool doesn't see string in variables and doesn't
//mark such string to translation.
qmu::QmuTranslation m;
qmu::QmuTranslation g;
qmu::QmuTranslation d;
//=================================================================================================================
m = translate("VTranslateMeasurements", "arm_shoulder_tip_to_wrist_bent",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Arm: Shoulder Tip to Wrist, bent", "Full measurement name.");
d = translate("VTranslateMeasurements", "Bend Arm, measure from Shoulder Tip around Elbow to radial Wrist bone.",
"Full measurement description.");
InitMeasurement(armShoulderTipToWristBent_M, m, g, d, "L01");
//=================================================================================================================
m = translate("VTranslateMeasurements", "arm_shoulder_tip_to_elbow_bent",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Arm: Shoulder Tip to Elbow, bent", "Full measurement name.");
d = translate("VTranslateMeasurements", "Bend Arm, measure from Shoulder Tip to Elbow Tip.",
"Full measurement description.");
InitMeasurement(armShoulderTipToElbowBent_M, m, g, d, "L02");
//=================================================================================================================
m = translate("VTranslateMeasurements", "arm_elbow_to_wrist_bent",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Arm: Elbow to Wrist, bent", "Full measurement name.");
d = translate("VTranslateMeasurements",
"Elbow tip to wrist. ('Arm: Shoulder Tip to Wrist, bent' - 'Arm: Shoulder Tip to Elbow, bent').",
"Full measurement description.");
InitMeasurement(armElbowToWristBent_M, m, g, d, "L03",
"(arm_shoulder_tip_to_wrist_bent - arm_shoulder_tip_to_elbow_bent)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "arm_elbow_circ_bent",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Arm: Elbow circumference, bent", "Full measurement name.");
d = translate("VTranslateMeasurements", "Elbow circumference, arm is bent.", "Full measurement description.");
InitMeasurement(armElbowCircBent_M, m, g, d, "L04");
//=================================================================================================================
m = translate("VTranslateMeasurements", "arm_shoulder_tip_to_wrist",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Arm: Shoulder Tip to Wrist", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Shoulder Tip to Wrist bone, arm straight.",
"Full measurement description.");
InitMeasurement(armShoulderTipToWrist_M, m, g, d, "L05");
//=================================================================================================================
m = translate("VTranslateMeasurements", "arm_shoulder_tip_to_elbow",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Arm: Shoulder Tip to Elbow", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Shoulder tip to Elbow Tip, arm straight.",
"Full measurement description.");
InitMeasurement(armShoulderTipToElbow_M, m, g, d, "L06");
//=================================================================================================================
m = translate("VTranslateMeasurements", "arm_elbow_to_wrist",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Arm: Elbow to Wrist", "Full measurement name.");
d = translate("VTranslateMeasurements",
"From Elbow to Wrist, arm straight. ('Arm: Shoulder Tip to Wrist' - 'Arm: Shoulder Tip to Elbow').",
"Full measurement description.");
InitMeasurement(armElbowToWrist_M, m, g, d, "L07", "(arm_shoulder_tip_to_wrist - arm_shoulder_tip_to_elbow)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "arm_armpit_to_wrist",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Arm: Armpit to Wrist, inside", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Armpit to ulna Wrist bone, arm straight.",
"Full measurement description.");
InitMeasurement(armArmpitToWrist_M, m, g, d, "L08");
//=================================================================================================================
m = translate("VTranslateMeasurements", "arm_armpit_to_elbow",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Arm: Armpit to Elbow, inside", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Armpit to inner Elbow, arm straight.",
"Full measurement description.");
InitMeasurement(armArmpitToElbow_M, m, g, d, "L09");
//=================================================================================================================
m = translate("VTranslateMeasurements", "arm_elbow_to_wrist_inside",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Arm: Elbow to Wrist, inside", "Full measurement name.");
d = translate("VTranslateMeasurements",
"From inside Elbow to Wrist. ('Arm: Armpit to Wrist, inside' - 'Arm: Armpit to Elbow, inside').",
"Full measurement description.");
InitMeasurement(armElbowToWristInside_M, m, g, d, "L10", "(arm_armpit_to_wrist - arm_armpit_to_elbow)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "arm_upper_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Arm: Upper Arm circumference", "Full measurement name.");
d = translate("VTranslateMeasurements", "Arm circumference at Armpit level.", "Full measurement description.");
InitMeasurement(armUpperCirc_M, m, g, d, "L11");
//=================================================================================================================
m = translate("VTranslateMeasurements", "arm_above_elbow_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Arm: Above Elbow circumference", "Full measurement name.");
d = translate("VTranslateMeasurements", "Arm circumference at Bicep level.", "Full measurement description.");
InitMeasurement(armAboveElbowCirc_M, m, g, d, "L12");
//=================================================================================================================
m = translate("VTranslateMeasurements", "arm_elbow_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Arm: Elbow circumference", "Full measurement name.");
d = translate("VTranslateMeasurements", "Elbow circumference, arm straight.", "Full measurement description.");
InitMeasurement(armElbowCirc_M, m, g, d, "L13");
//=================================================================================================================
m = translate("VTranslateMeasurements", "arm_lower_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Arm: Lower Arm circumference", "Full measurement name.");
d = translate("VTranslateMeasurements", "Arm circumference where lower arm is widest.",
"Full measurement description.");
InitMeasurement(armLowerCirc_M, m, g, d, "L14");
//=================================================================================================================
m = translate("VTranslateMeasurements", "arm_wrist_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Arm: Wrist circumference", "Full measurement name.");
d = translate("VTranslateMeasurements", "Wrist circumference.", "Full measurement description.");
InitMeasurement(armWristCirc_M, m, g, d, "L15");
//=================================================================================================================
m = translate("VTranslateMeasurements", "arm_shoulder_tip_to_armfold_line",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Arm: Shoulder Tip to Armfold line", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Shoulder Tip down to Armpit level.", "Full measurement description.");
InitMeasurement(armShoulderTipToArmfoldLine_M, m, g, d, "L16");
//=================================================================================================================
m = translate("VTranslateMeasurements", "arm_neck_side_to_wrist",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Arm: Neck Side to Wrist", "Full measurement name.");
d = translate("VTranslateMeasurements",
"From Neck Side to Wrist. ('Shoulder Length' + 'Arm: Shoulder Tip to Wrist').",
"Full measurement description.");
InitMeasurement(armNeckSideToWrist_M, m, g, d, "L17", "(shoulder_length + arm_shoulder_tip_to_wrist)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "arm_neck_side_to_finger_tip",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Arm: Neck Side to Finger Tip", "Full measurement name.");
d = translate("VTranslateMeasurements",
"From Neck Side down arm to tip of middle finger. ('Shoulder Length' + 'Arm: Shoulder Tip to "
"Wrist' + 'Hand: Length').", "Full measurement description.");
InitMeasurement(armNeckSideToFingerTip_M, m, g, d, "L18",
"(shoulder_length + arm_shoulder_tip_to_wrist + hand_length)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "armscye_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Armscye: Circumference", "Full measurement name.");
d = translate("VTranslateMeasurements",
"Let arm hang at side. Measure Armscye circumference through Shoulder Tip and Armpit.",
"Full measurement description.");
InitMeasurement(armscyeCirc_M, m, g, d, "L19");
//=================================================================================================================
m = translate("VTranslateMeasurements", "armscye_length",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Armscye: Length", "Full measurement name.");
d = translate("VTranslateMeasurements", "Vertical distance from Shoulder Tip to Armpit.",
"Full measurement description.");
InitMeasurement(armscyeLength_M, m, g, d, "L20");
//=================================================================================================================
m = translate("VTranslateMeasurements", "armscye_width",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Armscye: Width", "Full measurement name.");
d = translate("VTranslateMeasurements", "Horizontal distance between Armscye Front and Armscye Back.",
"Full measurement description.");
InitMeasurement(armscyeWidth_M, m, g, d, "L21");
//=================================================================================================================
m = translate("VTranslateMeasurements", "arm_neck_side_to_outer_elbow",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Arm: Neck side to Elbow", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Neck Side over Shoulder Tip down to Elbow. (Shoulder length + "
"Arm: Shoulder Tip to Elbow).", "Full measurement description.");
InitMeasurement(armNeckSideToOuterElbow_M, m, g, d, "L22", "(shoulder_length + arm_shoulder_tip_to_elbow)");
//=================================================================================================================
}
//---------------------------------------------------------------------------------------------------------------------
void VTranslateMeasurements::InitGroupM()
{
//Note. We can't use here function and variables because lupdate tool doesn't see string in variables and doesn't
//mark such string to translation.
qmu::QmuTranslation m;
qmu::QmuTranslation g;
qmu::QmuTranslation d;
//=================================================================================================================
m = translate("VTranslateMeasurements", "leg_crotch_to_floor",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Leg: Crotch to floor", "Full measurement name.");
d = translate("VTranslateMeasurements",
"Stand feet close together. Measure from crotch level (touching body, no extra space) down to floor.",
"Full measurement description.");
InitMeasurement(legCrotchToFloor_M, m, g, d, "M01");
//=================================================================================================================
m = translate("VTranslateMeasurements", "leg_waist_side_to_floor",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Leg: Waist Side to floor", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Waist Side along curve to Hip level then straight down to floor.",
"Full measurement description.");
InitMeasurement(legWaistSideToFloor_M, m, g, d, "M02");
//=================================================================================================================
m = translate("VTranslateMeasurements", "leg_thigh_upper_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Leg: Thigh Upper circumference", "Full measurement name.");
d = translate("VTranslateMeasurements",
"Thigh circumference at the fullest part of the upper Thigh near the Crotch.",
"Full measurement description.");
InitMeasurement(legThighUpperCirc_M, m, g, d, "M03");
//=================================================================================================================
m = translate("VTranslateMeasurements", "leg_thigh_mid_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Leg: Thigh Middle circumference", "Full measurement name.");
d = translate("VTranslateMeasurements", "Thigh circumference about halfway between Crotch and Knee.",
"Full measurement description.");
InitMeasurement(legThighMidCirc_M, m, g, d, "M04");
//=================================================================================================================
m = translate("VTranslateMeasurements", "leg_knee_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Leg: Knee circumference", "Full measurement name.");
d = translate("VTranslateMeasurements", "Knee circumference with straight leg.", "Full measurement description.");
InitMeasurement(legKneeCirc_M, m, g, d, "M05");
//=================================================================================================================
m = translate("VTranslateMeasurements", "leg_knee_small_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Leg: Knee Small circumference", "Full measurement name.");
d = translate("VTranslateMeasurements", "Leg circumference just below the knee.", "Full measurement description.");
InitMeasurement(legKneeSmallCirc_M, m, g, d, "M06");
//=================================================================================================================
m = translate("VTranslateMeasurements", "leg_calf_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Leg: Calf circumference", "Full measurement name.");
d = translate("VTranslateMeasurements", "Calf circumference at the largest part of lower leg.",
"Full measurement description.");
InitMeasurement(legCalfCirc_M, m, g, d, "M07");
//=================================================================================================================
m = translate("VTranslateMeasurements", "leg_ankle_high_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Leg: Ankle High circumference", "Full measurement name.");
d = translate("VTranslateMeasurements",
"Ankle circumference where the indentation at the back of the ankle is the deepest.",
"Full measurement description.");
InitMeasurement(legAnkleHighCirc_M, m, g, d, "M08");
//=================================================================================================================
m = translate("VTranslateMeasurements", "leg_ankle_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Leg: Ankle circumference", "Full measurement name.");
d = translate("VTranslateMeasurements", "Ankle circumference where front of leg meets the top of the foot.",
"Full measurement description.");
InitMeasurement(legAnkleCirc_M, m, g, d, "M09");
//=================================================================================================================
m = translate("VTranslateMeasurements", "leg_knee_circ_bent",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Leg: Knee circumference, bent", "Full measurement name.");
d = translate("VTranslateMeasurements", "Knee circumference with leg bent.", "Full measurement description.");
InitMeasurement(legKneeCircBent_M, m, g, d, "M10");
//=================================================================================================================
m = translate("VTranslateMeasurements", "leg_ankle_diag_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Leg: Ankle diagonal circumference", "Full measurement name.");
d = translate("VTranslateMeasurements", "Ankle circumference diagonal from top of foot to bottom of heel.",
"Full measurement description.");
InitMeasurement(legAnkleDiagCirc_M, m, g, d, "M11");
//=================================================================================================================
m = translate("VTranslateMeasurements", "leg_crotch_to_ankle",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Leg: Crotch to Ankle", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Crotch to Ankle. ('Leg: Crotch to Floor' - 'Height: Ankle').",
"Full measurement description.");
InitMeasurement(legCrotchToAnkle_M, m, g, d, "M12", "(leg_crotch_to_floor - height_ankle)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "leg_waist_side_to_ankle",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Leg: Waist Side to Ankle", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Waist Side to Ankle. ('Leg: Waist Side to Floor' - 'Height: Ankle').",
"Full measurement description.");
InitMeasurement(legWaistSideToAnkle_M, m, g, d, "M13", "(leg_waist_side_to_floor - height_ankle)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "leg_waist_side_to_knee",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Leg: Waist Side to Knee", "Full measurement name.");
d = translate("VTranslateMeasurements",
"From Waist Side along curve to Hip level then straight down to Knee level. ('Leg: Waist Side to "
"Floor' - 'Height Knee').", "Full measurement description.");
InitMeasurement(legWaistSideToKnee_M, m, g, d, "M14", "(leg_waist_side_to_floor - height_knee)");
//=================================================================================================================
}
//---------------------------------------------------------------------------------------------------------------------
void VTranslateMeasurements::InitGroupN()
{
//Note. We can't use here function and variables because lupdate tool doesn't see string in variables and doesn't
//mark such string to translation.
qmu::QmuTranslation m;
qmu::QmuTranslation g;
qmu::QmuTranslation d;
//=================================================================================================================
m = translate("VTranslateMeasurements", "crotch_length",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Crotch length", "Full measurement name.");
d = translate("VTranslateMeasurements", "Put tape across gap between buttocks at Hip level. Measure from Waist "
"Front down betwen legs and up to Waist Back.", "Full measurement description.");
InitMeasurement(crotchLength_M, m, g, d, "N01");
//=================================================================================================================
m = translate("VTranslateMeasurements", "crotch_length_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Crotch length, back", "Full measurement name.");
d = translate("VTranslateMeasurements", "Put tape across gap between buttocks at Hip level. Measure from Waist "
"Back to mid-Crotch, either at the vagina or between testicles and anus).",
"Full measurement description.");
InitMeasurement(crotchLengthB_M, m, g, d, "N02");
//=================================================================================================================
m = translate("VTranslateMeasurements", "crotch_length_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Crotch length, front", "Full measurement name.");
d = translate("VTranslateMeasurements",
"From Waist Front to start of vagina or end of testicles. ('Crotch length' - 'Crotch length, back').",
"Full measurement description.");
InitMeasurement(crotchLengthF_M, m, g, d, "N03", "(crotch_length - crotch_length_b)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "rise_length_side_sitting",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements",
"Rise length, side, sitting", "Full measurement name.");
d = translate("VTranslateMeasurements",
"From Waist Side around hip curve down to surface, while seated on hard surface.",
"Full measurement description.");
InitMeasurement(riseLengthSideSitting_M, m, g, d, "N04");
//=================================================================================================================
m = translate("VTranslateMeasurements", "rise_length_diag",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Rise length, diagonal", "Full measurement name.");
d = translate("VTranslateMeasurements", "Measure from Waist Side diagonally to a string tied at the top of the "
"leg, seated on a hard surface.", "Full measurement description.");
InitMeasurement(riseLengthDiag_M, m, g, d, "N05");
//=================================================================================================================
m = translate("VTranslateMeasurements", "rise_length_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Rise length, back", "Full measurement name.");
d = translate("VTranslateMeasurements", "Vertical distance from Waist Back to Crotch level. "
"('Height: Waist Back' - 'Leg: Crotch to Floor')", "Full measurement description.");
InitMeasurement(riseLengthB_M, m, g, d, "N06", "(height_waist_back - leg_crotch_to_floor)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "rise_length_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Rise length, front", "Full measurement name.");
d = translate("VTranslateMeasurements", "Vertical Distance from Waist Front to Crotch level. "
"('Height: Waist Front' - 'Leg: Crotch to Floor')", "Full measurement description.");
InitMeasurement(riseLengthF_M, m, g, d, "N07", "(height_waist_front - leg_crotch_to_floor)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "rise_length_side",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Rise length, side", "Full measurement name.");
d = translate("VTranslateMeasurements", "Vertical distance from Waist side down to Crotch level. Use formula "
"(Height: Waist side - Leg: Crotch to floor).", "Full measurement description.");
InitMeasurement(riseLengthSide_M, m, g, d, "N08");
//=================================================================================================================
}
//---------------------------------------------------------------------------------------------------------------------
void VTranslateMeasurements::InitGroupO()
{
//Note. We can't use here function and variables because lupdate tool doesn't see string in variables and doesn't
//mark such string to translation.
qmu::QmuTranslation m;
qmu::QmuTranslation g;
qmu::QmuTranslation d;
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_back_to_waist_front",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Back to Waist Front", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Neck Back around Neck Side down to Waist Front.",
"Full measurement description.");
InitMeasurement(neckBackToWaistFront_M, m, g, d, "O01");
//=================================================================================================================
m = translate("VTranslateMeasurements", "waist_to_waist_halter",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Waist to Waist Halter, around Neck Back", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Waist level around Neck Back to Waist level.",
"Full measurement description.");
InitMeasurement(waistToWaistHalter_M, m, g, d, "O02");
//=================================================================================================================
m = translate("VTranslateMeasurements", "waist_natural_circ",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Natural Waist circumference", "Full measurement name.");
d = translate("VTranslateMeasurements", "Torso circumference at men's natural side Abdominal Obliques "
"indentation, if Oblique indentation isn't found then just below the Navel level.",
"Full measurement description.");
InitMeasurement(waistNaturalCirc_M, m, g, d, "O03");
//=================================================================================================================
m = translate("VTranslateMeasurements", "waist_natural_arc_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Natural Waist arc, front", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Side to Side at the Natural Waist level, across the front.",
"Full measurement description.");
InitMeasurement(waistNaturalArcF_M, m, g, d, "O04");
//=================================================================================================================
m = translate("VTranslateMeasurements", "waist_natural_arc_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Natural Waist arc, back", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Side to Side at Natural Waist level, across the back. Calculate as "
"( Natural Waist circumference - Natural Waist arc (front) ).", "Full measurement description.");
InitMeasurement(waistNaturalArcB_M, m, g, d, "O05", "(waist_natural_circ - waist_natural_arc_f)");
//=================================================================================================================
m = translate("VTranslateMeasurements", "waist_to_natural_waist_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Waist Front to Natural Waist Front", "Full measurement name.");
d = translate("VTranslateMeasurements", "Length from Waist Front to Natural Waist Front.",
"Full measurement description.");
InitMeasurement(waistToNaturalWaistF_M, m, g, d, "O06");
//=================================================================================================================
m = translate("VTranslateMeasurements", "waist_to_natural_waist_b",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Waist Back to Natural Waist Back", "Full measurement name.");
d = translate("VTranslateMeasurements", "Length from Waist Back to Natural Waist Back.",
"Full measurement description.");
InitMeasurement(waistToNaturalWaistB_M, m, g, d, "O07");
//=================================================================================================================
m = translate("VTranslateMeasurements", "arm_neck_back_to_elbow_bent",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Arm: Neck Back to Elbow, high bend", "Full measurement name.");
d = translate("VTranslateMeasurements",
"Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow Tip.",
"Full measurement description.");
InitMeasurement(armNeckBackToElbowBent_M, m, g, d, "O08");
//=================================================================================================================
m = translate("VTranslateMeasurements", "arm_neck_back_to_wrist_bent",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Arm: Neck Back to Wrist, high bend", "Full measurement name.");
d = translate("VTranslateMeasurements", "Bend Arm with Elbow out, hand in front. Measure from Neck Back to Elbow "
"Tip to Wrist bone.", "Full measurement description.");
InitMeasurement(armNeckBackToWristBent_M, m, g, d, "O09");
//=================================================================================================================
m = translate("VTranslateMeasurements", "arm_neck_side_to_elbow_bent",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Arm: Neck Side to Elbow, high bend", "Full measurement name.");
d = translate("VTranslateMeasurements", "Bend Arm with Elbow out, hand in front. Measure from Neck Side to "
"Elbow Tip.", "Full measurement description.");
InitMeasurement(armNeckSideToElbowBent_M, m, g, d, "O10");
//=================================================================================================================
m = translate("VTranslateMeasurements", "arm_neck_side_to_wrist_bent",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Arm: Neck Side to Wrist, high bend", "Full measurement name.");
d = translate("VTranslateMeasurements",
"Bend Arm with Elbow out, hand in front. Measure from Neck Side to Elbow Tip to Wrist bone.",
"Full measurement description.");
InitMeasurement(armNeckSideToWristBent_M, m, g, d, "O11");
//=================================================================================================================
m = translate("VTranslateMeasurements", "arm_across_back_center_to_elbow_bent",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Arm: Across Back Center to Elbow, high bend", "Full measurement name.");
d = translate("VTranslateMeasurements",
"Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip.",
"Full measurement description.");
InitMeasurement(armAcrossBackCenterToElbowBent_M, m, g, d, "O12");
//=================================================================================================================
m = translate("VTranslateMeasurements", "arm_across_back_center_to_wrist_bent",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Arm: Across Back Center to Wrist, high bend", "Full measurement name.");
d = translate("VTranslateMeasurements",
"Bend Arm with Elbow out, hand in front. Measure from Middle of Back to Elbow Tip to Wrist bone.",
"Full measurement description.");
InitMeasurement(armAcrossBackCenterToWristBent_M, m, g, d, "O13");
//=================================================================================================================
m = translate("VTranslateMeasurements", "arm_armscye_back_center_to_wrist_bent",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Arm: Armscye Back Center to Wrist, high bend", "Full measurement name.");
d = translate("VTranslateMeasurements",
"Bend Arm with Elbow out, hand in front. Measure from Armscye Back to Elbow Tip.",
"Full measurement description.");
InitMeasurement(armArmscyeBackCenterToWristBent_M, m, g, d, "O14");
//=================================================================================================================
}
//---------------------------------------------------------------------------------------------------------------------
void VTranslateMeasurements::InitGroupP()
{
//Note. We can't use here function and variables because lupdate tool doesn't see string in variables and doesn't
//mark such string to translation.
qmu::QmuTranslation m;
qmu::QmuTranslation g;
qmu::QmuTranslation d;
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_back_to_bust_front",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Back to Bust Front", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Neck Back, over Shoulder, to Bust Front.",
"Full measurement description.");
InitMeasurement(neckBackToBustFront_M, m, g, d, "P01");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_back_to_armfold_front",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Back to Armfold Front", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Neck Back over Shoulder to Armfold Front.",
"Full measurement description.");
InitMeasurement(neckBackToArmfoldFront_M, m, g, d, "P02");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_back_to_armfold_front_to_waist_side",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Back, over Shoulder, to Waist Side", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Neck Back, over Shoulder, down chest to Waist Side.",
"Full measurement description.");
InitMeasurement(neckBackToArmfoldFrontToWaistSide_M, m, g, d, "P03");
//=================================================================================================================
m = translate("VTranslateMeasurements", "highbust_back_over_shoulder_to_armfold_front",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Highbust Back, over Shoulder, to Armfold Front", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Highbust Back over Shoulder to Armfold Front.",
"Full measurement description.");
InitMeasurement(highbustBackOverShoulderToArmfoldFront_M, m, g, d, "P04");
//=================================================================================================================
m = translate("VTranslateMeasurements", "highbust_back_over_shoulder_to_waist_front",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Highbust Back, over Shoulder, to Waist Front", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Highbust Back, over Shoulder touching Neck Side, to Waist Front.",
"Full measurement description.");
InitMeasurement(highbustBackOverShoulderToWaistFront_M, m, g, d, "P05");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_back_to_armfold_front_to_neck_back",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Back, to Armfold Front, to Neck Back", "Full measurement name.");
d = translate("VTranslateMeasurements",
"From Neck Back, over Shoulder to Armfold Front, under arm and return to start.",
"Full measurement description.");
InitMeasurement(neckBackToArmfoldFrontToNeckBack_M, m, g, d, "P06");
//=================================================================================================================
m = translate("VTranslateMeasurements", "across_back_center_to_armfold_front_to_across_back_center",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Across Back Center, circled around Shoulder", "Full measurement name.");
d = translate("VTranslateMeasurements",
"From center of Across Back, over Shoulder, under Arm, and return to start.",
"Full measurement description.");
InitMeasurement(acrossBackCenterToArmfoldFrontToAcrossBackCenter_M, m, g, d, "P07");
//=================================================================================================================
m = translate("VTranslateMeasurements", "neck_back_to_armfold_front_to_highbust_back",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Neck Back, to Armfold Front, to Highbust Back", "Full measurement name.");
d = translate("VTranslateMeasurements",
"From Neck Back over Shoulder to Armfold Front, under arm to Highbust Back.",
"Full measurement description.");
InitMeasurement(neckBackToArmfoldFrontToHighbustBack_M, m, g, d, "P08");
//=================================================================================================================
m = translate("VTranslateMeasurements", "armfold_to_armfold_bust",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Armfold to Armfold, front, curved through Bust Front",
"Full measurement name.");
d = translate("VTranslateMeasurements", "Measure in a curve from Armfold Left Front through Bust Front curved "
"back up to Armfold Right Front.", "Full measurement description.");
InitMeasurement(armfoldToArmfoldBust_M, m, g, d, "P09");
//=================================================================================================================
m = translate("VTranslateMeasurements", "armfold_to_bust_front",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Armfold to Bust Front", "Full measurement name.");
d = translate("VTranslateMeasurements", "Measure from Armfold Front to Bust Front, shortest distance between the "
"two, as straight as possible.", "Full measurement description.");
InitMeasurement(armfoldToBustFront_M, m, g, d, "P10");
//=================================================================================================================
m = translate("VTranslateMeasurements", "highbust_b_over_shoulder_to_highbust_f",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Highbust Back, over Shoulder, to Highbust level",
"Full measurement name.");
d = translate("VTranslateMeasurements",
"From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level.",
"Full measurement description.");
InitMeasurement(highbustBOverShoulderToHighbustF_M, m, g, d, "P11");
//=================================================================================================================
m = translate("VTranslateMeasurements", "armscye_arc",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Armscye: Arc", "Full measurement name.");
d = translate("VTranslateMeasurements", "From Armscye at Across Chest over ShoulderTip to Armscye at Across Back.",
"Full measurement description.");
InitMeasurement(armscyeArc_M, m, g, d, "P12");
//=================================================================================================================
}
//---------------------------------------------------------------------------------------------------------------------
void VTranslateMeasurements::InitGroupQ()
{
//Note. We can't use here function and variables because lupdate tool doesn't see string in variables and doesn't
//mark such string to translation.
qmu::QmuTranslation m;
qmu::QmuTranslation g;
qmu::QmuTranslation d;
//=================================================================================================================
m = translate("VTranslateMeasurements", "dart_width_shoulder",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Dart Width: Shoulder", "Full measurement name.");
d = translate("VTranslateMeasurements",
"This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. "
"Aldrich's \"Metric Pattern Cutting\".", "Full measurement description.");
InitMeasurement(dartWidthShoulder_M, m, g, d, "Q01");
//=================================================================================================================
m = translate("VTranslateMeasurements", "dart_width_bust",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Dart Width: Bust", "Full measurement name.");
d = translate("VTranslateMeasurements",
"This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. "
"Aldrich's \"Metric Pattern Cutting\".", "Full measurement description.");
InitMeasurement(dartWidthBust_M, m, g, d, "Q02");
//=================================================================================================================
m = translate("VTranslateMeasurements", "dart_width_waist",
"Name in a formula. Don't use math symbols and space in name!!!!");
g = translate("VTranslateMeasurements", "Dart Width: Waist", "Full measurement name.");
d = translate("VTranslateMeasurements",
"This information is pulled from pattern charts in some patternmaking systems, e.g. Winifred P. "
"Aldrich's \"Metric Pattern Cutting\".", "Full measurement description.");
InitMeasurement(dartWidthWaist_M, m, g, d, "Q03");
//=================================================================================================================
}
#undef translate