From affee34d01575a0e78607f1deb265ec18d0ba8cf Mon Sep 17 00:00:00 2001 From: dismine Date: Wed, 24 Sep 2014 19:37:39 +0300 Subject: [PATCH] Hide empty measurements in list and table. --HG-- branch : develop --- src/app/container/vinternalvariable.cpp | 6 + src/app/container/vinternalvariable.h | 2 + src/app/container/vvariable.cpp | 13 +- src/app/container/vvariable.h | 3 +- src/app/dialogs/app/dialogincrements.cpp | 25 +- src/app/dialogs/app/dialogincrements.h | 1 + src/app/dialogs/app/dialogincrements.ui | 43 +-- src/app/dialogs/tools/dialogalongline.ui | 30 +- src/app/dialogs/tools/dialogarc.ui | 30 +- src/app/dialogs/tools/dialogbisector.ui | 30 +- src/app/dialogs/tools/dialogcutarc.ui | 30 +- src/app/dialogs/tools/dialogcutspline.ui | 30 +- src/app/dialogs/tools/dialogcutsplinepath.ui | 30 +- .../dialogs/tools/dialogeditwrongformula.ui | 32 +- src/app/dialogs/tools/dialogendline.ui | 30 +- src/app/dialogs/tools/dialognormal.ui | 30 +- src/app/dialogs/tools/dialogpointofcontact.ui | 32 +- src/app/dialogs/tools/dialogshoulderpoint.ui | 32 +- src/app/dialogs/tools/dialogtool.cpp | 23 +- src/app/dialogs/tools/dialogtool.h | 5 + src/app/share/translations/valentina.ts | 280 ++++++++++------- src/app/share/translations/valentina_cs_CZ.ts | 280 ++++++++++------- src/app/share/translations/valentina_de_DE.ts | 284 +++++++++++------- src/app/share/translations/valentina_fr_FR.ts | 284 +++++++++++------- src/app/share/translations/valentina_he_IL.ts | 280 ++++++++++------- src/app/share/translations/valentina_it_IT.ts | 280 ++++++++++------- src/app/share/translations/valentina_nl_NL.ts | 280 ++++++++++------- src/app/share/translations/valentina_ru_RU.ts | 154 +++++++--- src/app/share/translations/valentina_uk_UA.ts | 284 +++++++++++------- 29 files changed, 1815 insertions(+), 1048 deletions(-) diff --git a/src/app/container/vinternalvariable.cpp b/src/app/container/vinternalvariable.cpp index cd2244cce..92c4a06a9 100644 --- a/src/app/container/vinternalvariable.cpp +++ b/src/app/container/vinternalvariable.cpp @@ -61,6 +61,12 @@ bool VInternalVariable::Filter(quint32 id) return false; } +//--------------------------------------------------------------------------------------------------------------------- +bool VInternalVariable::IsNotUsed() const +{ + return false; +} + //--------------------------------------------------------------------------------------------------------------------- qreal VInternalVariable::GetValue() const { diff --git a/src/app/container/vinternalvariable.h b/src/app/container/vinternalvariable.h index 939a6d272..505d7b771 100644 --- a/src/app/container/vinternalvariable.h +++ b/src/app/container/vinternalvariable.h @@ -54,6 +54,8 @@ public: void SetType(const VarType &type); virtual bool Filter(quint32 id); + + virtual bool IsNotUsed() const; private: QSharedDataPointer d; }; diff --git a/src/app/container/vvariable.cpp b/src/app/container/vvariable.cpp index ee9282cb4..fa4ce0c00 100644 --- a/src/app/container/vvariable.cpp +++ b/src/app/container/vvariable.cpp @@ -35,7 +35,6 @@ VVariable::VVariable() :VInternalVariable(), d(new VVariableData) { - Init(); VInternalVariable::SetValue(d->base); } @@ -52,7 +51,6 @@ VVariable::VVariable(const QString &name, const qreal &base, const qreal &ksize, VVariable::VVariable(const QString &name, const qreal &base, const QString &description) :d(new VVariableData(base, description)) { - Init(); VInternalVariable::SetValue(base); SetName(name); } @@ -98,12 +96,15 @@ void VVariable::SetValue(const qreal &size, const qreal &height) } //--------------------------------------------------------------------------------------------------------------------- -void VVariable::Init() +bool VVariable::IsNotUsed() const { - if (qApp->patternUnit() != Unit::Inch) + if (qFuzzyCompare(d->base+1, 0+1) && qFuzzyCompare(d->ksize+1, 0+1) && qFuzzyCompare(d->kheight+1, 0+1)) { - d->ksize = VAbstractMeasurements::UnitConvertor(50.0, Unit::Cm, qApp->patternUnit()); - d->kheight = VAbstractMeasurements::UnitConvertor(176.0, Unit::Cm, qApp->patternUnit()); + return true; + } + else + { + return false; } } diff --git a/src/app/container/vvariable.h b/src/app/container/vvariable.h index ea3e3297f..0d41d235c 100644 --- a/src/app/container/vvariable.h +++ b/src/app/container/vvariable.h @@ -57,9 +57,10 @@ public: void SetDescription(const QString &desc); void SetValue(const qreal &size, const qreal &height); + + virtual bool IsNotUsed() const; private: QSharedDataPointer d; - void Init(); }; #endif // VVARIABLE_H diff --git a/src/app/dialogs/app/dialogincrements.cpp b/src/app/dialogs/app/dialogincrements.cpp index 188058d3b..15b8f3584 100644 --- a/src/app/dialogs/app/dialogincrements.cpp +++ b/src/app/dialogs/app/dialogincrements.cpp @@ -77,6 +77,11 @@ DialogIncrements::DialogIncrements(VContainer *data, VPattern *doc, QWidget *par ui->tableWidgetIncrement->setItemDelegateForColumn(3, doubleDelegate);// in sizes ui->tableWidgetIncrement->setItemDelegateForColumn(4, doubleDelegate);// in heights + if (qApp->patternType() == MeasurementsType::Standard) + { + ui->checkBoxHideEmpty->setChecked(true); + } + FillMeasurements(); FillIncrements(); FillLengthLines(); @@ -134,6 +139,7 @@ DialogIncrements::DialogIncrements(VContainer *data, VPattern *doc, QWidget *par ui->tabWidget->setCurrentIndex(0); connect(ui->toolButtonOpenMeasurements, &QToolButton::clicked, this, &DialogIncrements::OpenTable); + connect(ui->checkBoxHideEmpty, &QCheckBox::stateChanged, this, &DialogIncrements::ShowMeasurements); } //--------------------------------------------------------------------------------------------------------------------- @@ -149,6 +155,10 @@ void DialogIncrements::FillMeasurements() for (iMap = table.constBegin(); iMap != table.constEnd(); ++iMap) { QSharedPointer m = iMap.value(); + if (ui->checkBoxHideEmpty->isChecked() && m->IsNotUsed()) + { + continue; // skip this measurement + } currentRow++; QTableWidgetItem *item = new QTableWidgetItem(QString(iMap.key())); @@ -210,6 +220,7 @@ void DialogIncrements::FillMeasurements() ui->tableWidgetMeasurements->verticalHeader()->setDefaultSectionSize(20); ui->tableWidgetMeasurements->resizeColumnsToContents(); ui->tableWidgetMeasurements->resizeRowsToContents(); + ui->tableWidgetMeasurements->setRowCount(currentRow); } //--------------------------------------------------------------------------------------------------------------------- @@ -340,10 +351,7 @@ void DialogIncrements::FillLengthArcs() } //--------------------------------------------------------------------------------------------------------------------- -/** - * @brief FullUpdateFromFile update information in tables form file - */ -void DialogIncrements::FullUpdateFromFile() +void DialogIncrements::ShowMeasurements() { if (qApp->patternType() == MeasurementsType::Individual) { @@ -356,6 +364,15 @@ void DialogIncrements::FullUpdateFromFile() { ui->tableWidgetMeasurements->blockSignals(false); } +} + +//--------------------------------------------------------------------------------------------------------------------- +/** + * @brief FullUpdateFromFile update information in tables form file + */ +void DialogIncrements::FullUpdateFromFile() +{ + ShowMeasurements(); ui->tableWidgetIncrement->blockSignals(true); ui->tableWidgetIncrement->clearContents(); diff --git a/src/app/dialogs/app/dialogincrements.h b/src/app/dialogs/app/dialogincrements.h index 6ce3ce407..a1bd11ca8 100644 --- a/src/app/dialogs/app/dialogincrements.h +++ b/src/app/dialogs/app/dialogincrements.h @@ -61,6 +61,7 @@ public slots: void SaveSex(int index); void SaveBirthDate(const QDate & date); void OpenTable(); + void ShowMeasurements(); signals: /** * @brief FullUpdateTree signal update data for dom document diff --git a/src/app/dialogs/app/dialogincrements.ui b/src/app/dialogs/app/dialogincrements.ui index 3cfb1c423..d55672606 100644 --- a/src/app/dialogs/app/dialogincrements.ui +++ b/src/app/dialogs/app/dialogincrements.ui @@ -39,7 +39,7 @@ QTabWidget::North - 1 + 0 @@ -108,7 +108,7 @@ - 0 + 1 @@ -289,7 +289,14 @@ Measurements - + + + + + Hide empty measurements + + + @@ -380,6 +387,21 @@ Increments + + + + false + + + ... + + + + + + + + @@ -468,21 +490,6 @@ - - - - false - - - ... - - - - - - - - diff --git a/src/app/dialogs/tools/dialogalongline.ui b/src/app/dialogs/tools/dialogalongline.ui index afdc9fbb8..e17fbcc2c 100644 --- a/src/app/dialogs/tools/dialogalongline.ui +++ b/src/app/dialogs/tools/dialogalongline.ui @@ -6,8 +6,8 @@ 0 0 - 470 - 675 + 426 + 505 @@ -20,7 +20,7 @@ - + @@ -407,11 +407,25 @@ - - - Variables - Click twice to insert into formula - - + + + + + Hide empty measurements + + + true + + + + + + + Variables - Click twice to insert into formula + + + + diff --git a/src/app/dialogs/tools/dialogarc.ui b/src/app/dialogs/tools/dialogarc.ui index d9b0d2c6a..2a9e81993 100644 --- a/src/app/dialogs/tools/dialogarc.ui +++ b/src/app/dialogs/tools/dialogarc.ui @@ -6,8 +6,8 @@ 0 0 - 501 - 705 + 423 + 544 @@ -20,7 +20,7 @@ - + @@ -727,11 +727,25 @@ - - - Variables - - + + + + + Hide empty measurements + + + true + + + + + + + Variables + + + + diff --git a/src/app/dialogs/tools/dialogbisector.ui b/src/app/dialogs/tools/dialogbisector.ui index ef766a625..eaac9a1b4 100644 --- a/src/app/dialogs/tools/dialogbisector.ui +++ b/src/app/dialogs/tools/dialogbisector.ui @@ -6,8 +6,8 @@ 0 0 - 480 - 686 + 426 + 540 @@ -17,7 +17,7 @@ :/icon/64x64/icon64x64.png:/icon/64x64/icon64x64.png - + @@ -440,11 +440,25 @@ - - - Variables - Click twice to insert into formula - - + + + + + Hide empty measurements + + + true + + + + + + + Variables - Click twice to insert into formula + + + + diff --git a/src/app/dialogs/tools/dialogcutarc.ui b/src/app/dialogs/tools/dialogcutarc.ui index 9ff430bc8..64992f7ec 100644 --- a/src/app/dialogs/tools/dialogcutarc.ui +++ b/src/app/dialogs/tools/dialogcutarc.ui @@ -6,8 +6,8 @@ 0 0 - 507 - 597 + 390 + 435 @@ -17,7 +17,7 @@ :/icon/64x64/icon64x64.png:/icon/64x64/icon64x64.png - + @@ -371,11 +371,25 @@ - - - Variables - Click twice to insert into formula - - + + + + + Hide empty measurements + + + true + + + + + + + Variables - Click twice to insert into formula + + + + diff --git a/src/app/dialogs/tools/dialogcutspline.ui b/src/app/dialogs/tools/dialogcutspline.ui index a58f5e912..d78437040 100644 --- a/src/app/dialogs/tools/dialogcutspline.ui +++ b/src/app/dialogs/tools/dialogcutspline.ui @@ -6,8 +6,8 @@ 0 0 - 665 - 546 + 428 + 435 @@ -17,7 +17,7 @@ :/icon/64x64/icon64x64.png:/icon/64x64/icon64x64.png - + @@ -371,11 +371,25 @@ - - - Variables - Click twice to insert into formula - - + + + + + Hide empty measurements + + + true + + + + + + + Variables - Click twice to insert into formula + + + + diff --git a/src/app/dialogs/tools/dialogcutsplinepath.ui b/src/app/dialogs/tools/dialogcutsplinepath.ui index 147fd5dd7..7bb4838de 100644 --- a/src/app/dialogs/tools/dialogcutsplinepath.ui +++ b/src/app/dialogs/tools/dialogcutsplinepath.ui @@ -6,8 +6,8 @@ 0 0 - 464 - 499 + 428 + 435 @@ -17,7 +17,7 @@ :/icon/64x64/icon64x64.png:/icon/64x64/icon64x64.png - + @@ -371,11 +371,25 @@ - - - Variables - Click twice to insert into formula - - + + + + + Hide empty measurements + + + true + + + + + + + Variables - Click twice to insert into formula + + + + diff --git a/src/app/dialogs/tools/dialogeditwrongformula.ui b/src/app/dialogs/tools/dialogeditwrongformula.ui index d15e2d1ed..2b7f5066f 100644 --- a/src/app/dialogs/tools/dialogeditwrongformula.ui +++ b/src/app/dialogs/tools/dialogeditwrongformula.ui @@ -9,8 +9,8 @@ 0 0 - 507 - 535 + 390 + 365 @@ -23,7 +23,7 @@ true - + @@ -213,7 +213,7 @@ - + @@ -342,11 +342,25 @@ - - - Variables - - + + + + + Hide empty measurements + + + true + + + + + + + Variables + + + + diff --git a/src/app/dialogs/tools/dialogendline.ui b/src/app/dialogs/tools/dialogendline.ui index 657cb7ebe..6dd5b148d 100644 --- a/src/app/dialogs/tools/dialogendline.ui +++ b/src/app/dialogs/tools/dialogendline.ui @@ -6,8 +6,8 @@ 0 0 - 641 - 565 + 417 + 542 @@ -26,7 +26,7 @@ - + @@ -571,11 +571,25 @@ - - - Variables - - + + + + + Hide empty measurements + + + true + + + + + + + Variables + + + + diff --git a/src/app/dialogs/tools/dialognormal.ui b/src/app/dialogs/tools/dialognormal.ui index ab36eb840..b85c76048 100644 --- a/src/app/dialogs/tools/dialognormal.ui +++ b/src/app/dialogs/tools/dialognormal.ui @@ -6,8 +6,8 @@ 0 0 - 488 - 732 + 517 + 649 @@ -20,7 +20,7 @@ - + @@ -612,11 +612,25 @@ - - - Variables - Click twice to insert into formula - - + + + + + Hide empty measurements + + + true + + + + + + + Variables - Click twice to insert into formula + + + + diff --git a/src/app/dialogs/tools/dialogpointofcontact.ui b/src/app/dialogs/tools/dialogpointofcontact.ui index 14b9670b6..c13eadfdb 100644 --- a/src/app/dialogs/tools/dialogpointofcontact.ui +++ b/src/app/dialogs/tools/dialogpointofcontact.ui @@ -6,8 +6,8 @@ 0 0 - 476 - 653 + 496 + 505 @@ -20,7 +20,7 @@ - + @@ -207,7 +207,7 @@ - + @@ -452,11 +452,25 @@ - - - Variables - Click twice to insert into formula. - - + + + + + Hide empty measurements + + + true + + + + + + + Variables - Click twice to insert into formula. + + + + diff --git a/src/app/dialogs/tools/dialogshoulderpoint.ui b/src/app/dialogs/tools/dialogshoulderpoint.ui index 95f862586..728371b0c 100644 --- a/src/app/dialogs/tools/dialogshoulderpoint.ui +++ b/src/app/dialogs/tools/dialogshoulderpoint.ui @@ -6,8 +6,8 @@ 0 0 - 512 - 674 + 515 + 540 @@ -20,7 +20,7 @@ - + @@ -207,7 +207,7 @@ - + @@ -479,11 +479,25 @@ - - - Variables - Click twice to insert into formula - - + + + + + Hide empty measurements + + + true + + + + + + + Variables - Click twice to insert into formula + + + + diff --git a/src/app/dialogs/tools/dialogtool.cpp b/src/app/dialogs/tools/dialogtool.cpp index dab266e3b..004797b6e 100644 --- a/src/app/dialogs/tools/dialogtool.cpp +++ b/src/app/dialogs/tools/dialogtool.cpp @@ -62,9 +62,9 @@ DialogTool::DialogTool(const VContainer *data, const quint32 &toolId, QWidget *p listWidget(nullptr), labelResultCalculation(nullptr), labelDescription(nullptr), labelEditNamePoint(nullptr), labelEditFormula(nullptr), radioButtonSizeGrowth(nullptr), radioButtonStandardTable(nullptr), radioButtonIncrements(nullptr), radioButtonLengthLine(nullptr), radioButtonLengthArc(nullptr), - radioButtonLengthCurve(nullptr), radioButtonAngleLine(nullptr), lineStyles(VAbstractTool::Styles()), - okColor(QColor(76, 76, 76)), errorColor(Qt::red), associatedTool(nullptr), toolId(toolId), prepare(false), - pointName(QString()) + radioButtonLengthCurve(nullptr), radioButtonAngleLine(nullptr), checkBoxHideEmpty(nullptr), + lineStyles(VAbstractTool::Styles()), okColor(QColor(76, 76, 76)), errorColor(Qt::red), associatedTool(nullptr), + toolId(toolId), prepare(false), pointName(QString()) { SCASSERT(data != nullptr); timerFormula = new QTimer(this); @@ -863,6 +863,8 @@ void DialogTool::SizeHeight() */ void DialogTool::Measurements() { + SCASSERT(checkBoxHideEmpty != nullptr); + checkBoxHideEmpty->setEnabled(true); ShowVariable(data->DataMeasurements()); } @@ -872,6 +874,8 @@ void DialogTool::Measurements() */ void DialogTool::LengthLines() { + SCASSERT(checkBoxHideEmpty != nullptr); + checkBoxHideEmpty->setEnabled(false); ShowVariable(data->DataLengthLines()); } @@ -881,6 +885,8 @@ void DialogTool::LengthLines() */ void DialogTool::LengthArcs() { + SCASSERT(checkBoxHideEmpty != nullptr); + checkBoxHideEmpty->setEnabled(false); ShowVariable(data->DataLengthArcs()); } @@ -890,12 +896,16 @@ void DialogTool::LengthArcs() */ void DialogTool::LengthCurves() { + SCASSERT(checkBoxHideEmpty != nullptr); + checkBoxHideEmpty->setEnabled(false); ShowVariable(data->DataLengthSplines()); } //--------------------------------------------------------------------------------------------------------------------- void DialogTool::AngleLines() { + SCASSERT(checkBoxHideEmpty != nullptr); + checkBoxHideEmpty->setEnabled(false); ShowVariable(data->DataAngleLines()); } @@ -905,6 +915,8 @@ void DialogTool::AngleLines() */ void DialogTool::Increments() { + SCASSERT(checkBoxHideEmpty != nullptr); + checkBoxHideEmpty->setEnabled(false); ShowVariable(data->DataIncrements()); } @@ -1068,6 +1080,7 @@ template void DialogTool::ShowVariable(const QMap var) { SCASSERT(listWidget != nullptr); + SCASSERT(checkBoxHideEmpty != nullptr); listWidget->blockSignals(true); listWidget->clear(); @@ -1075,6 +1088,10 @@ void DialogTool::ShowVariable(const QMap var) while (iMap.hasNext()) { iMap.next(); + if (checkBoxHideEmpty->isEnabled() && checkBoxHideEmpty->isChecked() && iMap.value()->IsNotUsed()) + { + continue; //skip this measurement + } if (iMap.value()->Filter(toolId) == false) {// If we create this variable don't show QListWidgetItem *item = new QListWidgetItem(iMap.key()); diff --git a/src/app/dialogs/tools/dialogtool.h b/src/app/dialogs/tools/dialogtool.h index afbf27350..7a1f4ca14 100644 --- a/src/app/dialogs/tools/dialogtool.h +++ b/src/app/dialogs/tools/dialogtool.h @@ -36,6 +36,7 @@ #include #include "../../widgets/vapplication.h" #include +#include class QDoubleSpinBox; class QLabel; @@ -187,6 +188,8 @@ protected: QRadioButton *radioButtonAngleLine; + QCheckBox *checkBoxHideEmpty; + /** @brief lineStyles list supported line styles. */ QStringList lineStyles; const QColor okColor; @@ -259,6 +262,7 @@ protected: radioButtonLengthArc = ui->radioButtonLengthArc; radioButtonLengthCurve = ui->radioButtonLengthSpline; radioButtonAngleLine = ui->radioButtonAngleLine; + checkBoxHideEmpty = ui->checkBoxHideEmpty; connect(listWidget, &QListWidget::currentRowChanged, this, &DialogTool::ValChenged); @@ -279,6 +283,7 @@ protected: connect(radioButtonLengthArc, &QRadioButton::clicked, this, &DialogTool::LengthArcs); connect(radioButtonLengthCurve, &QRadioButton::clicked, this, &DialogTool::LengthCurves); connect(radioButtonAngleLine, &QRadioButton::clicked, this, &DialogTool::AngleLines); + connect(checkBoxHideEmpty, &QCheckBox::stateChanged, this, &DialogTool::Measurements); } template /** diff --git a/src/app/share/translations/valentina.ts b/src/app/share/translations/valentina.ts index fae7008eb..f41762b7a 100644 --- a/src/app/share/translations/valentina.ts +++ b/src/app/share/translations/valentina.ts @@ -20,7 +20,7 @@ AddToCalc - + Add object @@ -397,7 +397,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -524,7 +529,12 @@ - + + Hide empty measurements + + + + Variables @@ -657,7 +667,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -760,7 +775,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -853,7 +873,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -946,7 +971,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -1090,7 +1120,12 @@ - + + Hide empty measurements + + + + Variables @@ -1200,8 +1235,13 @@ - - Variables - Click twice to insert into formula + + Hide empty measurements + + + + + Variables @@ -1369,7 +1409,7 @@ DialogIncrements - + Increments @@ -1379,33 +1419,33 @@ - - + + Name - - + + The calculated value - - + + Base value - - + + In sizes - - - + + + Description @@ -1446,94 +1486,99 @@ - - + + Hide empty measurements + + + + + In heights - + Lines - + Line - - - + + + Length - + Curves - + Curve - + Arcs - + Arc - - + + File error. - + male - + female - + Measurements use different units than pattern. This pattern required measurements in %1 - + Individual measurements (*.vit) - - + + Open file - - + + Wrong units. - + Standard measurements (*.vst) - + Name_%1 @@ -1848,7 +1893,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -2175,7 +2225,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula. @@ -2322,7 +2377,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -2516,27 +2576,27 @@ - + Height - + Size - + Line length - + Arc length - + Curve length @@ -3154,7 +3214,7 @@ - + Save as @@ -3261,7 +3321,7 @@ - + About Qt @@ -3276,244 +3336,244 @@ - + Pattern piece: - + Enter a new label for the pattern piece. - - + + Select point - + Select first point - + Select point of shoulder - - + + Select first point of line - + Select first point of angle - + Select first point of first line - + Select first point curve - + Select simple curve - + Select point of center of arc - + Select point of curve path - + Select curve path - + Select points, arcs, curves clockwise. - + Select base point - + Select first point of axis - + Select point vertically - + Select detail - + Select arc - + Size: - + pattern - + Critical error! - + Error parsing file (std::bad_alloc). - + Bad id. - + &Undo - + &Redo - + Wrong units. - + Application doesn't support standard table with inches. - + File error. - + The measurements file <br/><br/> <b>%1</b> <br/><br/> %3 - + could not be found. Do you want to update the file location - + Standard measurements (*.vst) - + Individual measurements (*.vit) - + File loaded - + Height: - + Pattern Piece: - - + + Pattern files (*.val) - + /pattern.val - + File saved - + untitled.val - + Unsaved change - + The pattern has been modified. Do you want to save your changes? - - + + Open file - - + + Error parsing file. - + Error can't convert value. - - + + Error empty parameter. - + Error wrong id. @@ -6879,12 +6939,12 @@ Do you want to save your changes? main - + Pattern making program. - + Pattern file. diff --git a/src/app/share/translations/valentina_cs_CZ.ts b/src/app/share/translations/valentina_cs_CZ.ts index 67d3943db..06abf96de 100644 --- a/src/app/share/translations/valentina_cs_CZ.ts +++ b/src/app/share/translations/valentina_cs_CZ.ts @@ -20,7 +20,7 @@ AddToCalc - + Add object @@ -405,7 +405,12 @@ Úhel čar - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -556,7 +561,12 @@ Úhel čar - + + Hide empty measurements + + + + Variables Proměnné @@ -693,7 +703,12 @@ Úhel čar - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -800,7 +815,12 @@ Úhel čar - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -897,7 +917,12 @@ Úhel čar - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -994,7 +1019,12 @@ Úhel čar - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -1142,7 +1172,12 @@ Úhel čar - + + Hide empty measurements + + + + Variables Proměnné @@ -1264,10 +1299,15 @@ Úhel čar - - Variables - Click twice to insert into formula + + Hide empty measurements + + + Variables + Proměnné + DialogHeight @@ -1437,31 +1477,31 @@ DialogIncrements - + Increments Přídavky - - + + Name - - + + The calculated value Vypočítaná hodnota - - + + Base value Základní hodnota - - + + In sizes Ve velikostech @@ -1470,9 +1510,9 @@ Ve vzrůstech - - - + + + Description Popis @@ -1522,94 +1562,99 @@ - - + + Hide empty measurements + + + + + In heights - + Lines Čáry - + Line Čára - - - + + + Length Délka - + Curves Křivky - + Curve Křivka - + Arcs Oblouky - + Arc Oblouk - - + + File error. - + male - + female - + Measurements use different units than pattern. This pattern required measurements in %1 - + Individual measurements (*.vit) - - + + Open file Otevřít soubor - - + + Wrong units. - + Standard measurements (*.vst) - + Name_%1 @@ -1940,7 +1985,12 @@ Úhel čar - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -2275,7 +2325,12 @@ Úhel čar - + + Hide empty measurements + + + + Variables - Click twice to insert into formula. @@ -2434,7 +2489,12 @@ Úhel čar - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -2640,27 +2700,27 @@ - + Height - + Size Velikost - + Line length Délka čáry - + Arc length Délka oblouku - + Curve length Délka křivky @@ -3129,7 +3189,7 @@ - + Save as Uložit jako @@ -3449,7 +3509,7 @@ - + About Qt O Qt @@ -3472,73 +3532,73 @@ - + Size: - + pattern - + /pattern.val - + Critical error! - + Error parsing file (std::bad_alloc). - + Bad id. - + File saved - + untitled.val - + Unsaved change - + The pattern has been modified. Do you want to save your changes? - + &Undo - + &Redo - + Pattern piece: - + Enter a new label for the pattern piece. @@ -3547,129 +3607,129 @@ Do you want to save your changes? Chyba při ukládání změny! - - + + Select point Vybrat bod - + Select first point Vybrat první bod - + Select point of shoulder Vybrat bod ramene - - + + Select first point of line Vybrat první bod čáry - + Select first point of angle Vybrat první bod úhlu - + Select first point of first line Vybrat první bod první čáry - + Select first point curve Vybrat první bod křivky - + Select simple curve - + Select point of center of arc Vybrat bod středu oblouku - + Select point of curve path Vybrat bod cesty křivky - + Select curve path - + Select points, arcs, curves clockwise. Vybrat body, oblouky, křivky po směru hodinových ručiček. - + Select base point Vybrat základní bod - + Select first point of axis Vybrat první bod osy - + Select point vertically Vybrat bod svisle - + Select detail - + Select arc - + Wrong units. - + Application doesn't support standard table with inches. - + File error. - + File loaded - + The measurements file <br/><br/> <b>%1</b> <br/><br/> %3 - + could not be found. Do you want to update the file location - + Standard measurements (*.vst) - + Individual measurements (*.vit) @@ -3694,7 +3754,7 @@ Do you want to save your changes? Chcete uložit své změny? - + Height: @@ -3703,13 +3763,13 @@ Do you want to save your changes? Velikost: - + Pattern Piece: - - + + Pattern files (*.val) @@ -3722,8 +3782,8 @@ Do you want to save your changes? Chyba při ukládání souboru! Nelze uložit soubor. - - + + Open file Otevřít soubor @@ -3740,24 +3800,24 @@ Do you want to save your changes? Nepodařilo se odstranit soubor se střihem - - + + Error parsing file. Chyba při zpracování souboru. - + Error can't convert value. Chyba. Nelze převést hodnotu. - - + + Error empty parameter. Chyba. Prázdný parametr. - + Error wrong id. Chyba. Špatné ID. @@ -7279,12 +7339,12 @@ Do you want to save your changes? main - + Pattern making program. - + Pattern file. diff --git a/src/app/share/translations/valentina_de_DE.ts b/src/app/share/translations/valentina_de_DE.ts index 5a78fdd2b..2e2c1c1ac 100644 --- a/src/app/share/translations/valentina_de_DE.ts +++ b/src/app/share/translations/valentina_de_DE.ts @@ -20,7 +20,7 @@ AddToCalc - + Add object Objekt hinzufügen @@ -397,7 +397,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula Variablen - Doppelklick fügt die Variable in die Formel ein @@ -524,7 +529,12 @@ Linenwinkel - + + Hide empty measurements + + + + Variables Variablen @@ -657,7 +667,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula Variablen - Doppelklick fügt die Variable in die Formel ein @@ -760,7 +775,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula Variablen - Doppelklick fügt die Variable in die Formel ein @@ -853,7 +873,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula Variablen - Doppelklick fügt die Variable in die Formel ein @@ -946,7 +971,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula Variablen - Doppelklick fügt die Variable in die Formel ein @@ -1090,7 +1120,12 @@ Winkel der Linien - + + Hide empty measurements + + + + Variables Variablen @@ -1200,9 +1235,18 @@ - + + Hide empty measurements + + + + + Variables + Variablen + + Variables - Click twice to insert into formula - Variablen - Doppelklick fügt die Variable in die Formel ein + Variablen - Doppelklick fügt die Variable in die Formel ein @@ -1369,7 +1413,7 @@ DialogIncrements - + Increments weitere Maße @@ -1379,33 +1423,33 @@ - - + + Name Bezeichnung - - + + The calculated value Berechneter Wert - - + + Base value Basiswert - - + + In sizes In Konfektionen - - - + + + Description Beschreibung @@ -1446,94 +1490,99 @@ - - + + Hide empty measurements + + + + + In heights - + Lines Linien - + Line Linie - - - + + + Length Länge - + Curves Kurven - + Curve Kurve - + Arcs Bögen - + Arc Bogen - - + + File error. Dateifehler. - + male männlich - + female weiblich - + Measurements use different units than pattern. This pattern required measurements in %1 Die Maße sind in einer anderen Einheit als das Schnittmuster. Dieses Schnittmuster setzt Maße in %1 vorraus - + Individual measurements (*.vit) Individuelle Maße (*.vit) - - + + Open file Datei öffnen - - + + Wrong units. Falsche Maßeinheit. - + Standard measurements (*.vst) Standardmaße (*.vst) - + Name_%1 Name_%1 @@ -1848,7 +1897,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula Variablen - Doppelklick fügt die Variable in die Formel ein @@ -2175,7 +2229,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula. Variablen - Doppelklick fügt die Variable in die Formel ein. @@ -2322,7 +2381,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula Variablen - Doppelklick fügt die Variable in die Formel ein @@ -2516,27 +2580,27 @@ - + Height Größe - + Size Konfektion - + Line length Linienlänge - + Arc length Bogenlänge - + Curve length Kurvenlänge @@ -3154,7 +3218,7 @@ Strg+S - + Save as Speichern als @@ -3261,7 +3325,7 @@ Strg+L - + About Qt Über Qt @@ -3276,245 +3340,245 @@ Schnittteil %1 - + Pattern piece: Schnittteil: - + Enter a new label for the pattern piece. Es muss ein neues Label für das Schnittteil eingegeben werden. - - + + Select point Punkt wählen - + Select first point Zweiten Punkt wählen - + Select point of shoulder - - + + Select first point of line Ersten Punkt der Linie auswählen - + Select first point of angle Den Erstehn Punkt des Winkels wählen - + Select first point of first line Den ersten Punkt der Linie wählen - + Select first point curve Ersten Punkt der Kurve wählen - + Select simple curve Einfache Kurve auswählen - + Select point of center of arc Mittelpunkt des Bogens auswählen - + Select point of curve path Punkt für den Kurvenpfad auswählen - + Select curve path Kurvenpfad auswählen - + Select points, arcs, curves clockwise. Punkte, Bögen, Kurven im Uhrzeigersinn auswählen. - + Select base point Fußpunkt auswählen - + Select first point of axis Ersten Punkt der Achse auswählen - + Select point vertically - + Select detail Detail auswählen - + Select arc - + Size: - + pattern - + Critical error! - + Error parsing file (std::bad_alloc). - + Bad id. - + &Undo - + &Redo &Wiederholen - + Wrong units. Falsche Maßeinheiten. - + Application doesn't support standard table with inches. - + File error. Dateifehler. - + The measurements file <br/><br/> <b>%1</b> <br/><br/> %3 - + could not be found. Do you want to update the file location - + Standard measurements (*.vst) Standardmaße (*.vst) - + Individual measurements (*.vit) Individuelle Maße (*.vit) - + File loaded - + Height: Größe: - + Pattern Piece: Schnittteil: - - + + Pattern files (*.val) Schnittmuster Dateien (*.val) - + /pattern.val /schnittmuster.val - + File saved Datei gespeichert - + untitled.val unbenannt.val - + Unsaved change Ungespeicherte Änderungen - + The pattern has been modified. Do you want to save your changes? Das Schnittmuster wurde geändert. Sollen die Änderungen gespeichert werden? - - + + Open file Datei öffnen - - + + Error parsing file. Fehler beim Parsen der Datei. - + Error can't convert value. Fehler Wert kann nicht konvertiert werden. - - + + Error empty parameter. Fehler leerer parameter. - + Error wrong id. Fehler falsche Id. @@ -6880,12 +6944,12 @@ Sollen die Änderungen gespeichert werden? main - + Pattern making program. Programm zum Schnittmuster erstellen. - + Pattern file. Schnittmusterdatei diff --git a/src/app/share/translations/valentina_fr_FR.ts b/src/app/share/translations/valentina_fr_FR.ts index b7e197d6d..736aa3ee2 100644 --- a/src/app/share/translations/valentina_fr_FR.ts +++ b/src/app/share/translations/valentina_fr_FR.ts @@ -20,7 +20,7 @@ AddToCalc - + Add object Ajouter un objet @@ -397,7 +397,12 @@ Angle des lignes - + + Hide empty measurements + + + + Variables - Click twice to insert into formula Variables - Double-cliquer pour ajouter à une formule @@ -524,7 +529,12 @@ Angle des lignes - + + Hide empty measurements + + + + Variables Variables @@ -657,7 +667,12 @@ Angle des lignes - + + Hide empty measurements + + + + Variables - Click twice to insert into formula Variables - Double-cliquer pour ajouter à une formule @@ -760,7 +775,12 @@ Angle des lignes - + + Hide empty measurements + + + + Variables - Click twice to insert into formula Variables - Double-cliquer pour ajouter à une formule @@ -853,7 +873,12 @@ Angle des lignes - + + Hide empty measurements + + + + Variables - Click twice to insert into formula Variables - Double-cliquer pour ajouter à une formule @@ -946,7 +971,12 @@ Angle des lignes - + + Hide empty measurements + + + + Variables - Click twice to insert into formula Variables - Double-cliquer pour ajouter à une formule @@ -1090,7 +1120,12 @@ Angle des lignes - + + Hide empty measurements + + + + Variables Variables @@ -1200,9 +1235,18 @@ Angle des lignes - + + Hide empty measurements + + + + + Variables + Variables + + Variables - Click twice to insert into formula - Variables - Double-cliquer pour ajouter à une formule + Variables - Double-cliquer pour ajouter à une formule @@ -1369,7 +1413,7 @@ DialogIncrements - + Increments Évolutions @@ -1379,33 +1423,33 @@ Courriel - - + + Name Nom - - + + The calculated value Valeur calculée - - + + Base value Valeur de départ - - + + In sizes En tailles - - - + + + Description Description @@ -1446,94 +1490,99 @@ Sexe - - + + Hide empty measurements + + + + + In heights Taille - + Lines Lignes - + Line Ligne - - - + + + Length Longueur - + Curves Courbes - + Curve Courbe - + Arcs Arcs - + Arc Arc - - + + File error. Erreur de fichier. - + male homme - + female femme - + Measurements use different units than pattern. This pattern required measurements in %1 - + Individual measurements (*.vit) Mesure Individuelles (*.vit) - - + + Open file Ouvrir - - + + Wrong units. Mauvaise unité. - + Standard measurements (*.vst) Mesures standard (*.vst) - + Name_%1 Nom_%1 @@ -1848,7 +1897,12 @@ Angle des lignes - + + Hide empty measurements + + + + Variables - Click twice to insert into formula Variables - Double-cliquer pour ajouter à une formule @@ -2175,7 +2229,12 @@ Angle des lignes - + + Hide empty measurements + + + + Variables - Click twice to insert into formula. Variables - Double-cliquer pour ajouter à une formule @@ -2322,7 +2381,12 @@ Angle des lignes - + + Hide empty measurements + + + + Variables - Click twice to insert into formula Variables - Double-cliquer pour ajouter à une formule @@ -2516,27 +2580,27 @@ Valeur : - + Height Stature - + Size Taille - + Line length Longueur de ligne - + Arc length Longueur d'arc - + Curve length Longueur de courbe @@ -3156,7 +3220,7 @@ Ctrl+S - + Save as Enregistrer sous @@ -3263,7 +3327,7 @@ Ctrl+L - + About Qt A propos de Qt @@ -3278,245 +3342,245 @@ Élément de patron %1 - + Pattern piece: Élément de patron: - + Enter a new label for the pattern piece. Saisir une nouvelle désignation pour cet élément de patron. - - + + Select point Choisir un point - + Select first point Choisir le premier point - + Select point of shoulder Sélectionnez le point d'épaule - - + + Select first point of line Choisir le premier point de la ligne - + Select first point of angle Choisir le premier point de l'angle - + Select first point of first line Choisir le premier point de la première ligne - + Select first point curve Choisir le premier point de la courbe - + Select simple curve Choisir une courbe simple - + Select point of center of arc Choisir le point central de l'arc - + Select point of curve path Choisir un point sur la courbe - + Select curve path Choisir le chemin de courbe - + Select points, arcs, curves clockwise. Choisir points, arcs et courbes dans le sens horaire. - + Select base point Choisir le point de départ - + Select first point of axis Choisir le premier point de l'axe - + Select point vertically Choisir le point verticallement - + Select detail Choisir les détails - + Select arc Choisir un arc - + Size: Taille : - + pattern parton - + Critical error! Erreur critique! - + Error parsing file (std::bad_alloc). Erreur d'interprétation de fichier.(std::bad_alloc). - + Bad id. Mauvais id. - + &Undo - + &Redo - + Wrong units. Mauvaises unités de mesure. - + Application doesn't support standard table with inches. L'application ne supporte pas la table de mesure standard en pouces. - + File error. Erreur de fichier - + The measurements file <br/><br/> <b>%1</b> <br/><br/> %3 - + could not be found. Do you want to update the file location Ne peut être trouvé. voulez vous mettre à jour le chemin du fichier - + Standard measurements (*.vst) Mesures standard (*.vst) - + Individual measurements (*.vit) Mesures individuelles (*.vit) - + File loaded Fichier chargé - + Height: Stature : - + Pattern Piece: Élément de patron : - - + + Pattern files (*.val) Fichier de patron (*.val) - + /pattern.val - + File saved Fichier suvegardé - + untitled.val - + Unsaved change - + The pattern has been modified. Do you want to save your changes? Le patron a été changé. Voulez vous sauvegarder les changements ? - - + + Open file Ouvrir fichier - - + + Error parsing file. Erreur d'interprétation de fichier. - + Error can't convert value. Erreur : valeur non convertissable. - - + + Error empty parameter. Erreur : paramètre vide. - + Error wrong id. Erreur : mauvais id. @@ -6883,12 +6947,12 @@ Voulez vous sauvegarder les changements ? main - + Pattern making program. Programme de réalisation de patrons - + Pattern file. Fichier Patron diff --git a/src/app/share/translations/valentina_he_IL.ts b/src/app/share/translations/valentina_he_IL.ts index ed7fe023b..49c8bcc3d 100644 --- a/src/app/share/translations/valentina_he_IL.ts +++ b/src/app/share/translations/valentina_he_IL.ts @@ -20,7 +20,7 @@ AddToCalc - + Add object @@ -397,7 +397,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -524,7 +529,12 @@ - + + Hide empty measurements + + + + Variables @@ -657,7 +667,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -760,7 +775,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -853,7 +873,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -946,7 +971,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -1090,7 +1120,12 @@ - + + Hide empty measurements + + + + Variables @@ -1200,8 +1235,13 @@ - - Variables - Click twice to insert into formula + + Hide empty measurements + + + + + Variables @@ -1369,7 +1409,7 @@ DialogIncrements - + Increments @@ -1379,33 +1419,33 @@ - - + + Name - - + + The calculated value הערך המחושב - - + + Base value - - + + In sizes - - - + + + Description @@ -1446,94 +1486,99 @@ - - + + Hide empty measurements + + + + + In heights - + Lines קווים - + Line קו - - - + + + Length אורך - + Curves עקומות - + Curve עקומה - + Arcs - + Arc - - + + File error. - + male - + female - + Measurements use different units than pattern. This pattern required measurements in %1 - + Individual measurements (*.vit) - - + + Open file - - + + Wrong units. - + Standard measurements (*.vst) - + Name_%1 @@ -1848,7 +1893,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -2175,7 +2225,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula. @@ -2322,7 +2377,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -2516,27 +2576,27 @@ - + Height - + Size - + Line length אורך הקו - + Arc length - + Curve length אורך העקומה @@ -3154,7 +3214,7 @@ - + Save as @@ -3261,7 +3321,7 @@ - + About Qt @@ -3276,244 +3336,244 @@ - + Pattern piece: - + Enter a new label for the pattern piece. - - + + Select point - + Select first point לבחור נקודה ראשונה - + Select point of shoulder - - + + Select first point of line לבחור נקודה ראשונה - + Select first point of angle - + Select first point of first line - + Select first point curve - + Select simple curve - + Select point of center of arc - + Select point of curve path - + Select curve path - + Select points, arcs, curves clockwise. - + Select base point - + Select first point of axis - + Select point vertically - + Select detail - + Select arc - + Size: - + pattern - + Critical error! - + Error parsing file (std::bad_alloc). - + Bad id. - + &Undo - + &Redo - + Wrong units. - + Application doesn't support standard table with inches. - + File error. - + The measurements file <br/><br/> <b>%1</b> <br/><br/> %3 - + could not be found. Do you want to update the file location - + Standard measurements (*.vst) - + Individual measurements (*.vit) - + File loaded - + Height: - + Pattern Piece: - - + + Pattern files (*.val) - + /pattern.val - + File saved - + untitled.val - + Unsaved change - + The pattern has been modified. Do you want to save your changes? - - + + Open file - - + + Error parsing file. - + Error can't convert value. - - + + Error empty parameter. - + Error wrong id. @@ -6879,12 +6939,12 @@ Do you want to save your changes? main - + Pattern making program. - + Pattern file. diff --git a/src/app/share/translations/valentina_it_IT.ts b/src/app/share/translations/valentina_it_IT.ts index 2e7382c4f..3b97c331e 100644 --- a/src/app/share/translations/valentina_it_IT.ts +++ b/src/app/share/translations/valentina_it_IT.ts @@ -20,7 +20,7 @@ AddToCalc - + Add object @@ -405,7 +405,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -540,7 +545,12 @@ - + + Hide empty measurements + + + + Variables @@ -677,7 +687,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -784,7 +799,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -881,7 +901,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -978,7 +1003,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -1126,7 +1156,12 @@ - + + Hide empty measurements + + + + Variables @@ -1244,8 +1279,13 @@ - - Variables - Click twice to insert into formula + + Hide empty measurements + + + + + Variables @@ -1413,38 +1453,38 @@ DialogIncrements - + Increments - - + + Name - - + + The calculated value - - + + Base value - - + + In sizes - - - + + + Description @@ -1494,94 +1534,99 @@ - - + + Hide empty measurements + + + + + In heights - + Lines - + Line - - - + + + Length - + Curves - + Curve - + Arcs - + Arc - - + + File error. - + male - + female - + Measurements use different units than pattern. This pattern required measurements in %1 - + Individual measurements (*.vit) - - + + Open file - - + + Wrong units. - + Standard measurements (*.vst) - + Name_%1 @@ -1908,7 +1953,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -2243,7 +2293,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula. @@ -2398,7 +2453,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -2592,27 +2652,27 @@ - + Height - + Size - + Line length - + Arc length - + Curve length @@ -3033,7 +3093,7 @@ - + Save as @@ -3341,7 +3401,7 @@ Ctrl+L - + About Qt @@ -3356,200 +3416,200 @@ - + Size: - + pattern - + /pattern.val - + Critical error! - + Error parsing file (std::bad_alloc). - + Bad id. - + File saved - + untitled.val - + Unsaved change - + The pattern has been modified. Do you want to save your changes? - + &Undo - + &Redo - + Pattern piece: - + Enter a new label for the pattern piece. - - + + Select point - + Select first point - + Select point of shoulder - - + + Select first point of line - + Select first point of angle - + Select first point of first line - + Select first point curve - + Select simple curve - + Select point of center of arc - + Select point of curve path - + Select curve path - + Select points, arcs, curves clockwise. - + Select base point - + Select first point of axis - + Select point vertically - + Select detail - + Select arc - + Wrong units. - + Application doesn't support standard table with inches. - + File error. - + File loaded - + The measurements file <br/><br/> <b>%1</b> <br/><br/> %3 - + could not be found. Do you want to update the file location - + Standard measurements (*.vst) - + Individual measurements (*.vit) @@ -3558,46 +3618,46 @@ Do you want to save your changes? <h1>%1</h1> %2 <br/><br/> %3 <br/><br/> %4 - + Height: - + Pattern Piece: - - + + Pattern files (*.val) - - + + Open file - - + + Error parsing file. - + Error can't convert value. - - + + Error empty parameter. - + Error wrong id. @@ -6963,12 +7023,12 @@ Do you want to save your changes? main - + Pattern making program. - + Pattern file. diff --git a/src/app/share/translations/valentina_nl_NL.ts b/src/app/share/translations/valentina_nl_NL.ts index 532447645..fee02be41 100644 --- a/src/app/share/translations/valentina_nl_NL.ts +++ b/src/app/share/translations/valentina_nl_NL.ts @@ -20,7 +20,7 @@ AddToCalc - + Add object @@ -397,7 +397,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -524,7 +529,12 @@ - + + Hide empty measurements + + + + Variables @@ -657,7 +667,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -760,7 +775,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -853,7 +873,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -946,7 +971,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -1090,7 +1120,12 @@ - + + Hide empty measurements + + + + Variables @@ -1200,8 +1235,13 @@ - - Variables - Click twice to insert into formula + + Hide empty measurements + + + + + Variables @@ -1369,7 +1409,7 @@ DialogIncrements - + Increments @@ -1379,33 +1419,33 @@ - - + + Name - - + + The calculated value - - + + Base value - - + + In sizes - - - + + + Description @@ -1446,94 +1486,99 @@ - - + + Hide empty measurements + + + + + In heights - + Lines - + Line - - - + + + Length - + Curves - + Curve - + Arcs - + Arc - - + + File error. - + male - + female - + Measurements use different units than pattern. This pattern required measurements in %1 - + Individual measurements (*.vit) - - + + Open file - - + + Wrong units. - + Standard measurements (*.vst) - + Name_%1 @@ -1848,7 +1893,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -2175,7 +2225,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula. @@ -2322,7 +2377,12 @@ - + + Hide empty measurements + + + + Variables - Click twice to insert into formula @@ -2516,27 +2576,27 @@ - + Height - + Size - + Line length - + Arc length - + Curve length @@ -2953,7 +3013,7 @@ - + Save as @@ -3261,7 +3321,7 @@ - + About Qt @@ -3276,244 +3336,244 @@ - + /pattern.val - + File saved - + untitled.val - + Unsaved change - + The pattern has been modified. Do you want to save your changes? - + Pattern piece: - + Enter a new label for the pattern piece. - - + + Select point - + Select first point - + Select point of shoulder - - + + Select first point of line - + Select first point of angle - + Select first point of first line - + Select first point curve - + Select simple curve - + Select point of center of arc - + Select point of curve path - + Select curve path - + Select points, arcs, curves clockwise. - + Select base point - + Select first point of axis - + Select point vertically - + Select detail - + Select arc - + Size: - + pattern - + Critical error! - + Error parsing file (std::bad_alloc). - + Bad id. - + &Undo - + &Redo - + Wrong units. - + Application doesn't support standard table with inches. - + File error. - + File loaded - + The measurements file <br/><br/> <b>%1</b> <br/><br/> %3 - + could not be found. Do you want to update the file location - + Standard measurements (*.vst) - + Individual measurements (*.vit) - + Height: - + Pattern Piece: - - + + Pattern files (*.val) - - + + Open file - - + + Error parsing file. - + Error can't convert value. - - + + Error empty parameter. - + Error wrong id. @@ -6879,12 +6939,12 @@ Do you want to save your changes? main - + Pattern making program. - + Pattern file. diff --git a/src/app/share/translations/valentina_ru_RU.ts b/src/app/share/translations/valentina_ru_RU.ts index e2410279f..a30f75269 100644 --- a/src/app/share/translations/valentina_ru_RU.ts +++ b/src/app/share/translations/valentina_ru_RU.ts @@ -20,7 +20,7 @@ AddToCalc - + Add object Добавить объект @@ -392,12 +392,17 @@ Уголы линий - + + Hide empty measurements + Спрятать пустые мерки + + + Variables - Click twice to insert into formula Переменные - кликнете дважды для вставки в формулу - + Input data Входные данные @@ -580,7 +585,12 @@ Уголы линий - + + Hide empty measurements + Спрятать пустые мерки + + + Variables Переменные @@ -696,12 +706,17 @@ Уголы линий - + + Hide empty measurements + Спрятать пустые мерки + + + Variables - Click twice to insert into formula Переменные - кликнете дважды для вставки в формулу - + Input data Входные данные @@ -840,7 +855,12 @@ Уголы линий - + + Hide empty measurements + Спрятать пустые мерки + + + Variables - Click twice to insert into formula Переменные - кликнете дважды для вставки в формулу @@ -945,7 +965,12 @@ Уголы линий - + + Hide empty measurements + Спрятать пустые мерки + + + Variables - Click twice to insert into formula Переменные - кликнете дважды для вставки в формулу @@ -1050,7 +1075,12 @@ Уголы линий - + + Hide empty measurements + Спрятать пустые мерки + + + Variables - Click twice to insert into formula Переменные - кликнете дважды для вставки в формулу @@ -1202,7 +1232,12 @@ Уголы линий - + + Hide empty measurements + Спрятать пустые мерки + + + Variables Переменные @@ -1299,9 +1334,18 @@ Уголы линий - + + Hide empty measurements + Спрятать пустые мерки + + + + Variables + Переменные + + Variables - Click twice to insert into formula - Переменные - кликнете дважды для вставки в формулу + Переменные - кликнете дважды для вставки в формулу Angle of line @@ -1312,7 +1356,7 @@ Угол - + Input data Входные данные @@ -1517,7 +1561,7 @@ DialogIncrements - + Increments Прибавки @@ -1526,7 +1570,7 @@ Стандартная таблица - + Measurements Мерки @@ -1562,26 +1606,31 @@ Стать - - + + Hide empty measurements + Спрятать пустые мерки + + + + Name Обозначение - - + + The calculated value Расчитаное значение - - + + Base value Базовое значение - - + + In sizes В размерах @@ -1590,9 +1639,9 @@ В ростах - - - + + + Description Опис @@ -1609,18 +1658,18 @@ ... - + Email E-mail - - + + In heights В ростах - + Lines Линии @@ -1666,14 +1715,14 @@ Обозначение %1 - - + + File error. Ошибка файла. - + male мужчина @@ -1683,7 +1732,7 @@ женщина - + Measurements use different units than pattern. This pattern required measurements in %1 Мерки используют другие единицы измерения нежели лекало. Это лекало требует мерки в %1 @@ -2080,7 +2129,12 @@ Уголы линий - + + Hide empty measurements + Спрятать пустые мерки + + + Variables - Click twice to insert into formula Переменные - кликнете дважды для вставки в формулу @@ -2540,12 +2594,17 @@ Уголы линий - + + Hide empty measurements + Спрятать пустые мерки + + + Variables - Click twice to insert into formula. Переменные - кликнете дважды для вставки в формулу. - + Increments Прибавки @@ -2713,12 +2772,17 @@ Уголы линий - + + Hide empty measurements + Спрятать пустые мерки + + + Variables - Click twice to insert into formula Переменные - кликнете дважды для вставки в формулу - + Increments Прибавки @@ -2976,7 +3040,7 @@ Значение - + Height Рост @@ -3590,7 +3654,7 @@ Свойства лекала - + Save as Сохранить как @@ -3856,7 +3920,7 @@ Чертеж: - + Pattern piece %1 Чертеж %1 @@ -3865,7 +3929,7 @@ Ошибка создания чертежа с именем - + Enter a new label for the pattern piece. Введите новое имя для чертежа. @@ -7588,7 +7652,7 @@ Do you want to save your changes? QObject - + Create new pattern piece to start working. Создайте новый чертеж для начала работы. @@ -8644,7 +8708,7 @@ Do you want to save your changes? main - + Pattern making program. Программа создания выкроек. diff --git a/src/app/share/translations/valentina_uk_UA.ts b/src/app/share/translations/valentina_uk_UA.ts index 0b5f13609..c570483a5 100644 --- a/src/app/share/translations/valentina_uk_UA.ts +++ b/src/app/share/translations/valentina_uk_UA.ts @@ -20,7 +20,7 @@ AddToCalc - + Add object Додати обєкт @@ -380,7 +380,12 @@ Кути ліній - + + Hide empty measurements + Сховати пусті мірки + + + Variables - Click twice to insert into formula Змінні - клікніть двічі для вставки в формулу @@ -560,7 +565,12 @@ Кут ліній - + + Hide empty measurements + Сховати пусті мірки + + + Variables Змінні @@ -672,7 +682,12 @@ Кут ліній - + + Hide empty measurements + Сховати пусті мірки + + + Variables - Click twice to insert into formula Змінні - клікніть двічі для вставки в формулу @@ -816,7 +831,12 @@ Кут ліній - + + Hide empty measurements + Сховати пусті мірки + + + Variables - Click twice to insert into formula Змінні - клікніть двічі для вставки в формулу @@ -921,7 +941,12 @@ Кут ліній - + + Hide empty measurements + Сховати пусті мірки + + + Variables - Click twice to insert into formula Змінні - клікніть двічі для вставки в формулу @@ -1026,7 +1051,12 @@ Кут ліній - + + Hide empty measurements + Сховати пусті мірки + + + Variables - Click twice to insert into formula Змінні - клікніть двічі для вставки в формулу @@ -1178,7 +1208,12 @@ Кут ліній - + + Hide empty measurements + Сховати пусті мірки + + + Variables Змінні @@ -1267,9 +1302,18 @@ Кут ліній - + + Hide empty measurements + Сховати пусті мірки + + + + Variables + Змінні + + Variables - Click twice to insert into formula - Змінні - клікніть двічі для вставки в формулу + Змінні - клікніть двічі для вставки в формулу Angle of line @@ -1485,7 +1529,7 @@ DialogIncrements - + Increments Прибавки @@ -1530,26 +1574,31 @@ Стать - - + + Hide empty measurements + Сховати пусті мірки + + + + Name Позначення - - + + The calculated value Розраховане значення - - + + Base value Базове значення - - + + In sizes В розмірах @@ -1558,9 +1607,9 @@ В ростах - - - + + + Description Опис @@ -1578,18 +1627,18 @@ E-mail - - + + In heights В ростах - + Lines Лінії - + Line Лінія @@ -1598,12 +1647,12 @@ Довжина лінії - + Curves Криві - + Curve Крива @@ -1612,12 +1661,12 @@ Довжина кривої - + Arcs Дуги - + Arc Дуга @@ -1631,50 +1680,50 @@ - - + + File error. Помилка файла. - + male чоловік - + female жінка - + Measurements use different units than pattern. This pattern required measurements in %1 Мірки використовують інші одиниці виміри ніж лекало. Це лекало потребує мірок в %1 - + Individual measurements (*.vit) Індивідуальні мірки (*.vit) - - + + Open file Відкрити файл - - + + Wrong units. Неправильні одиниці виміру. - + Standard measurements (*.vst) Стандартні мірки (*.vst) - + Name_%1 Name_%1 @@ -1687,9 +1736,9 @@ Розраховане значення - - - + + + Length Довжина @@ -2024,7 +2073,12 @@ Кут ліній - + + Hide empty measurements + Сховати пусті мірки + + + Variables - Click twice to insert into formula Змінні - клікніть двічі для вставки в формулу @@ -2328,7 +2382,12 @@ Кут ліній - + + Hide empty measurements + Сховати пусті мірки + + + Variables - Click twice to insert into formula. Змінні - клікніть двічі для вставки в формулу. @@ -2493,7 +2552,12 @@ Кут ліній - + + Hide empty measurements + Сховати пусті мірки + + + Variables - Click twice to insert into formula Змінні - клікніть двічі для вставки в формулу @@ -2756,27 +2820,27 @@ Значення - + Height Зріст - + Size Розмір - + Line length Довжина лінії - + Arc length Довжина дуги - + Curve length Довжина кривої @@ -3366,7 +3430,7 @@ Властивості лекала - + Save as Зберегти як @@ -3578,7 +3642,7 @@ Ctrl+L - + About Qt Про Qt @@ -3607,119 +3671,119 @@ Помилка збереження змін!!! - - + + Select point Виберість точку - + Select first point Виберіть першу точку - + Select point of shoulder Виберіть точку плеча - - + + Select first point of line Виберіть першу точку лінії - + Select first point of angle Виберіть першу точку кута - + Select first point of first line Виберіть першу точку першої лінії - + Select first point curve Виберіть першу точку кривої - + Select point of center of arc Виберіть точку центру дуги - + Select point of curve path Виберіть точку складної кривої - + Size: Розмір: - + pattern Лекало - + Critical error! Критична помилка! - + Error parsing file (std::bad_alloc). Помилка парсінгу файлу (std::bad_alloc). - + Bad id. Поганий id. - + &Undo &Відмінити - + &Redo &Повторити - + Wrong units. Неправильні одиниці виміру. - + Application doesn't support standard table with inches. Програма не підтримує стандарнту таблицю з дюймами. - + File error. Помилка файла. - + The measurements file <br/><br/> <b>%1</b> <br/><br/> %3 Файл мірок <br/><br/> <b>%1</b> <br/><br/> %3 - + could not be found. Do you want to update the file location не може бути знайдений. Ви хочете оновити шлях до файлу - + Standard measurements (*.vst) Стандартні мірки (*.vst) - + Individual measurements (*.vit) Індивідуальні мірки (*.vit) @@ -3736,12 +3800,12 @@ Помилка. Креслення з таким імям уже існує. - + Pattern piece: Креслення: - + Enter a new label for the pattern piece. Введить нове ім'я для креслення. @@ -3786,8 +3850,8 @@ Помилка збереження файлу. Не можу зберегти файл. - - + + Open file Відкрити файл @@ -3828,7 +3892,7 @@ Помилка! - + Select points, arcs, curves clockwise. Виберіть точки, дуги, криві загодинниковою стрілкою. @@ -3842,37 +3906,37 @@ Помилка створення лекала з ім'ям - + Select simple curve Виберіть просту криву - + Select curve path Виберіть складну криву - + Select base point Виберіть базову точку - + Select first point of axis Виберіть першу точку вісі - + Select point vertically Виберіть точку по вертикалі - + Select detail Виберіть деталь - + Select arc Виберіть дугу @@ -3885,28 +3949,28 @@ Зібрано %3 в %4 - + Height: Зріст: - + Pattern Piece: Креслення: - - + + Pattern files (*.val) Файл лекала (*.val) - + /pattern.val /викрійка.val - + File saved Файл збережено @@ -3915,17 +3979,17 @@ Не можу зберегти лекало - + untitled.val безімений.val - + Unsaved change Незбережені зміни - + The pattern has been modified. Do you want to save your changes? Лекало було змінено. Ви хочете зберегти ваші зміни? @@ -3940,7 +4004,7 @@ Do you want to save your changes? Не можу прочитати файл%1:\n%2. - + File loaded Файл завантажено @@ -3961,24 +4025,24 @@ Do you want to save your changes? Не можу відкрити файл викрійки. Ім'я файлу пусте - - + + Error parsing file. Помилка парсингу файла. - + Error can't convert value. Помилка, не можу конвертувати значення. - - + + Error empty parameter. Помилка, пустий параметр. - + Error wrong id. Помикла, неправильний id. @@ -7584,12 +7648,12 @@ Do you want to save your changes? main - + Pattern making program. Програма створення викрійок. - + Pattern file. Файл лекала.