Compare commits

..

No commits in common. "develop" and "83-export-drawing" have entirely different histories.

1933 changed files with 382100 additions and 226427 deletions

View File

@ -1,118 +0,0 @@
### Global defaults
env:
CCACHE_SIZE: "200M"
CCACHE_DIR: "/tmp/ccache_dir"
CCACHE_NOHASHDIR: "1" # Debug info might contain a stale path if the build dir changes, but this is fine
CCACHE_CPP2: "yes"
QT_SELECT: "qt5"
### Task templates
# https://cirrus-ci.org/guide/tips-and-tricks/#sharing-configuration-between-tasks
filter_template: &FILTER_TEMPLATE
skip: "!changesInclude('.cirrus.yml', '**.{h,cpp,c,pro,pri,ts,ui,png}')"
regular_task_template: &REGULER_TASK_TEMPLATE
<< : *FILTER_TEMPLATE
ccache_cache:
folder: "/tmp/ccache_dir"
linux_task_template: &LINUX_TASK_TEMPLATE
<< : *REGULER_TASK_TEMPLATE
env:
DEBIAN_FRONTEND: "noninteractive"
PACKAGE_MANAGER_INSTALL: "apt-get -qq update && apt-get install -y"
container:
cpu: 4
install_script:
- bash -c "$PACKAGE_MANAGER_INSTALL qtbase5-dev libqt5svg5-dev qttools5-dev-tools libqt5xmlpatterns5-dev libqt5core5a libqt5gui5 libqt5printsupport5 libqt5svg5 libqt5widgets5 libqt5xml5 libqt5xmlpatterns5 poppler-utils xvfb ccache"
build_script:
- uname -a
- echo $PATH
- which qmake
- mkdir build
- cd build
- pwd
- qmake --version
- qmake ../Valentina.pro -r -spec linux-${COMPILER} CONFIG+=noDebugSymbols CONFIG+=checkWarnings
- ${COMPILER} --version
- make -j$(nproc)
- export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:"$CIRRUS_WORKING_DIR/build/src/libs/vpropertyexplorer/bin:$CIRRUS_WORKING_DIR/build/src/libs/qmuparser/bin"
- xvfb-run -a make --silent check TESTARGS="-silent"
macos_task_template: &MACOS_TASK_TEMPLATE
<< : *REGULER_TASK_TEMPLATE
timeout_in: 120m
env:
ACCESS_TOKEN: ENCRYPTED[81e0b2381ffb628b73f5c94f834010e6631191e0ad03cdd0850d440fb2737a74b68131d842030f010c1bf73ab4cdc1ae]
QTDIR: "/usr/local/opt/qt5"
PATH: ${HOME}/.local/bin:$QTDIR/bin:${PATH}
# ^ add user paths
PIP_CACHE_DIR: ${HOME}/.cache/pip
DEPLOY: "true"
LDFLAGS: "-L$QTDIR/lib"
CPPFLAGS: "-I$QTDIR/include"
PKG_CONFIG_PATH: "/usr/local/opt/qt5/lib/pkgconfig"
global_homebrew_cache:
folder: "/usr/local/Homebrew"
local_homebrew_cache:
folder: "$HOME/Library/Caches/Homebrew"
pip_cache:
folder: ${PIP_CACHE_DIR}
install_script:
- brew update > /dev/null
- brew install qt5 coreutils ccache
- chmod -R 755 /usr/local/opt/qt5/*
- python3 --version
- pip3 install --user --upgrade pip dropbox
build_script:
- mkdir build
- cd build
- pwd
- qmake --version
- qmake ../Valentina.pro -r CONFIG+=noDebugSymbols CONFIG+=checkWarnings CONFIG+=noTests
- ${COMPILER} --version
- make -j$(nproc)
deploy_script:
- pwd
- $CIRRUS_WORKING_DIR/scripts/cirrus-deploy.sh
before_cache_script:
- brew cleanup
env:
COMPILER: clang
task:
name: 'macOS Catalina 10.15 [no tests]'
macos_instance:
image: catalina-xcode-11.3.1
<< : *MACOS_TASK_TEMPLATE
env:
PLATFORM: "macOS_10.14+"
task:
name: 'macOS Big Sur 11 [no tests]'
macos_instance:
image: big-sur-xcode-12.4
<< : *MACOS_TASK_TEMPLATE
env:
PLATFORM: "macOS_10.15+"
task:
name: 'latest GCC'
container:
image: teeks99/gcc-ubuntu:latest
memory: 16G # Set to 16GB to avoid OOM. https://cirrus-ci.org/guide/linux/#linux-container
<< : *LINUX_TASK_TEMPLATE
env:
COMPILER: g++
GCC_COLORS: 'error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
task:
name: 'latest Clang'
container:
image: silkeh/clang:latest
memory: 8G # Set to 8GB to avoid OOM. https://cirrus-ci.org/guide/linux/#linux-container
<< : *LINUX_TASK_TEMPLATE
env:
COMPILER: clang

View File

@ -1,27 +0,0 @@
on:
check_suite:
type: ['completed']
name: Email about Cirrus CI failures
jobs:
continue:
name: After Cirrus CI Failure
if: github.event.check_suite.app.name == 'Cirrus CI' && github.event.check_suite.conclusion != 'success'
runs-on: ubuntu-latest
steps:
- uses: octokit/request-action@v2.x
id: get_failed_check_run
with:
route: GET /repos/${{ github.repository }}/check-suites/${{ github.event.check_suite.id }}/check-runs?status=completed
mediaType: '{"previews": ["antiope"]}'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: |
echo "Cirrus CI ${{ github.event.check_suite.conclusion }} on ${{ github.event.check_suite.head_branch }} branch!"
echo "SHA ${{ github.event.check_suite.head_sha }}"
echo $MESSAGE
echo "##[error]See $CHECK_RUN_URL for details" && false
env:
CHECK_RUN_URL: ${{ fromJson(steps.get_failed_check_run.outputs.data).check_runs[0].html_url }}

View File

@ -1,7 +1,4 @@
language: cpp
env:
global:
- secure: Zo+BbyV3sgNmKHwWvn7cCt3leXCLGbE9rSrAYoCrl22OEDZjPj7KeGzQ/59xLosE5v8PA5MV8KceH7aQB9GoIbDt6sHLw5mws13VXmy5HWtM7yhk2RpNnn1gTZIfEz33QGYuPG1geapTcZtZfaVKFU04PMkvk3f7zxA1HuS6zGRgzrNv1AmcpuOGH4LIGxbk3Z1S6xGcUMj/z9calyLlmPTOfbDLJWChU11FMVmvdTzyeDLE0oQZ5IkmsowluCfDHARfIijeRuPiuU8RzJptYEIzcWvpQ6gfDb4qDWndA9BgPDkN2aTmPL5/TA/S9zfs8BKjo07sg0TaVbTboPisyS/gGDf3SBYxlAS9B95KKdRzGGD41ZYe+cHod5tgWUt5gO/Obq2MPY/GltSwuq5KEsR+R/pKVLby/k7+R5oCO8avXJPL5HBgn46ZehEzpw0I8LFQ/ed+dLqykrxaSiA2/zHAkHSeVZptzegoCF5xeDf6T/rJFNqxr1BV3kVLPiXW90z0m63Hv2K6rz8LmBUNTQcR/mrLpkpdbQ8UQ/et30o7CE2GcJLLzUDNcjxYfA1fe66oR9L+euqyBtZc8dNuzy1iIaUOLazGWYkdlUpiYnGvWrxv6BUwzAJYpiXjWELtcTVUGMjMBpkvAmwV1FjZN45isX2iHGz5XhoVDrjbE5c=
jobs:
include:
- stage: main test
@ -12,10 +9,10 @@ jobs:
- DEPLOY=false
- CCACHE_CPP2=yes
- RUN_TESTS=true
cache:
ccache: true
directories:
- "$HOME/.sonar/cache"
cache:
ccache: true
directories:
- "$HOME/.sonar/cache"
- os: linux
dist: bionic
compiler: clang
@ -24,42 +21,29 @@ jobs:
- CCACHE_CPP2=yes
- RUN_TESTS=true
cache:
ccache: true
directories:
- "$HOME/.sonar/cache"
ccache: true
directories:
- "$HOME/.sonar/cache"
- os: osx
compiler: clang
env:
- DEPLOY=true
- LEGACY=false
- XCODE=xcode12_2
osx_image: xcode12.2
cache:
directories:
- "$HOME/Library/Caches/Homebrew"
- "/usr/local/Homebrew"
- os: osx
compiler: clang
env:
- DEPLOY=true
- LEGACY=false
- XCODE=xcode11
osx_image: xcode11
cache:
directories:
- "$HOME/Library/Caches/Homebrew"
- "/usr/local/Homebrew"
- $HOME/Library/Caches/Homebrew
- /usr/local/Homebrew
- os: osx
compiler: clang
env:
- DEPLOY=true
- LEGACY=true
- XCODE=xcode8
osx_image: xcode8
cache:
directories:
- "$HOME/Library/Caches/Homebrew"
- "/usr/local/Homebrew"
- $HOME/Library/Caches/Homebrew
- /usr/local/Homebrew
before_cache:
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then brew cleanup; fi
# Credit https://discourse.brew.sh/t/best-practice-for-homebrew-on-travis-brew-update-is-5min-to-build-time/5215/9
@ -92,13 +76,10 @@ before_install:
chmod -R 755 /usr/local/opt/qt5/*
else
unset SSL_CERT_FILE;
HOMEBREW_NO_AUTO_UPDATE=1 brew install https://gist.githubusercontent.com/dismine/c3ac01de38e12edcf22d9e05791adf82/raw/1218041ffba3ff4b64d109e64a9a867f8fe394c1/qt.rb;
HOMEBREW_NO_AUTO_UPDATE=1 brew install https://gist.githubusercontent.com/dismine/c3ac01de38e12edcf22d9e05791adf82/raw/f553c39bbc5f3a2b231a767924e846bdd2a56d8d/qt.rb;
brew link qt --force;
chmod -R 755 /usr/local/opt/qt/*;
HOMEBREW_NO_AUTO_UPDATE=1 brew install python3;
chmod -R 755 /usr/local/opt/qt/*
fi
python3 --version;
pip3 install dropbox;
fi
before_script:
- |
@ -124,11 +105,7 @@ before_script:
qmake ../Valentina.pro -r -spec linux-clang CONFIG+=noDebugSymbols CONFIG+=checkWarnings CONFIG+=noTests;
fi
else
if [[ "$LEGACY" = false ]]; then
qmake ../Valentina.pro -r CONFIG+=noDebugSymbols CONFIG+=no_ccache CONFIG+=checkWarnings CONFIG+=noTests;
else
qmake ../Valentina.pro -r CONFIG+=noDebugSymbols CONFIG+=no_ccache CONFIG+=noTests;
fi
qmake ../Valentina.pro -r CONFIG+=noDebugSymbols CONFIG+=no_ccache CONFIG+=checkWarnings CONFIG+=noTests;
fi
script:
- "$CXX --version"
@ -148,6 +125,23 @@ notifications:
- dismine@gmail.com
on_success: change
on_failure: always
after_success:
- ../scripts/travis-deploy.sh
before_deploy:
- |
if [[ "$DEPLOY" == "true" ]]; then
../scripts/macfixqtdylibrpath.py $TRAVIS_BUILD_DIR/build/src/app/valentina/bin/Valentina.app;
if [[ "$LEGACY" = false ]]; then
tar -C $TRAVIS_BUILD_DIR/build/src/app/valentina/bin --exclude "*.DS_Store" -cvzf valentina-osx-${TRAVIS_COMMIT}.tar.gz Valentina.app/;
else
tar -C $TRAVIS_BUILD_DIR/build/src/app/valentina/bin --exclude "*.DS_Store" -cvzf valentina-osx-${TRAVIS_COMMIT}-legacy.tar.gz Valentina.app/;
fi
fi
deploy:
provider: bintray
skip_cleanup: true
file: "../share/bintray.json"
user: dismine
key:
secure: q9rcswyUyOqHAnxL0FLEQ8tdFkE21kNlv/TUpZgk0MbcsWRhBWaKJVv5kz6ABkjeLMB7c7eS7KfYRui0RFBKHI7ZnpzHBZN4f1aGd/rf9m5qaZdKFFBlpz4tXPHvXOVyXRwOReqFj7brAz6NB+oqJN8HFA4Q1y039yZOaHt28JkwYSDqS5lRvbwegYS8kaJupGZcm8NaNeB8tuXuZ/8DIQpZdVKmBUwpgpPAewCEqYP4z9DUpsmMZ5h63g7mJKm9di91cQr65eS24io6m1ZfAx8M6kTaKwyR5nz8a8bnqR48AAnbNoM8Xj1sgJqnT40DZKPCNr7KL3JSNRglKNgHVMFBOj0v9F5YxsDs8twWuqFVbywB+lNSHDyvGVgmS2+EdwKLQT0YBxYfIL1nh34ed7GffZZmBcAJGfxo8ieAMRgyylSyQIHJ0ZBl6X6DzOvLpvFlcva9yhqZfkx3P/Dgarqklnj3DdvzTDW2vxCT4yVLpMySlBXW2I3s7m8xpOjZbM7eZfMZkwjd/e8IYp8jxdQnxlzNe15mzxSXnZjLz3Rwi1qzhJZyZf4OGVxuQuR9oW+c5q55OOY5hImtZELlJyu1K0zKTd85g0D+WwKj4J30J0QWl1pxZlln59Q5cMmpyQ7sc8zN1WPoWAEyavwPrf4028TpEJqaUw/0cQGg9I4=
on:
all_branches: true
condition: "$DEPLOY = true"

View File

@ -1,142 +1,4 @@
# Valentina 0.7.52 (unreleased)
- Fix crash when default locale is ru.
- Puzzle app. Fix incorrect update of a layout piece.
- Fix visualization for tool Point of intersection line and axis.
- Improved curve segment warnings.
- Tape app. Add action Add separator to menu.
- Tape app. Fix crash after switching language.
- Fix Valentina app crash after canceling a tool.
- Puzzle app. Fix reading a piece name.
- Fix warning while segmenting flipped arc.
- Tape app. "Export from existing ..." now supports multisize measurements.
- Fix main path validation. False positive double curve.
- Fix Setup multisize measurements dialog. Improved handling Height dimension.
- Fix updating dimension labels in Valentina app.
- Fix menu on Mac OS X.
- Add function's argument template with name in the Formula Wizard.
- Unit type for increments.
- Support for options Force Flipping and Forbid Flipping in Puzzle.
- Remember selected dimension values.
- Fix segmenting a simple curve.
- Fix export tiled pdf on Mac OS.
- Improve visualization for tools.
- Fix calculating an elliptical arc.
- Enable Approximation scale option for Elliptical arc.
- Fix bug in seam allowance.
- Allow resizing Spline path dialog.
# Valentina 0.7.51 April 18, 2022
- Z value change for a layout piece.
- Fix issue with Custom template.
- Fix issue with tile font size.
- [smart-pattern/valentina#171] System identifies two of the same curve.
- [smart-pattern/valentina#170] Incorrect work with curves.
- Suspend use of qt_ntfs_permission_lookup. QTBUG-101168
- Remove support for russian language.
- Improve CLI. Better handle printer margins.
- Improve file format conversion.
- Improve handling gradation change.
# Valentina 0.7.50 February 14, 2022
- Fix regression. Minimal seam allowance width is less than the point accuracy values.
- Call autosave only in GUI mode.
- Warn about stale layout only in GUI mode.
- Fix regression. Set default value for detail labels size and grainline length to 10 cm.
- [smart-pattern/valentina#136] 2 decimals for entering values in multi measurements tables.
- New warnings. Warn a user about incorrect cut curve segment length.
- Fix finding point of intersection curve and axis. Case when the axis's point lies on the curve.
- Fix visualization for tool point of intersection line and axis. Case when the axis's point lies on the line.
- Table of variables is available in Details mode.
- Fix incorrect comparison of the global length of passmark to minimal allowed value.
- Make an increment name valid after user selected it from a completion list.
- [smart-pattern/valentina#145] Fix Seam allowance not correct at intersection curve and axis.
- Show tooltip about defined user material in the label placeholder list.
- Fix reading tiled page margins in console mode.
- Fix handling numeric values passed in console mode.
- Add Don't ask again for Stale layout question dialog.
- Help user to select default GUI language.
- Improve validation grainline position.
- Increased the limit for the Letter field.
- Fix double call of a main path context menu.
- Improve storing visibility group items. Don't store duplicate information.
- Remove tool from all visibility groups it in.
- Option to disable the automatic search for updates.
- [smart-pattern/valentina#153] To add text search bar in History window.
- Improve for a search bar.
- Backport fix vulnerability CVE-2021-21900.
- Improved main path validations.
- New path validation Invalid segment.
- [smart-pattern/valentina#43] Background image.
- Fix alias for tool Cut Arc.
- Fix infinite loop in tool cut spline.
- Added scroll area to layout settings dialog.
- Allow size to have values from 1 to 100 if not a circumference.
- Fix tool True darts notes.
- New measurement type separator.
- Improve creation by mouse for tool Spline.
- Fix incorrect translation of known measurements.
- Adjust combobox to fit a dimension label length.
- Dimension custom name.
# Valentina 0.7.49 July 1, 2021
- Fix crash.
- Add tooltip for Export draw feature.
# Valentina 0.7.48 June 29, 2021
- [smart-pattern/valentina#129] Incorrect behavior of empty arc and elliptical arc.
- Parsing formulas with not canonical math symbols.
- [smart-pattern/valentina#133] Incorrect seam allowance.
- Fix regression. Fix correct handle export format for exporting details in the Detail mode.
- [smart-pattern/valentina#83] Export the Draw mode.
# Version 0.7.47 May 13, 2021
- [smart-pattern/valentina#118] Incorrect seam allowance.
- [smart-pattern/valentina#119] Improve tool Point of intersection curves.
- [smart-pattern/valentina#120] Incorrect seam allowance.
- Fix export to DXF AAMA/ASTM.
- [smart-pattern/valentina#121] Incorrect elliptical arc end angle.
- [smart-pattern/valentina#122] Extend piece bounding rect.
- Remember last selected export format.
- [smart-pattern/valentina#123] Error inside Save layout dialog.
- Improve error handling for the dxf export.
- Fix correct handle a final measurement formula error when exporting a pattern recipe.
- Fix regression. Incorrect data caching.
- Improve tool tooltip. Show segment names and aliases.
- Alias support for tools Point of intersection curve and axis and Point of intersection curves.
- [smart-pattern/valentina#124] Standard passmarks length for all pieces.
# Version 0.7.46 Mar 31, 2021
- Fix incorrect calculation of value for multisize measurements in Valentina.
- [smart-pattern/valentina#109] Pattern label template placeholder with dimension label value.
- Incorrect duplication of a piece. Missing restoring pins.
- [smart-pattern/valentina#112] Incorrect seam allowance.
- [smart-pattern/valentina#113] Incorrect seam allowance.
- [smart-pattern/valentina#114] Incorrect seam allowance.
- Fixed bugs.
- Updated translations.
# Version 0.7.45 Feb 26, 2021
- Fix incorrect seam allowance for angle type second edge right angle.
- Fix regression with country flags.
- Fix bug in seam allowance.
- [smart-pattern/valentina#99] Incorrect fix of seam allowance distortion.
- Enabling Show Curve Details option causes constant redraw.
# Version 0.7.44 Feb 9, 2021
- Placeholder %size% has incorrect value.
- Values for waist and hip swapped for individual measurements.
- Fix crash when edit a group operation notes.
- Fix bug. Undo Union details hide piece node points.
# Version 0.7.43 Jan 31, 2021
- Improve Windows installer. Avoid crashing on checking if a program is still running.
- Fix regression. Changing dimension value caused an infinite loop.
- Fix regression. Export to tiled PDF has no suffix.
- Fix warning about missing EUDC font om Wondows.
- Fix regression in Pattern properties dialog. Tab Security is disabled for pattern with individual measurements.
- Don't warn about a file format update after Save as.
# Version 0.7.42 Jan 26, 2021
# Version 0.7.42 (unreleased)
- Fix export of pattern recipe.
- Update translations.
- Fix a regression in tool Segment a spline path.
@ -144,13 +6,6 @@
- New warning. Warn about empty measurements dimension value when preparing placeholders.
- New option "Don't use the native file dialog".
- Improve the layout option "Auto crop unused width".
- Improve multisize measurements format. Allow decimal step 0.5.
- Improve restrict dimension dialog. Disable not available combinations.
- Improve multisize measurements format. Allow excluding combinations inside min/max range.
- New warning. Grainline is not valid.
- [smart-pattern/valentina#87] Add support for TIFF format.
- [smart-pattern/valentina#88] Allow insertion of multiple nodes by setting their number.
- [smart-pattern/valentina#85] Final measurement printout on pattern piece.
# Version 0.7.41 Dec 4, 2020
- Bug fixes.
@ -282,8 +137,6 @@
- Fix removing a pin in the Seam Allowance tool dialog.
- Fix label size for case with two pins.
- Fix crash while synchronize measurements.
- Fix incorrect filename regular expressions.
- Enabling Show Curve Details option causes constant redraw.
# Version 0.6.1 October 23, 2018
- [#885] Regression. Broken support for multi size measurements.

View File

@ -1,9 +1,10 @@
Pattern making program
Author Roman Telezhynskyi <dismine(at)gmail.com>
Copyright (C) 2013-2021 Valentina project
Valentina Web page: https://smart-pattern.com.ua/
Copyright (C) 2013-2019 Valentina project
Valentina Web page: https://valentinaproject.bitbucket.io/
Wiki: https://wiki.valentinaproject.org
Valentina main repository: https://gitlab.com/smart-pattern/valentina
Valentina main repository: https://bitbucket.org/dismine/valentina/overview
Forum http://valentinaproject.forumotion.me/
PPA for Ubuntu (develop): https://launchpad.net/~dismine/+archive/valentina-dev
Help translate https://www.transifex.com/organization/valentina

View File

@ -13,5 +13,43 @@ count(LIST, 1, >): error("The build will fail. Path '$${PWD}' contains space!!!"
LIST = $$split(OUT_PWD,' ')
count(LIST, 1, >): error("The build will fail. Path '$${OUT_PWD}' contains space!!!")
unix {
*g++* {
GCC_VERSION = $$system("g++ -dumpversion")
contains(GCC_VERSION, ^9.*$) {
message( "g++ version 9.x found" )
CONFIG += g++9
} else {
GCC_VERSION = $$system("g++ -dumpversion")
contains(GCC_VERSION, ^8.*$) {
message( "g++ version 8.x found" )
CONFIG += g++8
} else {
contains(GCC_VERSION, ^7.*$) {
message( "g++ version 7.x found" )
CONFIG += g++7
} else {
contains(GCC_VERSION, ^6.*$) {
message( "g++ version 6.x found" )
CONFIG += g++6
} else {
contains(GCC_VERSION, ^5.*$) {
message( "g++ version 5.x found" )
CONFIG += g++5
} else {
contains(GCC_VERSION, ^4.*$) {
message( "g++ version 4.x found" )
CONFIG += g++4
} else {
message( "Unknown GCC configuration" )
}
}
}
}
}
}
}
}
TEMPLATE = subdirs
SUBDIRS = src

View File

@ -37,28 +37,24 @@ clone_depth: 1 # clone entire repository history if not de
shallow_clone: false # default is "false"
environment:
ACCESS_TOKEN:
secure: RUhnEHqaR8KhalOMWwZZOoO342Ja50QV4KpEWdm9g3pG+jG7i6aJqUmeKF1l5VN6dzksk1u+yN6pOLnU8oGcaVQ6v+1dpKK1oZvF0tyHhNE=
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
QT5: Qt\5.15\mingw81_32
QT_VERSION: Qt5_15
QT_VERSION: Qt5.15
QMAKE_GENERATOR: "MinGW Makefiles"
MINGW_PATH: C:\Qt\Tools\mingw810_32\bin
PYTHON: "C:\\Python38-x64"
PLATFORM: x86
DEPLOY: true
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
QT5: Qt\5.6\mingw49_32
QT_VERSION: Qt5_6
QT_VERSION: Qt5.6
QMAKE_GENERATOR: "MinGW Makefiles"
MINGW_PATH: C:\Qt\Tools\mingw492_32\bin
PYTHON: "C:\\Python38-x64"
PLATFORM: x86
DEPLOY: true
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
QT5: Qt\5.15\mingw81_64
QT_VERSION: Qt5_15
QT_VERSION: Qt5.15
QMAKE_GENERATOR: "MinGW Makefiles"
MINGW_PATH: C:\Qt\Tools\mingw810_64\bin
PLATFORM: x64
@ -69,9 +65,107 @@ environment:
VSVER: 16
PLATFORM: x64
DEPLOY: false
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
QT5: Qt\5.14\mingw73_32
QT_VERSION: Qt5.14
QMAKE_GENERATOR: "MinGW Makefiles"
MINGW_PATH: C:\Qt\Tools\mingw730_32\bin
PLATFORM: x86
DEPLOY: false
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
QT5: Qt\5.14\mingw73_64
QT_VERSION: Qt5.14
QMAKE_GENERATOR: "MinGW Makefiles"
MINGW_PATH: C:\Qt\Tools\mingw730_64\bin
PLATFORM: x64
DEPLOY: false
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
QT5: Qt\5.14\msvc2017_64
QMAKE_GENERATOR: "NMake Makefiles JOM"
VSVER: 15
PLATFORM: x64
DEPLOY: false
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
QT5: Qt\5.13\mingw73_64
QT_VERSION: Qt5.13
QMAKE_GENERATOR: "MinGW Makefiles"
MINGW_PATH: C:\Qt\Tools\mingw730_64\bin
PLATFORM: x64
DEPLOY: false
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
QT5: Qt\5.13\msvc2017_64
QMAKE_GENERATOR: "NMake Makefiles JOM"
VSVER: 15
PLATFORM: x64
DEPLOY: false
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
QT5: Qt\5.12\mingw73_64
QT_VERSION: Qt5.12
QMAKE_GENERATOR: "MinGW Makefiles"
MINGW_PATH: C:\Qt\Tools\mingw730_64\bin
PLATFORM: x64
DEPLOY: false
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
QT5: Qt\5.12\msvc2017_64
QMAKE_GENERATOR: "NMake Makefiles JOM"
VSVER: 15
PLATFORM: x64
DEPLOY: false
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
QT5: Qt\5.11\mingw53_32
QT_VERSION: Qt5.11
QMAKE_GENERATOR: "MinGW Makefiles"
MINGW_PATH: C:\Qt\Tools\mingw530_32\bin
PLATFORM: x86
DEPLOY: false
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
QT5: Qt\5.11\msvc2015_64
QMAKE_GENERATOR: "NMake Makefiles JOM"
VSVER: 14
PLATFORM: x64
DEPLOY: false
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
QT5: Qt\5.10\mingw53_32
QT_VERSION: Qt5.10
QMAKE_GENERATOR: "MinGW Makefiles"
MINGW_PATH: C:\Qt\Tools\mingw530_32\bin
PLATFORM: x86
DEPLOY: false
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
QT5: Qt\5.10\msvc2017_64
QMAKE_GENERATOR: "NMake Makefiles JOM"
VSVER: 15
PLATFORM: x64
DEPLOY: false
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
QT5: Qt\5.9\mingw53_32
QT_VERSION: Qt5.9
QMAKE_GENERATOR: "MinGW Makefiles"
MINGW_PATH: C:\Qt\Tools\mingw530_32\bin
PLATFORM: x86
DEPLOY: false
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
QT5: Qt\5.9\msvc2017_64
QMAKE_GENERATOR: "NMake Makefiles JOM"
VSVER: 15
PLATFORM: x64
DEPLOY: false
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
QT5: Qt\5.7\mingw53_32
QT_VERSION: Qt5.7
QMAKE_GENERATOR: "MinGW Makefiles"
MINGW_PATH: C:\Qt\Tools\mingw530_32\bin
PLATFORM: x86
DEPLOY: false
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
QT5: Qt\5.7\msvc2015
QMAKE_GENERATOR: "NMake Makefiles JOM"
VSVER: 14
PLATFORM: x86
DEPLOY: false
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
QT5: Qt\5.6\msvc2015_64
QT_VERSION: Qt5_6
QT_VERSION: Qt5.6
QMAKE_GENERATOR: "NMake Makefiles JOM"
VSVER: 14
PLATFORM: x64
@ -97,16 +191,9 @@ init:
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2015" if "%QMAKE_GENERATOR%"=="NMake Makefiles JOM" if "%PLATFORM%"=="x64" call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86_amd64
- if "%QMAKE_GENERATOR%" == "MinGW Makefiles" set PATH=%MINGW_PATH%;%PATH%
- if "%QMAKE_GENERATOR%" == "NMake Makefiles JOM" set PATH=C:\Qt\Tools\QtCreator\bin;%PATH%
- if "%DEPLOY%" == "true" set PATH=%PYTHON%;%PYTHON%\Scripts;%PATH%
# Set paths to libraries
- set PATH=C:\projects\valentina\build\src\libs\vpropertyexplorer\bin;C:\projects\valentina\build\src\libs\qmuparser\bin;%PATH%
# Path after
- path
# Check that we have the expected version for Python
- if "%DEPLOY%" == "true" (python --version)
# Install the build dependencies of the project.
- if "%DEPLOY%" == "true" (python -m pip install --upgrade pip)
- if "%DEPLOY%" == "true" (python -m pip install dropbox)
# Trick qmake to not work through MSYS
- del /F "C:\Program Files\Git\usr\bin\sh.exe"
- del /F "C:\Program Files\Git\bin\sh.exe"
@ -157,7 +244,21 @@ notifications:
after_test:
- if "%DEPLOY%" == "true" (mingw32-make install)
# to run your custom scripts instead of provider deployments
deploy_script:
- ps: ../scripts/appveyor-deploy.ps1
artifacts:
- path: build/package/valentina
name: valentina-win-$(QT_VERSION)-$(APPVEYOR_REPO_BRANCH)-$(APPVEYOR_REPO_COMMIT)
deploy:
- provider: BinTray
username: dismine
api_key:
secure: dlVBgPG66AfYTbgi9EQFaK4lZeF77H6/aiuKlmCWP02/i85HLtCMnlOkyWJR5XCu
subject: dismine
repo: Valentina
package: valentina-win_auto-upload
publish: true
override: true
version: 0.7.41
on:
DEPLOY: true
artifact: valentina-win-$(QT_VERSION)-$(APPVEYOR_REPO_BRANCH)-$(APPVEYOR_REPO_COMMIT)

View File

@ -14,20 +14,6 @@ win32{
}
unix{
*g++* {
GCC_VERSION = $$system("g++ -dumpfullversion -dumpversion")
GCC_VERSIONS = $$split(GCC_VERSION, ".")
COMPILER_MAJOR_VERSION = $$member(GCC_VERSIONS, 0)
message("g++ version $${COMPILER_MAJOR_VERSION}.x found")
greaterThan(COMPILER_MAJOR_VERSION, 3):CONFIG += g++4
greaterThan(COMPILER_MAJOR_VERSION, 4):CONFIG += g++5
greaterThan(COMPILER_MAJOR_VERSION, 5):CONFIG += g++6
greaterThan(COMPILER_MAJOR_VERSION, 6):CONFIG += g++7
greaterThan(COMPILER_MAJOR_VERSION, 7):CONFIG += g++8
greaterThan(COMPILER_MAJOR_VERSION, 8):CONFIG += g++9
}
macx{
VCOPY = $$QMAKE_COPY
} else {
@ -148,6 +134,11 @@ win32 {
DEFINES += QT_NO_FOREACH
macx{
# QTBUG-31034 qmake doesn't allow override QMAKE_CXX
CONFIG+=no_ccache
}
CONFIG(release, debug|release){
!noDebugSymbols:win32:!*msvc*{
unset(QMAKE_STRIP)
@ -288,6 +279,12 @@ defineReplace(FindBuildRevision){
return(\\\"unknown\\\")
}else{
# Release mode
macx{
GIT = /usr/local/bin/git # Can't defeat PATH variable on Mac OS.
}else {
GIT = git # All other platforms are OK.
}
DVCS_HESH=$$system("git rev-parse --short HEAD")
isEmpty(DVCS_HESH){
DVCS_HESH = \\\"unknown\\\" # if we can't find build revision left unknown.
@ -304,6 +301,12 @@ defineReplace(FindLatestTagDistance){
return(0)
}else{
# Release mode
#get latest git tag and it's distance from HEAD
macx{
GIT = /usr/local/bin/git # Can't defeat PATH variable on Mac OS.
}else {
GIT = GIT # All other platforms all OK.
}
# tag is formatted as TAG-N-gSHA:
# 1. latest stable version is TAG, or vX.Y.Z
@ -326,30 +329,44 @@ defineReplace(FindLatestTagDistance){
# In debug mode on Unix system we use all usefull for us compilers keys for checking errors.
# Also trying make all possible for speed up build time.
unix {
LIBS_USED_FOR_QT = \
QtCore \
QtSvg \
QtXml \
QtPrintSupport \
QtXmlPatterns \
QtWidgets \
QtGui \
QtNetwork \
QtTest \
QtConcurrent
# Key -isystem disable checking errors in system headers. Marking ignore for warnings in Qt headers.
!macx{
ISYSTEM += -isystem "$$[QT_INSTALL_HEADERS]"
!macx{
# Key -isystem disable checking errors in system headers. Mark ignore warnings Qt headers.
ISYSTEM += \
-isystem "$$[QT_INSTALL_HEADERS]" \
-isystem "$$[QT_INSTALL_HEADERS]/QtWidgets" \
-isystem "$$[QT_INSTALL_HEADERS]/QtXml" \
-isystem "$$[QT_INSTALL_HEADERS]/QtGui" \
-isystem "$$[QT_INSTALL_HEADERS]/QtXmlPatterns" \
-isystem "$$[QT_INSTALL_HEADERS]/QtCore" \
-isystem "$$[QT_INSTALL_HEADERS]/QtPrintSupport" \
-isystem "$$[QT_INSTALL_HEADERS]/QtSvg" \
-isystem "$$[QT_INSTALL_HEADERS]/QtNetwork" \
-isystem "$$[QT_INSTALL_HEADERS]/QtTest" \
-isystem "$$[QT_INSTALL_HEADERS]/QtConcurrent"
for(somelib, $$list($$LIBS_USED_FOR_QT)) {
ISYSTEM += -isystem "$$[QT_INSTALL_HEADERS]/$${somelib}"
}
} else {
for(somelib, $$list($$LIBS_USED_FOR_QT)) {
ISYSTEM += -isystem "$$[QT_INSTALL_LIBS]/$${somelib}.framework/Versions/5/Headers"
ISYSTEM += -isystem "$$[QT_INSTALL_LIBS]/$${somelib}.framework/Headers"
}
ISYSTEM += \
-isystem "$$[QT_INSTALL_LIBS]/QtWidgets.framework/Headers/" \
-isystem "$$[QT_INSTALL_LIBS]/QtWidgets.framework/Versions/5/Headers/" \
-isystem "$$[QT_INSTALL_LIBS]/QtXml.framework/Headers/" \
-isystem "$$[QT_INSTALL_LIBS]/QtXml.framework/Versions/5/Headers/" \
-isystem "$$[QT_INSTALL_LIBS]/QtGui.framework/Headers/" \
-isystem "$$[QT_INSTALL_LIBS]/QtGui.framework/Versions/5/Headers/" \
-isystem "$$[QT_INSTALL_LIBS]/QtXmlPatterns.framework/Headers/" \
-isystem "$$[QT_INSTALL_LIBS]/QtXmlPatterns.framework/Versions/5/Headers/" \
-isystem "$$[QT_INSTALL_LIBS]/QtCore.framework/Headers/" \
-isystem "$$[QT_INSTALL_LIBS]/QtCore.framework/Versions/5/Headers/" \
-isystem "$$[QT_INSTALL_LIBS]/QtPrintSupport.framework/Headers/" \
-isystem "$$[QT_INSTALL_LIBS]/QtPrintSupport.framework/Versions/5/Headers/" \
-isystem "$$[QT_INSTALL_LIBS]/QtSvg.framework/Headers/" \
-isystem "$$[QT_INSTALL_LIBS]/QtSvg.framework/Versions/5/Headers/" \
-isystem "$$[QT_INSTALL_LIBS]/QtNetwork.framework/Headers/" \
-isystem "$$[QT_INSTALL_LIBS]/QtNetwork.framework/Versions/5/Headers/" \
-isystem "$$[QT_INSTALL_LIBS]/QtTest.framework/Headers/" \
-isystem "$$[QT_INSTALL_LIBS]/QtTest.framework/Versions/5/Headers/" \
-isystem "$$[QT_INSTALL_LIBS]/QtConcurrent.framework/Headers/" \
-isystem "$$[QT_INSTALL_LIBS]/QtConcurrent.framework/Versions/5/Headers/"
}
# Usefull GCC warnings keys.
@ -405,32 +422,50 @@ g++5:GCC_DEBUG_CXXFLAGS += \
-Wswitch-bool \
-Wlogical-not-parentheses \
-Wsizeof-array-argument \
# -Wsuggest-final-types \
# -Wsuggest-final-methods \
-Wbool-compare
-Wbool-compare \
-Wsuggest-final-types \
-Wsuggest-final-methods
# Since GCC 6
g++6:GCC_DEBUG_CXXFLAGS += \
-Wswitch-bool \
-Wlogical-not-parentheses \
-Wsizeof-array-argument \
-Wbool-compare \
-Wsuggest-final-types \
-Wsuggest-final-methods \
-Wshift-negative-value \
-Wshift-overflow \
-Wshift-overflow=2 \
-Wtautological-compare \
# -Wnull-dereference \
-Wnull-dereference \
-Wduplicated-cond \
-Wmisleading-indentation
# Since GCC 7
g++7:GCC_DEBUG_CXXFLAGS += \
-Wswitch-bool \
-Wlogical-not-parentheses \
-Wsizeof-array-argument \
-Wbool-compare \
-Wsuggest-final-types \
-Wsuggest-final-methods \
-Wshift-negative-value \
-Wshift-overflow \
-Wshift-overflow=2 \
-Wtautological-compare \
-Wnull-dereference \
-Wduplicated-cond \
-Wmisleading-indentation \
-Wduplicated-branches \
-Wrestrict \
-Walloc-zero \
-Wnonnull \
-Wno-stringop-overflow # cannot suppress warning in Qt headers
-Wnonnull
# Since GCC 8
g++8:GCC_DEBUG_CXXFLAGS += \
-Wmultistatement-macros \
-Warray-bounds
-Wmultistatement-macros \
-Warray-bounds
# Usefull Clang warnings keys.
CLANG_DEBUG_CXXFLAGS += \
@ -802,18 +837,8 @@ CLANG_DEBUG_CXXFLAGS += \
-Wzero-length-array \
-Qunused-arguments \
-fcolor-diagnostics \
-Wno-gnu-zero-variadic-macro-arguments \
-fms-extensions # Need for pragma message
macx{
# Cannot suppress warnings from Qt headers
CLANG_DEBUG_CXXFLAGS += \
-Wno-sign-conversion \
-Wno-duplicate-enum \
-Wno-shorten-64-to-32 \
-Wno-deprecated
}
CONFIG(release, debug|release){
CLANG_DEBUG_CXXFLAGS += -Wno-unknown-warning-option
}
@ -863,7 +888,6 @@ CLANG_DEBUG_CXXFLAGS += \
-Wall \
-Wextra \
-pedantic \
-Wno-gnu-zero-variadic-macro-arguments \
-fno-omit-frame-pointer \ # Need for exchndl.dll
-fms-extensions # Need for pragma message
@ -925,7 +949,5 @@ MSVC_DEBUG_CXXFLAGS += \
-wd4774 \ # format string expected in argument 3 is not a string literal
-wd5204 \ # class has virtual functions, but its trivial destructor is not virtual; instances of objects derived
# from this class may not be destructed correctly
-wd5219 \ # implicit conversion from '<type>' to '<type>', possible loss of data
-wd5243 # 'type-name': using incomplete class 'class-name' can cause potential one definition rule violation due
# to ABI limitation
-wd5219 # implicit conversion from '<type>' to '<type>', possible loss of data
}

View File

@ -32,40 +32,36 @@ build:
# resources which will become available as part of the source.
# The "appimage" source service needs to be enabled to process these.
# git:
# - https://gitlab.com/smart-pattern/valentina.git
git:
- https://github.com/dismine/Valentina_git.git
# hg:
# - ....
# svn:
# - ....
#
files:
- "https://gitlab.com/smart-pattern/valentina/-/archive/develop/valentina-develop.tar.gz"
# files:
# - http://myserver.org/myfile
# OPTIONAL: ingredient packages are packages which become part of the AppImage.
# you may want to remove parts of their content in script section.
ingredients:
packages:
- libqt5-qtimageformats
# ingredients:
# packages:
# - xterm
script:
# OPTIONAL: compile or modify the AppDir. The environment variables:
# - $BUILD_SOURCE_DIR point to the source directory
# - $BUILD_APPDIR point to the AppDir. This directory will become the content of the AppImage
- cd $BUILD_SOURCE_DIR
- tar zxvf $BUILD_SOURCE_DIR/valentina-develop.tar.gz
- mv -v valentina-develop valentina
- cd $BUILD_SOURCE_DIR/valentina
- cd $BUILD_SOURCE_DIR/Valentina_git
- qmake-qt5 PREFIX=/usr PREFIX_LIB=/usr/lib LRELEASE=lrelease-qt5 Valentina.pro -r DEFINES+=APPIMAGE "CONFIG += noTests noRunPath no_ccache noDebugSymbols"
- make -j$(nproc)
- make INSTALL_ROOT=$BUILD_APPDIR -j$(nproc) install
# create the image file
- unset QTDIR; unset QT_PLUGIN_PATH ; unset LD_LIBRARY_PATH
- rm -rf /usr/share/licenses/libqt5-qtimageformats
# bundle icu's data
- mkdir -p $BUILD_APPDIR/usr/share/icu
- cp /usr/share/icu/*/icudt*.dat $BUILD_APPDIR/usr/share/icu/
- linuxdeployqt $BUILD_APPDIR/usr/share/applications/valentina.desktop -bundle-non-qt-libs -verbose=2 -no-strip
- linuxdeployqt $BUILD_APPDIR/usr/share/applications/valentina.desktop -bundle-non-qt-libs -verbose=2
# Show what we have done
- find $BUILD_APPDIR/

View File

@ -1,5 +1,5 @@
valentina (0.7.51) trusty; urgency=low
valentina (0.7.41) trusty; urgency=low
* Auto build.
-- dismine <dismine@dismine-To-be-filled-by-O-E-M> Mon, 18 April 2022 20:07:00 +0300
-- dismine <dismine@dismine-To-be-filled-by-O-E-M> Fri, 4 Dec 2020 16:30:00 +0300

View File

@ -6,16 +6,17 @@ Build-Depends: debhelper (>= 8.0.0),
qtbase5-dev (>= 5.4.0),
libqt5svg5-dev (>= 5.4.0),
g++ (>= 4.8.0),
qt5-default (>= 5.4.0),
qttools5-dev-tools (>= 5.4.0),
libqt5xmlpatterns5-dev (>= 5.4.0),
libqt5opengl5-dev (>= 5.4.0)
Standards-Version: 3.9.5
Homepage: https://smart-pattern.com.ua/
Homepage: https://valentinaproject.bitbucket.io/
Vcs-Browser: https://gitlab.com/smart-pattern/valentina
Package: valentina
Architecture: i386 amd64
Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.4.0) | libqt5core5 (>= 5.4.0), libqt5gui5 (>= 5.4.0) | libqt5gui5-gles (>= 5.4.0), libqt5printsupport5 (>= 5.4.0), libqt5svg5 (>= 5.4.0), libqt5widgets5 (>= 5.4.0), libqt5xml5 (>= 5.4.0), libqt5xmlpatterns5 (>= 5.4.0), libqt5concurrent5(>= 5.4.0), libqt5opengl5 (>= 5.4.0), libstdc++6 (>= 4.8), poppler-utils, qt5-image-formats-plugins (>= 5.4.0)
Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.4.0) | libqt5core5 (>= 5.4.0), libqt5gui5 (>= 5.4.0) | libqt5gui5-gles (>= 5.4.0), libqt5printsupport5 (>= 5.4.0), libqt5svg5 (>= 5.4.0), libqt5widgets5 (>= 5.4.0), libqt5xml5 (>= 5.4.0), libqt5xmlpatterns5 (>= 5.4.0), libqt5concurrent5(>= 5.4.0), libqt5opengl5 (>= 5.4.0), libstdc++6 (>= 4.8), poppler-utils
Conflicts: seamly2d
Description: Pattern making program.
Valentina is a cross-platform patternmaking program which allows designers

View File

@ -1,13 +1,10 @@
debian/usr/share/pixmaps/valentina.png
debian/usr/share/pixmaps/tape.png
debian/usr/share/pixmaps/puzzle.png
debian/usr/share/pixmaps/application-x-valentina-pattern.png
debian/usr/share/pixmaps/application-x-valentina-i-measurements.png
debian/usr/share/pixmaps/application-x-valentina-s-measurements.png
debian/usr/share/pixmaps/application-x-valentina-layout.png
debian/valentina/usr/bin/valentina
debian/valentina/usr/bin/tape
debian/valentina/usr/bin/puzzle
debian/valentina/usr/share/valentina/diagrams.rcc
debian/valentina/usr/share/valentina/translations/measurements_p0_cs_CZ.qm
debian/valentina/usr/share/valentina/translations/measurements_p0_de_DE.qm

View File

@ -1,3 +1,2 @@
?package(valentina): needs="X11" section="Applications/Graphics" title="Valentina" command="valentina"
?package(valentina): needs="X11" section="Applications/Data Management" title="Tape" command="tape"
?package(valentina): needs="X11" section="Applications/Data Management" title="Puzzle" command="puzzle"

View File

@ -1,55 +0,0 @@
.\" Manpage for puzzle
.\" Contact dismine@gmail.com to correct errors.
.TH puzzle 1 "23 March, 2020" "puzzle man page"
.SH NAME
Puzzle \- Valentina's manual layout
.SH SYNOPSIS
puzzle [options] file
.SH DESCRIPTION
.B Valentina
Puzzle is the name of the new application to create manual layouts. Similar to "Tape", it is an application that is separated from Valentina and work on it's own, but is a part of the Valentina package and work closely together with Valentina.
.B Puzzle
is a part of Valentina. And used for creating and editing manual layouts.
.IP "-h, --help"
Displays this help.
.IP "-v, --version"
Displays version information.
.IP "-e, --exportFile <The filename of layout file>"
The filename of exported layout file. Use it to enable console export mode.
.IP "-r, --rawLayout <The raw layout data file>"
Load pattern pieces form the raw layout data file.
.IP "-f, --format <Format number>"
Number corresponding to tiled pdf page template (default = 0, export mode with tiled pdf format): <not defined>
.IP "--bdxf"
Export dxf in binary form.
.IP "--text2paths"
Export text as paths.
.IP "-c, --crop"
Auto crop unused length (export mode).
.IP "--cropWidth"
Auto crop unused width (export mode).
.IP "--tiledPageformat <Template number>"
Number corresponding to tiled pdf page template (default = 0, export mode with tiled pdf format): <not defined>
.IP "--tiledlmargin <The left margin>"
Tiled page left margin in current units like 3.0 (export mode). If not set will be used default value 1 cm.
.IP "--tiledrmargin <The right margin>"
Tiled page right margin in current units like 3.0 (export mode). If not set will be used default value 1 cm.
.IP "--tiledtmargin <The top margin>"
Tiled page top margin in current units like 3.0 (export mode). If not set will be used value default value 1 cm.
.IP "--tiledbmargin <The bottom margin>"
Tiled page bottom margin in current units like 3.0 (export mode). If not set will be used value default value 1 cm.
.IP "--tiledLandscape"
Set tiled page orienatation to landscape (export mode). Default value if not set portrait.
.IP "-t, --test"
Run the program in a test mode. The program in this mode loads a single layout file and silently quit without showing the main window. The key have priority before key 'exportFile'.
.IP "--no-scaling"
Disable high dpi scaling. Call this option if has problem with scaling (by default scaling enabled). Alternatively you can use the QT_AUTO_SCREEN_SCALE_FACTOR=0 environment variable.
.IP Arguments:
.I filename
\- the manual layout file.
.SH AUTHOR
.RI "This manual page was written by Roman Telezhynskyi <" dismine@gmail.com ">"
.BR valentina (1)

View File

@ -18,7 +18,7 @@
mkdir -p builddir
builddir/Makefile: builddir
cd builddir && QT_SELECT=qt5 qmake PREFIX=/usr PREFIX_LIB=$(PREFIX_LIB) "CONFIG += noTests noRunPath no_ccache noDebugSymbols" ../$(APPNAME).pro -r
cd builddir && qmake PREFIX=/usr PREFIX_LIB=$(PREFIX_LIB) "CONFIG += noTests noRunPath no_ccache noDebugSymbols" ../$(APPNAME).pro -r
build: build-stamp
build-stamp: builddir/Makefile
dh_testdir

View File

@ -1,6 +1,6 @@
.\" Manpage for valentina.
.\" Contact dismine@gmail.com to correct errors.
.TH valentina 1 "3 February, 2021" "valentina man page"
.TH valentina 1 "22 March, 2020" "valentina man page"
.SH NAME
Valentina \- Pattern making program.
.SH SYNOPSIS
@ -129,10 +129,7 @@ The path to output destination folder. By default the directory at which the app
.BR "*" " AutoCAD DXF 2013 ASTM файли (*.dxf) = 32,"
.RE
.RS
.BR "*" " PDF tiled files (*.pdf) = 33,"
.RE
.RS
.BR "*" " TIFF файли (*.tif) = 35."
.BR "*" " PDF tiled files (*.pdf) = 33."
.RE
.IP "--bdxf"
.RB "Export dxf in binary form."
@ -654,13 +651,6 @@ The path to output destination folder. By default the directory at which the app
.IP Arguments:
.I filename
\- a pattern file.
.SH EXAMPLE
.IP "Export a layout to tiled PDF:"
.SB "valentina --basename test --destination /home/user/tiled --format 33 --mfile /home/user/measurements/m1.vit --pedantic"
.IP "Export pieces to DXF AAMA bypassing the layout stage:"
.SB "valentina --basename test --destination /home/user/aama --format 18 --mfile /home/user/measurements/m1.vit --exportOnlyDetails --pedantic --exportSuchDetails ."
.IP "Export a layout to tiled PDF with final measurements:"
.SB "valentina --basename test --destination /home/user/tiled --format 33 --mfile /home/user/measurements/m1.vit --pedantic --csvExportFM /home/user/tiled/test.csv"
.SH AUTHOR
.RI "This manual page was written by Roman Telezhynskyi <" dismine@gmail.com ">"
.SH "SEE ALSO"

View File

@ -1,3 +1,2 @@
debian/valentina.1
debian/tape.1
debian/puzzle.1

View File

@ -1,4 +1,3 @@
application/x-valentina-pattern; valentina %s; nametemplate=%s.val; description="Valentina pattern" edit=valentina '%s'; priority=6
application/x-valentina-i-pattern; tape %s; nametemplate=%s.vit; description="Valentina individual measurments" edit=tape '%s'; priority=6
application/x-valentina-s-pattern; tape %s; nametemplate=%s.vst; description="Valentina standard measurments" edit=tape '%s'; priority=6
application/x-valentina-layout; puzzle %s; nametemplate=%s.vlt; description="Valentina layout" edit=puzzle '%s'; priority=6

View File

@ -282,98 +282,4 @@
<glob pattern="*.vst"/>
<icon name="application-x-valentina-s-measurements"/>
</mime-type>
<mime-type type="application/x-valentina-layout">
<sub-class-of type="text/xml"/>
<_comment>Valentina layout</_comment>
<comment xml:lang="af">Valentina layout</comment>
<comment xml:lang="ar">Valentina layout</comment>
<comment xml:lang="as">Valentina layout</comment>
<comment xml:lang="ast">Valentina layout</comment>
<comment xml:lang="be">Valentina layout</comment>
<comment xml:lang="bg">Valentina layout</comment>
<comment xml:lang="bn">Valentina layout</comment>
<comment xml:lang="br">Valentina layout</comment>
<comment xml:lang="bs">Valentina layout</comment>
<comment xml:lang="ca">Valentina layout</comment>
<comment xml:lang="ca-valencia">Valentina layout</comment>
<comment xml:lang="cs">Valentina layout</comment>
<comment xml:lang="cy">Valentina layout</comment>
<comment xml:lang="da">Valentina layout</comment>
<comment xml:lang="de">Valentina layout</comment>
<comment xml:lang="dz">Valentina layout</comment>
<comment xml:lang="el">Valentina layout</comment>
<comment xml:lang="en-GB">Valentina layout</comment>
<comment xml:lang="en-ZA">Valentina layout</comment>
<comment xml:lang="eo">Valentina layout</comment>
<comment xml:lang="es">Valentina layout</comment>
<comment xml:lang="et">Valentina layout</comment>
<comment xml:lang="eu">Valentina layout</comment>
<comment xml:lang="fa">Valentina layout</comment>
<comment xml:lang="fi">Valentina layout</comment>
<comment xml:lang="fr">Valentina layout</comment>
<comment xml:lang="ga">Valentina layout</comment>
<comment xml:lang="gd">Valentina layout</comment>
<comment xml:lang="gl">Valentina layout</comment>
<comment xml:lang="gu">Valentina layout</comment>
<comment xml:lang="he">Valentina layout</comment>
<comment xml:lang="hi">Valentina layout</comment>
<comment xml:lang="hr">Valentina layout</comment>
<comment xml:lang="hu">Valentina layout</comment>
<comment xml:lang="id">Valentina layout</comment>
<comment xml:lang="is">Valentina layout</comment>
<comment xml:lang="it">Valentina layout</comment>
<comment xml:lang="ja">Valentina layout</comment>
<comment xml:lang="ka">Valentina layout</comment>
<comment xml:lang="kk">Valentina layout</comment>
<comment xml:lang="km">Valentina layout</comment>
<comment xml:lang="kmr-Latn">Valentina layout</comment>
<comment xml:lang="ko">Valentina layout</comment>
<comment xml:lang="lt">Valentina layout</comment>
<comment xml:lang="lv">Valentina layout</comment>
<comment xml:lang="mk">Valentina layout</comment>
<comment xml:lang="ml">Valentina layout</comment>
<comment xml:lang="mn">Valentina layout</comment>
<comment xml:lang="mr">Valentina layout</comment>
<comment xml:lang="nb">Valentina layout</comment>
<comment xml:lang="ne">Valentina layout</comment>
<comment xml:lang="nl">Valentina layout</comment>
<comment xml:lang="nn">Valentina layout</comment>
<comment xml:lang="nr">Valentina layout</comment>
<comment xml:lang="nso">Valentina layout</comment>
<comment xml:lang="oc">Valentina layout</comment>
<comment xml:lang="om">Valentina layout</comment>
<comment xml:lang="or">Valentina layout</comment>
<comment xml:lang="pa-IN">Valentina layout</comment>
<comment xml:lang="pl">Valentina layout</comment>
<comment xml:lang="pt">Valentina layout</comment>
<comment xml:lang="pt-BR">Valentina layout</comment>
<comment xml:lang="ro">Valentina layout</comment>
<comment xml:lang="ru">Valentina раскладка</comment>
<comment xml:lang="rw">Valentina layout</comment>
<comment xml:lang="si">Valentina layout</comment>
<comment xml:lang="sk">Valentina layout</comment>
<comment xml:lang="sl">Valentina layout</comment>
<comment xml:lang="sr">Valentina layout</comment>
<comment xml:lang="ss">Valentina layout</comment>
<comment xml:lang="st">Valentina layout</comment>
<comment xml:lang="sv">Valentina layout</comment>
<comment xml:lang="ta">Valentina layout</comment>
<comment xml:lang="te">Valentina layout</comment>
<comment xml:lang="tg">Valentina layout</comment>
<comment xml:lang="th">Valentina layout</comment>
<comment xml:lang="tn">Valentina layout</comment>
<comment xml:lang="tr">Valentina layout</comment>
<comment xml:lang="ts">Valentina layout</comment>
<comment xml:lang="ug">Valentina layout</comment>
<comment xml:lang="uk">Valentina розкладка</comment>
<comment xml:lang="uz">Valentina layout</comment>
<comment xml:lang="ve">Valentina layout</comment>
<comment xml:lang="vi">Valentina layout</comment>
<comment xml:lang="xh">Valentina layout</comment>
<comment xml:lang="zh-CN">Valentina layout</comment>
<comment xml:lang="zh-TW">Valentina layout</comment>
<comment xml:lang="zu">Valentina layout</comment>
<glob pattern="*.vlt"/>
<icon name="application-x-valentina-layout"/>
</mime-type>
</mime-info>

View File

@ -2,21 +2,25 @@ Format: 3.0 (native)
Source: valentina
Binary: valentina
Architecture: i386 amd64
Version: 0.7.51
Version: 0.6.0
Maintainer: Roman Telezhynskyi <dismine@gmail.com>
Homepage: https://smart-pattern.com.ua
Homepage: https://valentinaproject.bitbucket.io/
Standards-Version: 3.9.5
Vcs-Browser: https://gitlab.com/smart-pattern/valentina
Vcs-Browser: https://bitbucket.org/dismine/valentina
Build-Depends: debhelper (>= 8.0.0),
qtbase5-dev (>= 5.4.0),
libqt5svg5-dev (>= 5.4.0),
g++ (>= 4.8.0),
qttools5-dev-tools (>= 5.4.0),
libqt5xmlpatterns5-dev (>= 5.4.0),
libqt5opengl5-dev (>= 5.4.0)
Debtransform-Tar: valentina-0.7.51.v0.7.51.tar.gz
qtbase5-dev (>= 5.2.0),
libqt5svg5-dev (>= 5.2.0),
g++ (>= 4.7.0),
qt5-default (>= 5.2.0),
qttools5-dev-tools (>= 5.2.0),
libqt5xmlpatterns5-dev (>= 5.2.0),
libqt5opengl5-dev (>= 5.2.0)
Package-List:
valentina deb graphics optional
Files:
00000000000000000000000000000000 0 valentina-0.7.51.v0.7.51.tar.gz
d09673bcc475067139b88cf875e5dc0c 20954240 valentina_0.6.0.orig.tar.gz
2fecf324a32123b08cefc0f047bca5ee 63176 valentina_0.6.0.diff.tar.gz
DEBTRANSFORM-TAR: valentina_0.6.0.orig.tar.gz
DEBTRANSFORM-FILES-TAR: debian.tar.gz
DEBTRANSFORM-RELEASE: 1

BIN
dist/Puzzle.icns vendored

Binary file not shown.

View File

@ -14,7 +14,7 @@ valentina: allows pattern creation, using either standard sizing tables or an
valentina: individuals set of measurements. It blends new technologies with
valentina: traditional methods to create a unique pattern making tool.
valentina:
valentina: Homepage: https://smart-pattern.com.ua/
valentina: Homepage: https://valentinaproject.bitbucket.io/
valentina:
valentina:
valentina:

View File

@ -1,6 +1,6 @@
PRGNAM="valentina"
VERSION="0.5.0"
HOMEPAGE="https://smart-pattern.com.ua"
HOMEPAGE="https://valentinaproject.bitbucket.io"
DOWNLOAD="https://bitbucket.org/dismine/valentina/get/v0.5.0.tar.gz"
MD5SUM="f23019c92e3209dbfa7699a1c13bb98b"
DOWNLOAD_x86_64=""

BIN
dist/Tape.icns vendored

Binary file not shown.

BIN
dist/Valentina.icns vendored

Binary file not shown.

View File

@ -1,5 +1,5 @@
valentina (0.7.51) trusty; urgency=low
valentina (0.7.41) trusty; urgency=low
* Auto build.
-- dismine <dismine@dismine-To-be-filled-by-O-E-M> Mon, 18 April 2022 20:07:00 +0300
-- dismine <dismine@dismine-To-be-filled-by-O-E-M> Fri, 4 Dec 2020 16:30:00 +0300

5
dist/debian/control vendored
View File

@ -6,16 +6,17 @@ Build-Depends: debhelper (>= 8.0.0),
qtbase5-dev (>= 5.4.0),
libqt5svg5-dev (>= 5.4.0),
g++ (>= 4.8.0),
qt5-default (>= 5.4.0),
qttools5-dev-tools (>= 5.4.0),
libqt5xmlpatterns5-dev (>= 5.4.0),
libqt5opengl5-dev (>= 5.4.0)
Standards-Version: 3.9.5
Homepage: https://smart-pattern.com.ua/
Homepage: https://valentinaproject.bitbucket.io/
Vcs-Browser: https://gitlab.com/smart-pattern/valentina
Package: valentina
Architecture: i386 amd64
Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.4.0) | libqt5core5 (>= 5.4.0), libqt5gui5 (>= 5.4.0) | libqt5gui5-gles (>= 5.4.0), libqt5printsupport5 (>= 5.4.0), libqt5svg5 (>= 5.4.0), libqt5widgets5 (>= 5.4.0), libqt5xml5 (>= 5.4.0), libqt5xmlpatterns5 (>= 5.4.0), libqt5concurrent5(>= 5.4.0), libqt5opengl5 (>= 5.4.0), libstdc++6 (>= 4.8), poppler-utils, qt5-image-formats-plugins (>= 5.4.0)
Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.4.0) | libqt5core5 (>= 5.4.0), libqt5gui5 (>= 5.4.0) | libqt5gui5-gles (>= 5.4.0), libqt5printsupport5 (>= 5.4.0), libqt5svg5 (>= 5.4.0), libqt5widgets5 (>= 5.4.0), libqt5xml5 (>= 5.4.0), libqt5xmlpatterns5 (>= 5.4.0), libqt5concurrent5(>= 5.4.0), libqt5opengl5 (>= 5.4.0), libstdc++6 (>= 4.8), poppler-utils
Conflicts: seamly2d
Description: Pattern making program.
Valentina is a cross-platform patternmaking program which allows designers

1
dist/debian/menu vendored
View File

@ -1,3 +1,2 @@
?package(valentina): needs="X11" section="Applications/Graphics" title="Valentina" command="valentina"
?package(valentina): needs="X11" section="Applications/Data Management" title="Tape" command="tape"
?package(valentina): needs="X11" section="Applications/Data Management" title="Puzzle" command="puzzle"

55
dist/debian/puzzle.1 vendored
View File

@ -1,55 +0,0 @@
.\" Manpage for puzzle
.\" Contact dismine@gmail.com to correct errors.
.TH puzzle 1 "23 March, 2020" "puzzle man page"
.SH NAME
Puzzle \- Valentina's manual layout
.SH SYNOPSIS
puzzle [options] file
.SH DESCRIPTION
.B Valentina
Puzzle is the name of the new application to create manual layouts. Similar to "Tape", it is an application that is separated from Valentina and work on it's own, but is a part of the Valentina package and work closely together with Valentina.
.B Puzzle
is a part of Valentina. And used for creating and editing manual layouts.
.IP "-h, --help"
Displays this help.
.IP "-v, --version"
Displays version information.
.IP "-e, --exportFile <The filename of layout file>"
The filename of exported layout file. Use it to enable console export mode.
.IP "-r, --rawLayout <The raw layout data file>"
Load pattern pieces form the raw layout data file.
.IP "-f, --format <Format number>"
Number corresponding to tiled pdf page template (default = 0, export mode with tiled pdf format): <not defined>
.IP "--bdxf"
Export dxf in binary form.
.IP "--text2paths"
Export text as paths.
.IP "-c, --crop"
Auto crop unused length (export mode).
.IP "--cropWidth"
Auto crop unused width (export mode).
.IP "--tiledPageformat <Template number>"
Number corresponding to tiled pdf page template (default = 0, export mode with tiled pdf format): <not defined>
.IP "--tiledlmargin <The left margin>"
Tiled page left margin in current units like 3.0 (export mode). If not set will be used default value 1 cm.
.IP "--tiledrmargin <The right margin>"
Tiled page right margin in current units like 3.0 (export mode). If not set will be used default value 1 cm.
.IP "--tiledtmargin <The top margin>"
Tiled page top margin in current units like 3.0 (export mode). If not set will be used value default value 1 cm.
.IP "--tiledbmargin <The bottom margin>"
Tiled page bottom margin in current units like 3.0 (export mode). If not set will be used value default value 1 cm.
.IP "--tiledLandscape"
Set tiled page orienatation to landscape (export mode). Default value if not set portrait.
.IP "-t, --test"
Run the program in a test mode. The program in this mode loads a single layout file and silently quit without showing the main window. The key have priority before key 'exportFile'.
.IP "--no-scaling"
Disable high dpi scaling. Call this option if has problem with scaling (by default scaling enabled). Alternatively you can use the QT_AUTO_SCREEN_SCALE_FACTOR=0 environment variable.
.IP Arguments:
.I filename
\- the manual layout file.
.SH AUTHOR
.RI "This manual page was written by Roman Telezhynskyi <" dismine@gmail.com ">"
.BR valentina (1)

2
dist/debian/rules vendored
View File

@ -18,7 +18,7 @@
mkdir -p builddir
builddir/Makefile: builddir
cd builddir && QT_SELECT=qt5 qmake PREFIX=/usr PREFIX_LIB=$(PREFIX_LIB) "CONFIG += noTests noRunPath no_ccache noDebugSymbols" ../$(APPNAME).pro -r
cd builddir && qmake PREFIX=/usr PREFIX_LIB=$(PREFIX_LIB) "CONFIG += noTests noRunPath no_ccache noDebugSymbols" ../$(APPNAME).pro -r
build: build-stamp
build-stamp: builddir/Makefile
dh_testdir

View File

@ -1,13 +1,10 @@
debian/usr/share/pixmaps/valentina.png
debian/usr/share/pixmaps/tape.png
debian/usr/share/pixmaps/puzzle.png
debian/usr/share/pixmaps/application-x-valentina-pattern.png
debian/usr/share/pixmaps/application-x-valentina-i-measurements.png
debian/usr/share/pixmaps/application-x-valentina-s-measurements.png
debian/usr/share/pixmaps/application-x-valentina-layout.png
debian/valentina/usr/bin/valentina
debian/valentina/usr/bin/tape
debian/valentina/usr/bin/puzzle
debian/valentina/usr/share/valentina/diagrams.rcc
debian/valentina/usr/share/valentina/translations/measurements_p0_cs_CZ.qm
debian/valentina/usr/share/valentina/translations/measurements_p0_de_DE.qm

0
dist/debian/tape.1 vendored Executable file → Normal file
View File

14
dist/debian/valentina.1 vendored Executable file → Normal file
View File

@ -1,6 +1,6 @@
.\" Manpage for valentina.
.\" Contact dismine@gmail.com to correct errors.
.TH valentina 1 "3 February, 2021" "valentina man page"
.TH valentina 1 "22 March, 2020" "valentina man page"
.SH NAME
Valentina \- Pattern making program.
.SH SYNOPSIS
@ -129,10 +129,7 @@ The path to output destination folder. By default the directory at which the app
.BR "*" " AutoCAD DXF 2013 ASTM файли (*.dxf) = 32,"
.RE
.RS
.BR "*" " PDF tiled files (*.pdf) = 33,"
.RE
.RS
.BR "*" " TIFF файли (*.tif) = 35."
.BR "*" " PDF tiled files (*.pdf) = 33."
.RE
.IP "--bdxf"
.RB "Export dxf in binary form."
@ -654,13 +651,6 @@ The path to output destination folder. By default the directory at which the app
.IP Arguments:
.I filename
\- a pattern file.
.SH EXAMPLE
.IP "Export a layout to tiled PDF:"
.SB "valentina --basename test --destination /home/user/tiled --format 33 --mfile /home/user/measurements/m1.vit --pedantic"
.IP "Export pieces to DXF AAMA bypassing the layout stage:"
.SB "valentina --basename test --destination /home/user/aama --format 18 --mfile /home/user/measurements/m1.vit --exportOnlyDetails --pedantic --exportSuchDetails ."
.IP "Export a layout to tiled PDF with final measurements:"
.SB "valentina --basename test --destination /home/user/tiled --format 33 --mfile /home/user/measurements/m1.vit --pedantic --csvExportFM /home/user/tiled/test.csv"
.SH AUTHOR
.RI "This manual page was written by Roman Telezhynskyi <" dismine@gmail.com ">"
.SH "SEE ALSO"

View File

@ -1,3 +1,2 @@
debian/valentina.1
debian/tape.1
debian/puzzle.1

View File

@ -1,4 +1,3 @@
application/x-valentina-pattern; valentina %s; nametemplate=%s.val; description="Valentina pattern" edit=valentina '%s'; priority=6
application/x-valentina-i-pattern; tape %s; nametemplate=%s.vit; description="Valentina individual measurments" edit=tape '%s'; priority=6
application/x-valentina-s-pattern; tape %s; nametemplate=%s.vst; description="Valentina standard measurments" edit=tape '%s'; priority=6
application/x-valentina-layout; puzzle %s; nametemplate=%s.vlt; description="Valentina layout" edit=puzzle '%s'; priority=6

View File

@ -282,98 +282,4 @@
<glob pattern="*.vst"/>
<icon name="application-x-valentina-s-measurements"/>
</mime-type>
<mime-type type="application/x-valentina-layout">
<sub-class-of type="text/xml"/>
<_comment>Valentina layout</_comment>
<comment xml:lang="af">Valentina layout</comment>
<comment xml:lang="ar">Valentina layout</comment>
<comment xml:lang="as">Valentina layout</comment>
<comment xml:lang="ast">Valentina layout</comment>
<comment xml:lang="be">Valentina layout</comment>
<comment xml:lang="bg">Valentina layout</comment>
<comment xml:lang="bn">Valentina layout</comment>
<comment xml:lang="br">Valentina layout</comment>
<comment xml:lang="bs">Valentina layout</comment>
<comment xml:lang="ca">Valentina layout</comment>
<comment xml:lang="ca-valencia">Valentina layout</comment>
<comment xml:lang="cs">Valentina layout</comment>
<comment xml:lang="cy">Valentina layout</comment>
<comment xml:lang="da">Valentina layout</comment>
<comment xml:lang="de">Valentina layout</comment>
<comment xml:lang="dz">Valentina layout</comment>
<comment xml:lang="el">Valentina layout</comment>
<comment xml:lang="en-GB">Valentina layout</comment>
<comment xml:lang="en-ZA">Valentina layout</comment>
<comment xml:lang="eo">Valentina layout</comment>
<comment xml:lang="es">Valentina layout</comment>
<comment xml:lang="et">Valentina layout</comment>
<comment xml:lang="eu">Valentina layout</comment>
<comment xml:lang="fa">Valentina layout</comment>
<comment xml:lang="fi">Valentina layout</comment>
<comment xml:lang="fr">Valentina layout</comment>
<comment xml:lang="ga">Valentina layout</comment>
<comment xml:lang="gd">Valentina layout</comment>
<comment xml:lang="gl">Valentina layout</comment>
<comment xml:lang="gu">Valentina layout</comment>
<comment xml:lang="he">Valentina layout</comment>
<comment xml:lang="hi">Valentina layout</comment>
<comment xml:lang="hr">Valentina layout</comment>
<comment xml:lang="hu">Valentina layout</comment>
<comment xml:lang="id">Valentina layout</comment>
<comment xml:lang="is">Valentina layout</comment>
<comment xml:lang="it">Valentina layout</comment>
<comment xml:lang="ja">Valentina layout</comment>
<comment xml:lang="ka">Valentina layout</comment>
<comment xml:lang="kk">Valentina layout</comment>
<comment xml:lang="km">Valentina layout</comment>
<comment xml:lang="kmr-Latn">Valentina layout</comment>
<comment xml:lang="ko">Valentina layout</comment>
<comment xml:lang="lt">Valentina layout</comment>
<comment xml:lang="lv">Valentina layout</comment>
<comment xml:lang="mk">Valentina layout</comment>
<comment xml:lang="ml">Valentina layout</comment>
<comment xml:lang="mn">Valentina layout</comment>
<comment xml:lang="mr">Valentina layout</comment>
<comment xml:lang="nb">Valentina layout</comment>
<comment xml:lang="ne">Valentina layout</comment>
<comment xml:lang="nl">Valentina layout</comment>
<comment xml:lang="nn">Valentina layout</comment>
<comment xml:lang="nr">Valentina layout</comment>
<comment xml:lang="nso">Valentina layout</comment>
<comment xml:lang="oc">Valentina layout</comment>
<comment xml:lang="om">Valentina layout</comment>
<comment xml:lang="or">Valentina layout</comment>
<comment xml:lang="pa-IN">Valentina layout</comment>
<comment xml:lang="pl">Valentina layout</comment>
<comment xml:lang="pt">Valentina layout</comment>
<comment xml:lang="pt-BR">Valentina layout</comment>
<comment xml:lang="ro">Valentina layout</comment>
<comment xml:lang="ru">Valentina раскладка</comment>
<comment xml:lang="rw">Valentina layout</comment>
<comment xml:lang="si">Valentina layout</comment>
<comment xml:lang="sk">Valentina layout</comment>
<comment xml:lang="sl">Valentina layout</comment>
<comment xml:lang="sr">Valentina layout</comment>
<comment xml:lang="ss">Valentina layout</comment>
<comment xml:lang="st">Valentina layout</comment>
<comment xml:lang="sv">Valentina layout</comment>
<comment xml:lang="ta">Valentina layout</comment>
<comment xml:lang="te">Valentina layout</comment>
<comment xml:lang="tg">Valentina layout</comment>
<comment xml:lang="th">Valentina layout</comment>
<comment xml:lang="tn">Valentina layout</comment>
<comment xml:lang="tr">Valentina layout</comment>
<comment xml:lang="ts">Valentina layout</comment>
<comment xml:lang="ug">Valentina layout</comment>
<comment xml:lang="uk">Valentina розкладка</comment>
<comment xml:lang="uz">Valentina layout</comment>
<comment xml:lang="ve">Valentina layout</comment>
<comment xml:lang="vi">Valentina layout</comment>
<comment xml:lang="xh">Valentina layout</comment>
<comment xml:lang="zh-CN">Valentina layout</comment>
<comment xml:lang="zh-TW">Valentina layout</comment>
<comment xml:lang="zu">Valentina layout</comment>
<glob pattern="*.vlt"/>
<icon name="application-x-valentina-layout"/>
</mime-type>
</mime-info>

View File

@ -7,7 +7,7 @@ EAPI=5
inherit qmake-utils gnome2-utils fdo-mime
DESCRIPTION="Cloth patternmaking software"
HOMEPAGE="https://smart-pattern.com.ua/"
HOMEPAGE="https://valentinaproject.bitbucket.io/"
SRC_URI="https://bitbucket.org/dismine/valentina/get/v0.0.0.zip -> ${P}.zip"
LICENSE="GPL-3"

View File

@ -7,7 +7,7 @@ EAPI=5
inherit mercurial qmake-utils gnome2-utils fdo-mime
DESCRIPTION="Cloth patternmaking software"
HOMEPAGE="https://smart-pattern.com.ua/"
HOMEPAGE="https://valentinaproject.bitbucket.io/"
SRC_URI=""
EHG_REPO_URI="https://bitbucket.org/dismine/valentina"
EHG_REVISION="develop"
@ -59,7 +59,6 @@ src_install() {
doman dist/debian/${PN}.1
doman dist/debian/tape.1
doman dist/debian/puzzle.1
cp dist/debian/valentina.sharedmimeinfo dist/debian/${PN}.xml || die
insinto /usr/share/mime/packages

BIN
dist/macx/layout.icns vendored

Binary file not shown.

View File

@ -1,72 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<key>CFBundleIconFile</key>
<string>@ICON@</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>LSMinimumSystemVersion</key>
<string>10.7</string>
<key>NSHumanReadableCopyright</key>
<string>© 2013-2021, Valentina project</string>
<key>CFBundleSignature</key>
<string>@TYPEINFO@</string>
<key>CFBundleExecutable</key>
<string>@EXECUTABLE@</string>
<key>CFBundleIdentifier</key>
<string>io.bitbucket.valentinaproject.@EXECUTABLE@</string>
<key>CFBundleShortVersionString</key>
<string>0.7.51</string>
<key>CFBundleVersion</key>
<string>0.7.51.0</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleTypeIconFile</key>
<string>layout.incs</string>
<key>LSItemContentTypes</key>
<array>
<string>io.bitbucket.valentinaproject.vlt</string>
</array>
<key>CFBundleTypeName</key>
<string>Valentina layout</string>
<key>LSHandlerRank</key>
<string>Owner</string>
</dict>
</array>
<key>UTExportedTypeDeclarations</key>
<array>
<dict>
<key>UTTypeConformsTo</key>
<array>
<string>public.text</string>
<string>public.xml</string>
</array>
<key>UTTypeDescription</key>
<string>Valentina layout</string>
<key>UTTypeIconFile</key>
<string>layout.icns</string>
<key>UTTypeIdentifier</key>
<string>io.bitbucket.valentinaproject.vlt</string>
<key>UTTypeTagSpecification</key>
<dict>
<key>public.filename-extension</key>
<array>
<string>vlt</string>
</array>
<key>public.mime-type</key>
<string>text/xml</string>
</dict>
</dict>
</array>
<key>NSRequiresAquaSystemAppearance</key>
<true/>
</dict>
</plist>

View File

@ -11,7 +11,7 @@
<key>LSMinimumSystemVersion</key>
<string>10.7</string>
<key>NSHumanReadableCopyright</key>
<string>© 2013-2021, Valentina project</string>
<string>© 2013-2020, Valentina project</string>
<key>CFBundleSignature</key>
<string>@TYPEINFO@</string>
<key>CFBundleExecutable</key>
@ -19,9 +19,9 @@
<key>CFBundleIdentifier</key>
<string>io.bitbucket.valentinaproject.@EXECUTABLE@</string>
<key>CFBundleShortVersionString</key>
<string>0.7.51</string>
<string>0.7.41</string>
<key>CFBundleVersion</key>
<string>0.7.51.0</string>
<string>0.7.41.0</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleDocumentTypes</key>

View File

@ -11,7 +11,7 @@
<key>LSMinimumSystemVersion</key>
<string>10.7</string>
<key>NSHumanReadableCopyright</key>
<string>© 2013-2021, Valentina project</string>
<string>© 2013-2020, Valentina project</string>
<key>CFBundleSignature</key>
<string>@TYPEINFO@</string>
<key>CFBundleExecutable</key>
@ -19,9 +19,9 @@
<key>CFBundleIdentifier</key>
<string>io.bitbucket.valentinaproject.@EXECUTABLE@</string>
<key>CFBundleShortVersionString</key>
<string>0.7.51</string>
<string>0.7.41</string>
<key>CFBundleVersion</key>
<string>0.7.51.0</string>
<string>0.7.41.0</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleDocumentTypes</key>
@ -134,29 +134,7 @@
<string>vst</string>
</array>
<key>public.mime-type</key>
<string>text/xml</string>
</dict>
</dict>
<dict>
<key>UTTypeConformsTo</key>
<array>
<string>public.text</string>
<string>public.xml</string>
</array>
<key>UTTypeDescription</key>
<string>Valentina layout</string>
<key>UTTypeIconFile</key>
<string>layout.icns</string>
<key>UTTypeIdentifier</key>
<string>io.bitbucket.valentinaproject.vlt</string>
<key>UTTypeTagSpecification</key>
<dict>
<key>public.filename-extension</key>
<array>
<string>vlt</string>
</array>
<key>public.mime-type</key>
<string>text/xml</string>
<string>text/xml</string>
</dict>
</dict>
</array>

14
dist/puzzle.desktop vendored
View File

@ -1,14 +0,0 @@
[Desktop Entry]
Type=Application
Name=Puzzle
Exec=puzzle %F
Version=1.0
GenericName=Valentina's layout editor
Comment=Create and edit layouts
Comment[uk]=Створюйте і редагуйте розкладки
Comment[ru]=Создавайте и редактируйте раскладку
Icon=puzzle
Terminal=false
MimeType=application/x-valentina-layout;
Categories=Qt;Utility;FileTools;
TryExec=puzzle

4
dist/rpm/_service vendored
View File

@ -1,11 +1,11 @@
<services>
<service name="tar_scm">
<param name="url">git://github.com/dismine/Valentina_git.git</param>
<param name="versionprefix">0.7.51</param>
<param name="versionprefix">0.7.41</param>
<param name="filename">valentina</param>
<param name="scm">git</param>
<param name="exclude">.git</param>
<param name="versionformat">@PARENT_TAG@</param>
<param name="versionformat">%at</param>
<param name="revision">master</param>
</service>
<service name="extract_file">

View File

@ -43,8 +43,6 @@ BuildRequires: libproxy-pacrunner
BuildRequires: qttools5
BuildRequires: qtbase5-common-devel >= 5.4.0
Requires: qtimageformats5
%if 0%{?mageia} == 6
BuildRequires: pkgconfig(openssl)
%else
@ -60,17 +58,8 @@ BuildRequires: libqt5-qttools
BuildRequires: libQt5Svg-devel
BuildRequires: update-desktop-files
Suggests: libqt5-qtimageformats
Suggests: poppler-tools
%if 0%{?suse_version} > 1500
BuildRequires: libqt5-linguist
%endif
%if 0%{?suse_version} == 1500
%if 0%{?sle_version} >= 150400 && 0%{?is_opensuse}
BuildRequires: libqt5-linguist
%endif
%if 0%{?suse_version} == 1310
BuildRequires: libQt5XmlPatterns-devel
%endif
%if 0%{?suse_version} >= 1315
@ -78,10 +67,6 @@ BuildRequires: libqt5-linguist-devel
BuildRequires: libqt5-qtxmlpatterns-devel
%endif
%if 0%{?suse_version} == 1310
BuildRequires: libQt5XmlPatterns-devel
%endif
%endif # %if 0%{?suse_version} > 0
# CentOS 7.0 specifics
@ -98,11 +83,15 @@ BuildRequires: libQt5XmlPatterns-devel
Requires: poppler
%endif
%if 0%{?suse_version} > 0
Requires: poppler-tools
%endif
%if 0%{?fedora_version} > 0 || 0%{?rhel_version} > 0 || 0%{?centos_version} > 0
Requires: poppler-utils
%endif
Version: 0.7.51
Version: 0.7.41
Release: 0
URL: https://gitlab.com/smart-pattern/valentina
License: GPL-3.0+
@ -110,6 +99,7 @@ Source0: %{name}-%{version}.tar.gz
Group: Graphics
Summary: Pattern Making Application
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Packager: Roman Telezhinskyi <dismine@gmail.com>
# Disables debug packages and stripping of binaries:
%global _enable_debug_package 0
@ -132,31 +122,8 @@ a unique pattern making tool.
%setup -q -n %{name}-%{version}
%build
%if 0%{?suse_version} > 0
# Tumbleweed
%if 0%{?suse_version} > 1500
qmake-qt5 PREFIX=%{_prefix} PREFIX_LIB=%{_prefix}/%{_lib} LRELEASE=lrelease-pro Valentina.pro -r "CONFIG += noTests noRunPath no_ccache noDebugSymbols"
%endif
# Leap
%if 0%{?suse_version} == 1500
# Leap 15.4
%if 0%{?sle_version} >= 150400 && 0%{?is_opensuse}
qmake-qt5 PREFIX=%{_prefix} PREFIX_LIB=%{_prefix}/%{_lib} LRELEASE=lrelease-pro Valentina.pro -r "CONFIG += noTests noRunPath no_ccache noDebugSymbols"
%else
%if 0%{?suse_version} >= 1315 && 0%{?suse_version} != 1550
qmake-qt5 PREFIX=%{_prefix} PREFIX_LIB=%{_prefix}/%{_lib} LRELEASE=lrelease-qt5 Valentina.pro -r "CONFIG += noTests noRunPath no_ccache noDebugSymbols"
%endif
%endif
%if 0%{?suse_version} < 1500 && 0%{?suse_version} >= 1315
qmake-qt5 PREFIX=%{_prefix} PREFIX_LIB=%{_prefix}/%{_lib} LRELEASE=lrelease-qt5 Valentina.pro -r "CONFIG += noTests noRunPath no_ccache noDebugSymbols"
%else
qmake-qt5 PREFIX=%{_prefix} PREFIX_LIB=%{_prefix}/%{_lib} Valentina.pro -r "CONFIG += noTests noRunPath no_ccache noDebugSymbols"
%endif
%else
%if 0%{?mageia} >= 6
@ -165,7 +132,7 @@ qmake PREFIX=%{_prefix} PREFIX_LIB=%{_prefix}/%{_lib} Valentina.pro -r "CONFIG +
qmake-qt5 PREFIX=%{_prefix} PREFIX_LIB=%{_prefix}/%{_lib} Valentina.pro -r "CONFIG += noTests noRunPath no_ccache noDebugSymbols"
%endif
%endif # 0%{?suse_version} > 0
%endif
%{__make} %{?jobs:-j %jobs}
@ -180,9 +147,6 @@ gzip -9c dist/debian/%{name}.1 > dist/debian/%{name}.1.gz &&
gzip -9c dist/debian/tape.1 > dist/debian/tape.1.gz &&
%{__install} -Dm 644 dist/debian/tape.1.gz %{buildroot}%{_mandir}/man1/tape.1.gz
gzip -9c dist/debian/puzzle.1 > dist/debian/puzzle.1.gz &&
%{__install} -Dm 644 dist/debian/puzzle.1.gz %{buildroot}%{_mandir}/man1/puzzle.1.gz
cp dist/debian/valentina.sharedmimeinfo dist/debian/%{name}.xml &&
%{__install} -Dm 644 dist/debian/%{name}.xml %{buildroot}%{_datadir}/mime/packages/%{name}.xml
@ -192,7 +156,6 @@ cp dist/debian/valentina.mime dist/debian/%{name} &&
%if 0%{?suse_version} > 0
%suse_update_desktop_file -r %{name} Graphics VectorGraphics 2DGraphics
%suse_update_desktop_file -r tape Utility Applet
%suse_update_desktop_file -r puzzle Utility Applet
%endif
%post
@ -227,11 +190,11 @@ fi
%license LICENSE_GPL.txt
%doc %{_mandir}/man1/%{name}.1*
%doc %{_mandir}/man1/tape.1*
%doc %{_mandir}/man1/puzzle.1*
%{_bindir}/valentina
%{_bindir}/tape
%{_bindir}/puzzle
%{_libdir}/libvpropertyexplorer.so
%{_libdir}/libvpropertyexplorer.so.*
%{_libdir}/libqmuparser.so
%{_libdir}/libqmuparser.so.*
%dir %{_libdir}/mime/
%dir %{_libdir}/mime/packages/
@ -241,9 +204,26 @@ fi
%{_datadir}/mime/packages/%{name}.xml
%{_datadir}/applications/%{name}.desktop
%{_datadir}/applications/tape.desktop
%{_datadir}/applications/puzzle.desktop
%{_datadir}/icons/hicolor
%dir %{_datadir}/icons/
%dir %{_datadir}/icons/hicolor/
%dir %{_datadir}/icons/hicolor/48x48/
%dir %{_datadir}/icons/hicolor/48x48/apps/
%dir %{_datadir}/icons/hicolor/48x48/mimetypes/
%dir %{_datadir}/icons/hicolor/64x64/
%dir %{_datadir}/icons/hicolor/64x64/apps/
%dir %{_datadir}/icons/hicolor/64x64/mimetypes/
%dir %{_datadir}/icons/hicolor/128x128/
%dir %{_datadir}/icons/hicolor/128x128/apps/
%dir %{_datadir}/icons/hicolor/128x128/mimetypes/
%dir %{_datadir}/icons/hicolor/256x256/
%dir %{_datadir}/icons/hicolor/256x256/apps/
%dir %{_datadir}/icons/hicolor/256x256/mimetypes/
%dir %{_datadir}/icons/hicolor/512x512/
%dir %{_datadir}/icons/hicolor/512x512/apps/
%dir %{_datadir}/icons/hicolor/512x512/mimetypes/
%{_datadir}/icons/hicolor/*/apps/*.png
%{_datadir}/icons/hicolor/*/mimetypes/*.png
%dir %{_datadir}/%{name}/
%{_datadir}/%{name}/diagrams.rcc
@ -258,11 +238,11 @@ fi
%{_datadir}/%{name}/labels/*.xml
%clean
rm -f dist/debian/%{name}.1.gz dist/debian/tape.1.gz dist/debian/puzzle.1.gz dist/debian/%{name}.xml dist/debian/%{name}
rm -f dist/debian/%{name}.1.gz dist/debian/tape.1.gz dist/debian/%{name}.xml dist/debian/%{name}
[ "%{buildroot}" != "/" ] && %{__rm} -rf %{buildroot}
%changelog
* Sat Oct 24 2020 Roman Telezhynskyi <dismine@gmail.com>
* Sat Oct 24 2020 Roman Telezhynskyi
- Auto build

17
dist/valentina.dsc vendored
View File

@ -2,21 +2,24 @@ Format: 3.0 (native)
Source: valentina
Binary: valentina
Architecture: i386 amd64
Version: 0.7.51
Version: 0.7.41
Maintainer: Roman Telezhynskyi <dismine@gmail.com>
Homepage: https://smart-pattern.com.ua
Homepage: https://valentinaproject.bitbucket.io
Standards-Version: 3.9.5
Vcs-Browser: https://gitlab.com/smart-pattern/valentina
Vcs-Browser: https://bitbucket.org/dismine/valentina
Build-Depends: debhelper (>= 8.0.0),
qtbase5-dev (>= 5.4.0),
libqt5svg5-dev (>= 5.4.0),
g++ (>= 4.8.0),
g++ (>= 4.8.0),
qt5-default (>= 5.4.0),
qttools5-dev-tools (>= 5.4.0),
libqt5xmlpatterns5-dev (>= 5.4.0),
libqt5opengl5-dev (>= 5.4.0)
Debtransform-Tar: valentina-0.7.51.v0.7.51.tar.gz
Package-List:
valentina deb graphics optional
Checksums-Sha1:
581eb1bf36b4ab7126b5983d809130f15396859e 24838101 valentina_0.7.41.tar
Checksums-Sha256:
9b156c7120a69b90373efb8ca9998c3e0563a60ad337210166cfd41b00b0f13c 24838101 valentina_0.7.41.tar
Files:
00000000000000000000000000000000 0 valentina-0.7.51.v0.7.51.tar.gz
95677e29d3a59cf5b064f7be236a4b78 24838101 valentina_0.7.41.tar

BIN
dist/win/EUDC.TTE vendored

Binary file not shown.

View File

@ -1,12 +1,12 @@
; Script generated by the Inno Script Studio Wizard.
; Script generated by the Inno Script Studio Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
#define MyAppName "Valentina"
#define MyAppVersion GetFileVersion('valentina\valentina.exe')
#define MyAppPublisher "Roman Telezhynskyi"
#define MyAppURL "https://smart-pattern.com.ua/"
#define MyAppURL "http://valentinaproject.bitbucket.io/"
#define MyAppExeName "valentina.exe"
#define MyAppCopyright "(C) 2013-2021 Valentina project"
#define MyAppCopyright "(C) 2013-2020 Valentina project"
#define MyDateTimeString GetDateTimeString('yyyymmddhhnnss', '', '');
; Appstatus: "" = release, "b" = beta, "a" = alpha
; this only modifies the resulting exe name of the installer package ;-)
@ -30,7 +30,7 @@ DefaultGroupName={#MyAppName}
LicenseFile=.\LICENSE_VALENTINA
InfoAfterFile=.\valentina\README.txt
OutputDir=.\
OutputBaseFilename=valentina_{#MyAppVersion}{#MyAppStatus}_i386
OutputBaseFilename=valentina_{#MyAppVersion}{#MyAppStatus}-{#MyDateTimeString}
SetupIconFile=.\valentina\valentina.ico
UninstallDisplayIcon={app}\valentina.ico
Compression=lzma
@ -86,7 +86,6 @@ Name: "quicklaunchicon"; Description: "{cm:CreateQuickLaunchIcon}"; GroupDescrip
Name: "fileassoc1"; Description: "{cm:CreateFileAssocVal}"; GroupDescription: "{cm:FileAssoc}"
Name: "fileassoc2"; Description: "{cm:CreateFileAssocVit}"; GroupDescription: "{cm:FileAssoc}"
Name: "fileassoc3"; Description: "{cm:CreateFileAssocVst}"; GroupDescription: "{cm:FileAssoc}"
Name: "fileassoc4"; Description: "{cm:CreateFileAssocVlt}"; GroupDescription: "{cm:FileAssoc}"
Name: "deletesettings"; Description: "{cm:RemoveAnyExistingSettings}"; GroupDescription: "{cm:ManageSettings}"; Flags: unchecked
[Types]
@ -162,7 +161,6 @@ Name: "lang_files\chinese"; Description: "Chinese (China)"; Types: full custom;
; Signing
Source: ".\valentina\valentina.exe"; DestDir: "{app}"; Flags: ignoreversion sign
Source: ".\valentina\tape.exe"; DestDir: "{app}"; Flags: ignoreversion sign
Source: ".\valentina\puzzle.exe"; DestDir: "{app}"; Flags: ignoreversion sign
Source: ".\valentina\vpropertyexplorer.dll"; DestDir: "{app}"; Flags: ignoreversion sign
Source: ".\valentina\qmuparser2.dll"; DestDir: "{app}"; Flags: ignoreversion sign
; Localizations
@ -230,7 +228,6 @@ Source: ".\valentina\*.ico"; DestDir: "{app}"; Flags: ignoreversion
Source: ".\valentina\*.ini"; DestDir: "{app}"; Flags: ignoreversion
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
; DLL used to check if the target program is running at install time
Source: ".\valentina\EUDC.TTE"; DestDir: "{fonts}"; FontInstall: "EUDC"; Flags: onlyifdoesntexist uninsneveruninstall
[InstallDelete]
Type: filesandordirs; Name: "{app}\translations"
@ -251,7 +248,6 @@ Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChang
Root: "HKCR"; Subkey: ".val"; ValueType: string; ValueName: ""; ValueData: "Valentina.Pattern"; Flags: uninsdeletevalue; Tasks: fileassoc1
Root: "HKCR"; Subkey: ".vit"; ValueType: string; ValueName: ""; ValueData: "Valentina.IndividualMeasurements"; Flags: uninsdeletevalue; Tasks: fileassoc2
Root: "HKCR"; Subkey: ".vst"; ValueType: string; ValueName: ""; ValueData: "Valentina.StandardMeasurements"; Flags: uninsdeletevalue; Tasks: fileassoc3
Root: "HKCR"; Subkey: ".vlt"; ValueType: string; ValueName: ""; ValueData: "Valentina.Layout"; Flags: uninsdeletevalue; Tasks: fileassoc3
Root: "HKCR"; Subkey: "Valentina.Pattern"; ValueType: string; ValueData: "Valentina pattern file"; Flags: uninsdeletekey; Tasks: fileassoc1
Root: "HKCR"; Subkey: "Valentina.Pattern\DefaultIcon"; ValueType: string; ValueData: "{app}\pattern.ico,0"; Tasks: fileassoc1
@ -265,10 +261,6 @@ Root: "HKCR"; Subkey: "Valentina.StandardMeasurements"; ValueType: string; Value
Root: "HKCR"; Subkey: "Valentina.StandardMeasurements\DefaultIcon"; ValueType: string; ValueData: "{app}\s-measurements.ico,0"; Tasks: fileassoc3
Root: "HKCR"; Subkey: "Valentina.StandardMeasurements\shell\open\command"; ValueType: string; ValueData: """{app}\tape.exe"" ""%1"""; Tasks: fileassoc3
Root: "HKCR"; Subkey: "Valentina.Layout"; ValueType: string; ValueData: "Valentina layout file"; Flags: uninsdeletekey; Tasks: fileassoc1
Root: "HKCR"; Subkey: "Valentina.Layout\DefaultIcon"; ValueType: string; ValueData: "{app}\layout.ico,0"; Tasks: fileassoc1
Root: "HKCR"; Subkey: "Valentina.Layout\shell\open\command"; ValueType: string; ValueData: """{app}\puzzle.exe"" ""%1"""; Tasks: fileassoc1
[CustomMessages]
FileAssoc = Create file associations
english.FileAssoc = Create file associations
@ -294,12 +286,6 @@ russian.CreateFileAssocVst = *.vst (Мультиразмерный файл ме
ukrainian.CreateFileAssocVst = *.vst (Мультирозмірний файл мірок)
german.CreateFileAssocVst = *.vst (Multi-Size Maßdatei)
CreateFileAssocVlt = *.vlt (Layout file)
english.CreateFileAssocVlt = *.vlt (Layout file)
russian.CreateFileAssocVlt = *.vlt (Файл раскладки)
ukrainian.CreateFileAssocVlt = *.vlt (Файл роскладки)
german.CreateFileAssocVlt = *.vlt (Layoutdatei)
WarnRemoveOld = is installed at the moment. Remove old version?
english.WarnRemoveOld = is installed at the moment. Remove old version?
russian.WarnRemoveOld = установлена на данный момент. Удалить старую версию?
@ -372,12 +358,6 @@ russian.QuestionRemoveAnyExistingSettings = Вы хотите удалить с
ukrainian.QuestionRemoveAnyExistingSettings = Видалити будь-які існуючі налаштування?
german.QuestionRemoveAnyExistingSettings = Möchten Sie vorhandene Einstellungen entfernen?
ErrorFindApp = Unable to check if a program is running. Please, close the program before continue and press OK to continue the installation.
english.ErrorFindApp = Unable to check if a program is running. Please, close the program before continue and press OK to continue the installation.
russian.ErrorFindApp = Невозможно проверить, запущена ли программа. Пожалуйста, закройте программу перед продолжением и нажмите OK, чтобы продолжить установку.
ukrainian.ErrorFindApp = Неможливо перевірити, чи запущена програма. Будь ласка, закрийте програму перед продовженням та натисніть OK, щоб продовжити встановлення.
german.ErrorFindApp = Es kann nicht geprüft werden, ob ein Programm läuft. Bitte schließen Sie das Programm, bevor Sie fortfahren, und drücken Sie OK, um die Installation fortzusetzen.
[Code]
const
@ -419,22 +399,15 @@ var
WMIService: Variant;
WbemLocator: Variant;
WbemObjectSet: Variant;
InstallationFindAppMessage: String;
begin
try
WbemLocator := CreateOleObject('WbemScripting.SWbemLocator');
WMIService := WbemLocator.ConnectServer('localhost', 'root\CIMV2');
WbemObjectSet := WMIService.ExecQuery('SELECT * FROM Win32_Process Where Name="' + AppName + '"');
if not VarIsNull(WbemObjectSet) and (WbemObjectSet.Count > 0) then
begin
Result := True;
end
else begin
Result := False;
end;
except
InstallationFindAppMessage := ExpandConstant('{cm:ErrorFindApp}');
MsgBox( InstallationFindAppMessage, mbError, MB_OK );
WbemLocator := CreateOleObject('WbemScripting.SWbemLocator');
WMIService := WbemLocator.ConnectServer('localhost', 'root\CIMV2');
WbemObjectSet := WMIService.ExecQuery('SELECT * FROM Win32_Process Where Name="' + AppName + '"');
if not VarIsNull(WbemObjectSet) and (WbemObjectSet.Count > 0) then
begin
Result := True;
end
else begin
Result := False;
end;
end;

BIN
dist/win/layout.ico vendored

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

BIN
dist/win/valentina.ico vendored

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 31 KiB

View File

@ -1,29 +0,0 @@
$env:ROOT_FOLDER = "C:\projects\valentina";
$env:BUILD_FOLDER = "$env:ROOT_FOLDER\build";
$file_name = "valentina-win-$env:PLATFORM-$env:QT_VERSION-$env:APPVEYOR_REPO_BRANCH-$env:APPVEYOR_REPO_COMMIT.tar.xz";
if($env:DEPLOY -eq "true") {
Write-Host "[CI] Starting packing." -ForegroundColor Green;
& $env:PYTHON\python.exe "$env:ROOT_FOLDER\scripts\deploy.py" pack "$env:BUILD_FOLDER\package\valentina" "$env:BUILD_FOLDER\package\$file_name";
if ($LastExitCode -ne 0) {
Write-Error -Message "[CI] Error creating an archive." -Category InvalidResult;
exit 1;
} else {
Write-Host "[CI] Done." -ForegroundColor Green;
}
Write-Host "[CI] Uploading." -ForegroundColor Green;
& $env:PYTHON\python.exe "$env:ROOT_FOLDER\scripts\deploy.py" upload $env:ACCESS_TOKEN "$env:BUILD_FOLDER\package\$file_name" "/0.7.x/Windows/$file_name";
if ($LastExitCode -ne 0) {
Write-Error -Message "[CI] Error uploading an artifact." -Category InvalidResult;
exit 1;
} else {
Write-Host "[CI] Uploading has been finished." -ForegroundColor Green;
}
Exit 0;
}
else {
Write-Host "[CI] No deployment needed." -ForegroundColor Green;
Exit 0;
}

View File

@ -1,37 +0,0 @@
print_error() {
echo "[CI] ERROR: $1"
}
print_info() {
echo "[CI] INFO: $1"
}
check_failure() {
if [ $? -ne 0 ] ; then
if [ -z $1 ] ; then
print_error $1
else
print_error "Failure exit code is detected."
fi
exit 1
fi
}
if [[ "$DEPLOY" == "true" ]]; then
$CIRRUS_WORKING_DIR/scripts/macfixqtdylibrpath.py $CIRRUS_WORKING_DIR/build/src/app/valentina/bin/Valentina.app;
check_failure "Unable to patch the app bundle.";
print_info "Start compressing.";
tar -C $CIRRUS_WORKING_DIR/build/src/app/valentina/bin --exclude "*.DS_Store" -cvJf valentina-${PLATFORM}-${CIRRUS_CHANGE_IN_REPO}.tar.xz Valentina.app/;
check_failure "Unable to create an archive.";
print_info "Start uploading.";
python3 $CIRRUS_WORKING_DIR/scripts/deploy.py upload $ACCESS_TOKEN $CIRRUS_WORKING_DIR/valentina-${PLATFORM}-${CIRRUS_CHANGE_IN_REPO}.tar.xz "/0.7.x/Mac OS X/valentina-${PLATFORM}-${CIRRUS_CHANGE_IN_REPO}.tar.xz";
check_failure "Unable to upload.";
print_info "Successfully uploaded.";
else
print_info "No deployment needed.";
fi

View File

@ -3,21 +3,24 @@
# Please, run this script from folder <root_folder>/scripts.
# Because we use the last available cppcheck version usually we build it manually.
CPPCHECK="../../../../cppcheck-2.8/cppcheck"
CPPCHECK="../../../../cppcheck/cppcheck"
$CPPCHECK \
-j4 -f -q \
-UDRW_DBG \
-U__INTEL_COMPILER_UPDATE \
-UqApp \
--template '{file}:{line}:{message}:{id}' \
--inline-suppr \
--platform=unix64 \
--std=c++17 \
--std=c++11 \
--std=posix \
--enable=all \
--library=qt \
--library=std \
--library=posix \
--library=qt.cfg \
--library=std.cfg \
--library=posix.cfg \
--inconclusive \
--suppress=*:*/vdxf/libdxfrw/intern/make_unique.h \
--inconclusive \
--suppress=*:*/qmuparser/make_unique.h \
--suppress=leakReturnValNotUsed:../src/app/valentina/core/vapplication.cpp \
--suppress=unmatchedSuppression:../src/libs/ifc/xml/vdomdocument.cpp \
--suppress=redundantCondition:../src/libs/vtools/tools/drawTools/toolcurve/vtoolsplinepath.cpp \
--suppress=unmatchedSuppression:../src/libs/vtools/tools/drawTools/toolcurve/vtoolsplinepath.cpp \
../src

View File

@ -1,129 +0,0 @@
import argparse
import os
import pathlib
import shutil
import sys
import dropbox
from dropbox import DropboxOAuth2FlowNoRedirect
from dropbox.exceptions import ApiError, AuthError
from dropbox.files import WriteMode
APP_KEY = "v33m5tjz020h7uy"
def run_auth():
"""
Use to generate a refresh token
"""
auth_flow = DropboxOAuth2FlowNoRedirect(APP_KEY, use_pkce=True, token_access_type='offline')
authorize_url = auth_flow.start()
print("1. Go to: " + authorize_url)
print("2. Click \"Allow\" (you might have to log in first).")
print("3. Copy the authorization code.")
auth_code = input("Enter the authorization code here: ").strip()
try:
oauth_result = auth_flow.finish(auth_code)
except Exception as e:
print('Error: %s' % (e,))
exit(1)
print("Refresh token: %s" % oauth_result.refresh_token)
def run_pack(source, destination):
"""
Pack folder. Automatically fills arguments for shutil.make_archive.
:param source: path to source root directory. Example: '/path/to/folder/'
:param destination: path to resulting zip archive. The path must include a format suffix.
Example: '/path/to/folder.zip'
"""
base = os.path.basename(destination)
name = base.split('.')[0]
formats = {
".zip": "zip",
".tar.xz": "xztar"
}
suffix = ''.join(pathlib.Path(base).suffixes)
format = formats.get(suffix, None)
archive_from = pathlib.Path(source).parent
archive_to = os.path.basename(source.strip(os.sep))
print(source, destination, archive_from)
shutil.make_archive(name, format, archive_from, archive_to)
shutil.move('%s%s' % (name, suffix), destination)
def run_upload(refresh_token, file, path):
with dropbox.Dropbox(oauth2_refresh_token=refresh_token, app_key=APP_KEY) as dbx:
# Check that the access token is valid
try:
dbx.users_get_current_account()
except AuthError:
sys.exit("ERROR: Invalid access token; try re-generating an "
"access token from the app console on the web.")
print("Uploading " + file + " to Dropbox as " + path + "...")
try:
with open(file, "rb") as f:
dbx.files_upload(f.read(), path, mode=WriteMode('overwrite'))
except ApiError as err:
# This checks for the specific error where a user doesn't have
# enough Dropbox space quota to upload this file
if (err.error.is_path() and
err.error.get_path().reason.is_insufficient_space()):
sys.exit("ERROR: Cannot deploy; insufficient space.")
elif err.user_message_text:
print(err.user_message_text)
sys.exit()
else:
print(err)
sys.exit()
print("Successfully uploaded")
def parse_args(args=None):
parser = argparse.ArgumentParser(prog='app')
cmds = parser.add_subparsers(help='commands')
def cmd(name, **kw):
p = cmds.add_parser(name, **kw)
p.set_defaults(cmd=name)
p.arg = lambda *a, **kw: p.add_argument(*a, **kw) and p
p.exe = lambda f: p.set_defaults(exe=f) and p
# global options
# p.arg('-s', '--settings', help='application settings')
return p
cmd('auth', help='Authorize application') \
.exe(lambda _: (
run_auth()
))
cmd('pack', help='Compress folder') \
.arg('source', type=str, help='Path to folder or file') \
.arg('destination', type=str, help='Path to resulting zip archive') \
.exe(lambda a: (
run_pack(a.source, a.destination)
))
cmd('upload', help='Upload file with override') \
.arg('refresh_token', type=str, help='Refresh token') \
.arg('file', type=str, help='Path to file') \
.arg('path', type=str, help='Path on disk') \
.exe(lambda a: (
run_upload(a.refresh_token, a.file, a.path)
))
args = parser.parse_args(args)
if not hasattr(args, 'exe'):
parser.print_usage()
else:
args.exe(args)
if __name__ == '__main__':
parse_args()

View File

@ -19,13 +19,13 @@ NUMBER=${#NUMBER[@]}
# Certant languages like he_IL and zh_CN are not supported by math parser
for ((i=0;i<NUMBER;i++)); do
tx pull -r valentina-project.measurements_p${i}${MEASUREMENTS_BRANCH}ts --mode=developer -f --skip -l "uk,de_DE,cs,he_IL,fr_FR,it_IT,nl,id,es,fi,en_US,en_CA,en_IN,ro_RO,zh_CN,pt_BR,el_GR,pl_PL" &
sleep 1
tx pull -r valentina-project.measurements_p${i}${MEASUREMENTS_BRANCH}ts --mode=developer -f --skip -l "ru_RU, uk, de_DE, cs, he_IL, fr_FR, it_IT, nl, id, es, fi, en_US, en_CA, en_IN, ro_RO, zh_CN, pt_BR, el_GR, pl_PL" &
sleep 2
done
tx pull -r valentina-project.valentina_${VALENTINA_BRANCH}ts --mode=developer -f --skip &
sleep 1
tx pull -r valentina-project.measurements_p998${MEASUREMENTS_BRANCH}ts --mode=developer -f --skip -l "uk,de_DE,cs,he_IL,fr_FR,it_IT,nl,id,es,fi,en_US,en_CA,en_IN,ro_RO,zh_CN,pt_BR,el_GR,pl_PL" &
sleep 2
tx pull -r valentina-project.measurements_p998${MEASUREMENTS_BRANCH}ts --mode=developer -f --skip -l "ru_RU, uk, de_DE, cs, he_IL, fr_FR, it_IT, nl, id, es, fi, en_US, en_CA, en_IN, ro_RO, zh_CN, pt_BR, el_GR, pl_PL" &
wait
@ -43,7 +43,7 @@ do
done
end=$(date +%s)
runtime=$(python -c "print('Time passed %u:%02u seconds' % ((${end} - ${start})/60, (${end} - ${start})%60))")
runtime=$(python -c "print 'Time passed %u:%02u seconds' % ((${end} - ${start})/60, (${end} - ${start})%60)")
echo $runtime
echo For updating files run: build all.

View File

@ -17,5 +17,3 @@ do
basename=${file##*/} # remove the path from a path-string
cp -v -f $file $OBSDEBIAN/debian.${basename}
done
cp -v -f ../dist/valentina.dsc $OBSDEBIAN/valentina.dsc

View File

@ -1,43 +0,0 @@
print_error() {
echo "[CI] ERROR: $1"
}
print_info() {
echo "[CI] INFO: $1"
}
check_failure() {
if [ $? -ne 0 ] ; then
if [ -z $1 ] ; then
print_error $1
else
print_error "Failure exit code is detected."
fi
exit 1
fi
}
if [[ "$DEPLOY" == "true" ]]; then
../scripts/macfixqtdylibrpath.py $TRAVIS_BUILD_DIR/build/src/app/valentina/bin/Valentina.app;
check_failure "Unable to patch the app bundle.";
if [[ "$LEGACY" = false ]]; then
legacy_suffix=""
else
legacy_suffix="-legacy"
fi
print_info "Start compressing.";
tar -C $TRAVIS_BUILD_DIR/build/src/app/valentina/bin --exclude "*.DS_Store" -cvJf valentina-osx-${XCODE}-${TRAVIS_COMMIT}${legacy_suffix}.tar.xz Valentina.app/;
check_failure "Unable to create an archive.";
print_info "Start uploading.";
python3 $TRAVIS_BUILD_DIR/scripts/deploy.py upload $ACCESS_TOKEN $TRAVIS_BUILD_DIR/build/valentina-osx-${XCODE}-${TRAVIS_COMMIT}${legacy_suffix}.tar.xz "/0.7.x/Mac OS X/valentina-osx-${XCODE}-${TRAVIS_COMMIT}${legacy_suffix}.tar.xz";
check_failure "Unable to upload.";
print_info "Successfully uploaded.";
else
print_info "No deployment needed.";
fi

33
share/bintray.json Normal file
View File

@ -0,0 +1,33 @@
{
"package": {
"name": "valentina-osx_auto-upload",
"repo": "Valentina",
"subject": "dismine",
"desc": "Was pushed completely automatically",
"website_url": "https://valentinaproject.bitbucket.io",
"issue_tracker_url": "https://gitlab.com/smart-pattern/valentina/-/issues",
"vcs_url": "https://gitlab.com/smart-pattern/valentina",
"github_use_tag_release_notes": false,
"licenses": ["GPL-3.0"],
"labels": ["patternmaking"],
"public_download_numbers": false,
"public_stats": false
},
"version": {
"name": "0.7.41",
"desc": "Test branch release",
"released": "2020-12-4",
"vcs_tag": "v0.7.41",
"gpgSign": false
},
"files":
[
{"includePattern": "./(valentina-osx-.*\\.tar.gz)", "uploadPattern": "$1",
"matrixParams": {
"override": 1 }
}
],
"publish": true
}

View File

@ -1 +0,0 @@
<svg id="Filled" height="512" viewBox="0 0 512 512" width="512" xmlns="http://www.w3.org/2000/svg"><g fill="#e8edf1"><path d="m168 24-96 32s40 128-48 184c9.256 47.571 24 93.32 24 136 0 40-3.984 78.486-16 112h216v-384s-56-24-80-80z"/><path d="m488 96-32 232h-144l-32-232a354.576 354.576 0 0 0 48-40c24-24 48-24 56-24s32 0 56 24a354.576 354.576 0 0 0 48 40z"/><path d="m296 384h192v96h-192z"/></g><path d="m256 488v-384a8 8 0 0 0 -4.849-7.354c-.53-.226-53.318-23.345-75.8-75.8a8 8 0 0 0 -9.883-4.439l-96 32a8 8 0 0 0 -5.106 9.977 236.823 236.823 0 0 1 8.638 68.416c-1.254 48.932-19.186 84.749-53.3 106.456a8 8 0 0 0 -3.558 8.277c2.77 14.235 6.042 28.376 9.207 42.053 7.537 32.548 14.651 63.295 14.651 92.414 0 44.4-5.08 80.151-15.531 109.3a8 8 0 0 0 7.531 10.7h216a8 8 0 0 0 8-8zm-16-112.013h-16a8 8 0 0 0 0 16h16v88.013h-80v-16a8 8 0 0 0 -16 0v16h-100.941c8.698-28.773 12.941-62.942 12.941-104 0-30.946-7.314-62.558-15.058-96.025-2.743-11.856-5.568-24.066-8.052-36.288 35.41-24.717 54.784-64.859 56.11-116.482a256.257 256.257 0 0 0 -7.3-66.005l82.026-27.342c21.964 44.714 62.293 68.142 76.274 75.195z"/><path d="m492.438 89.344a348.673 348.673 0 0 1 -46.781-39c-26.343-26.344-52.923-26.344-61.657-26.344s-35.314 0-61.657 26.343a350.092 350.092 0 0 1 -46.781 39 8 8 0 0 0 -3.487 7.749l32 232a8 8 0 0 0 7.925 6.908h144a8 8 0 0 0 7.925-6.907l32-232a8 8 0 0 0 -3.487-7.749zm-43.41 230.656h-130.056l-30.372-220.231a369.2 369.2 0 0 0 45.061-38.112c21.653-21.657 43.244-21.657 50.339-21.657s28.686 0 50.343 21.657a369.2 369.2 0 0 0 45.057 38.112z"/><path d="m152 88a8 8 0 0 0 8-8v-16a8 8 0 0 0 -16 0v16a8 8 0 0 0 8 8z"/><path d="m384 88a8 8 0 0 0 8-8v-16a8 8 0 0 0 -16 0v16a8 8 0 0 0 8 8z"/><path d="m384 128a8 8 0 0 0 -8 8v16a8 8 0 0 0 16 0v-16a8 8 0 0 0 -8-8z"/><path d="m384 176a8 8 0 0 0 -8 8v16a8 8 0 0 0 16 0v-16a8 8 0 0 0 -8-8z"/><path d="m384 224a8 8 0 0 0 -8 8v16a8 8 0 0 0 16 0v-16a8 8 0 0 0 -8-8z"/><path d="m384 272a8 8 0 0 0 -8 8v16a8 8 0 0 0 16 0v-16a8 8 0 0 0 -8-8z"/><path d="m80 256a8 8 0 0 0 -8-8h-16a8 8 0 0 0 0 16h16a8 8 0 0 0 8-8z"/><path d="m376 424h-16a8 8 0 0 0 0 16h16a8 8 0 0 0 0-16z"/><path d="m408 440h16a8 8 0 0 0 0-16h-16a8 8 0 0 0 0 16z"/><path d="m496 384a8 8 0 0 0 -8-8h-192a8 8 0 0 0 -8 8v96a8 8 0 0 0 8 8h192a8 8 0 0 0 8-8zm-16 40h-24a8 8 0 0 0 0 16h24v32h-80v-16a8 8 0 0 0 -16 0v16h-80v-32h24a8 8 0 0 0 0-16h-24v-32h80v8a8 8 0 0 0 16 0v-8h80z"/><path d="m320 96h-8a8 8 0 0 0 0 16h8a8 8 0 0 0 0-16z"/><path d="m368 96h-16a8 8 0 0 0 0 16h16a8 8 0 0 0 0-16z"/><path d="m416 96h-16a8 8 0 0 0 0 16h16a8 8 0 0 0 0-16z"/><path d="m448 112h8a8 8 0 0 0 0-16h-8a8 8 0 0 0 0 16z"/><path d="m96 376.007h-16a8 8 0 0 0 0 16h16a8 8 0 1 0 0-16z"/><path d="m152 384a8 8 0 0 0 -8-8h-16a8 8 0 0 0 0 16h16a8 8 0 0 0 8-8z"/><path d="m192 375.993h-16a8 8 0 1 0 0 16h16a8 8 0 0 0 0-16z"/><path d="m104 264h16a8 8 0 0 0 0-16h-16a8 8 0 0 0 0 16z"/><path d="m152 264h16a8 8 0 0 0 0-16h-16a8 8 0 0 0 0 16z"/><path d="m200 264h16a8 8 0 0 0 0-16h-16a8 8 0 0 0 0 16z"/><path d="m152 136a8 8 0 0 0 8-8v-16a8 8 0 0 0 -16 0v16a8 8 0 0 0 8 8z"/><path d="m152 184a8 8 0 0 0 8-8v-16a8 8 0 0 0 -16 0v16a8 8 0 0 0 8 8z"/><path d="m152 232a8 8 0 0 0 8-8v-16a8 8 0 0 0 -16 0v16a8 8 0 0 0 8 8z"/><path d="m152 280a8 8 0 0 0 -8 8v16a8 8 0 0 0 16 0v-16a8 8 0 0 0 -8-8z"/><path d="m152 328a8 8 0 0 0 -8 8v16a8 8 0 0 0 16 0v-16a8 8 0 0 0 -8-8z"/><path d="m152 408a8 8 0 0 0 -8 8v16a8 8 0 0 0 16 0v-16a8 8 0 0 0 -8-8z"/></svg>

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.2 KiB

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -1,80 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 128 128"
version="1.1"
id="svg19"
sodipodi:docname="puzzle.svg"
inkscape:export-filename="/home/dismine/CAD/puzzle.png"
inkscape:export-xdpi="384"
inkscape:export-ydpi="384"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata23">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1580"
inkscape:window-height="849"
id="namedview21"
showgrid="false"
inkscape:zoom="1.84375"
inkscape:cx="3.5254237"
inkscape:cy="64"
inkscape:window-x="0"
inkscape:window-y="360"
inkscape:window-maximized="0"
inkscape:current-layer="svg19" />
<defs
id="defs4">
<style
id="style2">.cls-1{isolation:isolate;}.cls-2{mix-blend-mode:multiply;}.cls-3{fill:#c9222e;stroke:#c9222e;}.cls-3,.cls-4,.cls-5,.cls-6{stroke-linecap:round;stroke-linejoin:round;}.cls-4{fill:#27ab71;stroke:#27ab71;}.cls-5{fill:#e8c81b;stroke:#e8c81b;}.cls-6{fill:#23a6dc;stroke:#23a6dc;}</style>
</defs>
<title
id="title6">puzzle</title>
<g
class="cls-1"
id="g17">
<g
id="icons"
class="cls-2">
<path
class="cls-3"
d="M96.74,65.5A8,8,0,0,0,99,60c0-4.69-4.25-8.5-9.5-8.5S80,55.31,80,60a8,8,0,0,0,2.26,5.5H65.5V77.31A10.6,10.6,0,0,1,68,77c6.34,0,11.5,5.61,11.5,12.5S74.34,102,68,102a10.6,10.6,0,0,1-2.5-.31V113.5h48v-48Z"
id="path8" />
<path
class="cls-4"
d="M62.5,96.74A8,8,0,0,0,68,99c4.69,0,8.5-4.25,8.5-9.5S72.69,80,68,80a8,8,0,0,0-5.5,2.26V65.5H50.69A10.6,10.6,0,0,1,51,68c0,6.34-5.61,11.5-12.5,11.5S26,74.34,26,68a10.6,10.6,0,0,1,.31-2.5H14.5v48h48Z"
id="path10" />
<path
class="cls-5"
d="M31.26,62.5A8,8,0,0,0,29,68c0,4.69,4.25,8.5,9.5,8.5S48,72.69,48,68a8,8,0,0,0-2.26-5.5H62.5V50.69A10.6,10.6,0,0,1,60,51c-6.34,0-11.5-5.61-11.5-12.5S53.66,26,60,26a10.6,10.6,0,0,1,2.5.31V14.5h-48v48Z"
id="path12" />
<path
class="cls-6"
d="M65.5,31.26A8,8,0,0,0,60,29c-4.69,0-8.5,4.25-8.5,9.5S55.31,48,60,48a8,8,0,0,0,5.5-2.26V62.5H77.31A10.6,10.6,0,0,1,77,60c0-6.34,5.61-11.5,12.5-11.5S102,53.66,102,60a10.6,10.6,0,0,1-.31,2.5H113.5v-48h-48Z"
id="path14" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -25,6 +25,7 @@ PMSYSTEMS += \
p31 p32 p33 p34 p35 p36 p37 p38 p39 p40 p41 p42 p43 p44 p45 p46 p47 p48 p49 p50 p51 p52 p53 p54 p998
LANGUAGES += \
ru_RU \
uk_UA \
de_DE \
cs_CZ \

View File

@ -403,7 +403,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="365"/>
<source>Vertical height from Waist Back to floor.</source>
<comment>Full measurement description.</comment>
<translation>Svislá výška od zadní strany kyčlí k podlaze.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="381"/>
@ -3005,7 +3005,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="1506"/>
<source>neck_side_to_armfold_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>krk_strana_po_podpaží_vpředu</translation>
<translation>strana_krku_k_podpaží_vpředu</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="1508"/>
@ -3059,7 +3059,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="1527"/>
<source>neck_side_to_armfold_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>krk_strana_po_podpaží_vzadu</translation>
<translation>strana_krku_k_podpaží_vzadu</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="1529"/>

View File

@ -13,7 +13,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="209"/>
<source>Height: Total</source>
<comment>Full measurement name.</comment>
<translation>Höhe: Gesamt</translation>
<translation>Höhe: Total</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="210"/>
@ -403,7 +403,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="365"/>
<source>Vertical height from Waist Back to floor.</source>
<comment>Full measurement description.</comment>
<translation>Senkrechter Abstand zwischen Taillenrückseite und Boden.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="381"/>

View File

@ -19,37 +19,37 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="210"/>
<source>Vertical distance from crown of head to floor.</source>
<comment>Full measurement description.</comment>
<translation>Distancia vertical de la coronilla al suelo.</translation>
<translation>Distancia vertical desde la coronilla de la cabeza al suelo.</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="214"/>
<source>height_neck_back</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>altura_cuello_espalda</translation>
<translation>altura_cuello_trasero</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="216"/>
<source>Height: Neck Back</source>
<comment>Full measurement name.</comment>
<translation>Altura: Cuello espalda</translation>
<translation>Altura: Cuello Trasero</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="217"/>
<source>Vertical distance from the Neck Back (cervicale vertebra) to the floor.</source>
<comment>Full measurement description.</comment>
<translation>Distancia vertical de la espalda del cuello (vértebra cervical) al suelo.</translation>
<translation>Distancia vertical desde el cuello trasero (vertebra cervical) hasta el suelo.</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="221"/>
<source>height_scapula</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>altura_escápula</translation>
<translation>altura_escapula</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="223"/>
<source>Height: Scapula</source>
<comment>Full measurement name.</comment>
<translation>Altura: Escápula</translation>
<translation>Altura: Escapula</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="224"/>
@ -79,19 +79,19 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="235"/>
<source>height_waist_side</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>altura_lado_cintura</translation>
<translation>altura_cintura_lateral</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="237"/>
<source>Height: Waist Side</source>
<comment>Full measurement name.</comment>
<translation>Altura: Lado de cintura</translation>
<translation>Altura: Cintura Lateral</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="238"/>
<source>Vertical distance from the Waist Side to the floor.</source>
<comment>Full measurement description.</comment>
<translation>Distancia vertical del lado de la cintura al suelo.</translation>
<translation>Distancia vertical de la cintura lateral al suelo. </translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="242"/>
@ -109,7 +109,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="245"/>
<source>Vertical distance from the Hip level to the floor.</source>
<comment>Full measurement description.</comment>
<translation>Distancia vertical del nivel de la cadera al suelo. </translation>
<translation>Distancia vertical del nivel de la cadera al piso. </translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="249"/>
@ -151,7 +151,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="263"/>
<source>height_calf</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>height_calf</translation>
<translation>altura_pantorrilla</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="265"/>
@ -169,7 +169,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="270"/>
<source>height_ankle_high</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>height_ankle_high</translation>
<translation>altura_alto_tobillo</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="272"/>
@ -187,7 +187,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="277"/>
<source>height_ankle</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>height_ankle</translation>
<translation>altura_tobillo</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="279"/>
@ -205,7 +205,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="284"/>
<source>height_highhip</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>height_highhip</translation>
<translation>altura_alturadelacadera</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="286"/>
@ -223,7 +223,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="291"/>
<source>height_waist_front</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>height_waist_front</translation>
<translation>altura_cintura_frontal</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="293"/>
@ -241,7 +241,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="298"/>
<source>height_bustpoint</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>height_bustpoint</translation>
<translation>altura_busto</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="300"/>
@ -259,19 +259,19 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="305"/>
<source>height_shoulder_tip</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>height_shoulder_tip</translation>
<translation>Altura_Hombro</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="307"/>
<source>Height: Shoulder Tip</source>
<comment>Full measurement name.</comment>
<translation>Altura: Hombro Punta</translation>
<translation>Altura: Hombro</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="308"/>
<source>Vertical distance from the Shoulder Tip to the floor.</source>
<comment>Full measurement description.</comment>
<translation>Distancia vertical desde la punta del Hombro hasta el piso</translation>
<translation>Distancia vertical desde el Hombro hasta el piso</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="312"/>
@ -403,7 +403,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="365"/>
<source>Vertical height from Waist Back to floor.</source>
<comment>Full measurement description.</comment>
<translation>Altura vertical desde la Cintura Espalda al piso.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="381"/>
@ -1295,7 +1295,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="781"/>
<source>hip_arc_half_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>cadera_arco_mitad_f</translation>
<translation>hip_arc_half_f</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="783"/>
@ -1313,7 +1313,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="788"/>
<source>neck_arc_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>cuello_arco_t</translation>
<translation>neck_arc_b</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="790"/>
@ -1331,7 +1331,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="796"/>
<source>highbust_arc_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>bustoalto_arco_t</translation>
<translation>highbust_arc_b</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="798"/>
@ -1349,7 +1349,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="803"/>
<source>bust_arc_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>busto_arco_t</translation>
<translation>bust_arc_b</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="805"/>
@ -1367,13 +1367,13 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="811"/>
<source>lowbust_arc_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>bajobusto_arco_t</translation>
<translation>lowbust_arc_b</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="813"/>
<source>Lowbust arc, back</source>
<comment>Full measurement name.</comment>
<translation>Arco del busto bajo, espalda</translation>
<translation>Arco del busto bajo</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="814"/>
@ -1385,7 +1385,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="819"/>
<source>rib_arc_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>costilla_arco_t</translation>
<translation>rib_arc_b</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="821"/>
@ -1403,7 +1403,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="827"/>
<source>waist_arc_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>cintura_arco_t</translation>
<translation>waist_arc_b</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="829"/>
@ -1421,7 +1421,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="835"/>
<source>highhip_arc_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>caderaalta_arco_t</translation>
<translation>highhip_arc_b</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="837"/>
@ -1439,7 +1439,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="843"/>
<source>hip_arc_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>cadera_arco_t</translation>
<translation>hip_arc_b</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="845"/>
@ -1457,7 +1457,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="851"/>
<source>neck_arc_half_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>cuello_arco_mitad_t</translation>
<translation>neck_arc_half_b</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="853"/>
@ -1475,7 +1475,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="858"/>
<source>highbust_arc_half_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>bustoalto_arco_mitad_t</translation>
<translation>highbust_arc_half_b</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="860"/>
@ -1493,7 +1493,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="866"/>
<source>bust_arc_half_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>busto_arco_mitad_t</translation>
<translation>bust_arc_half_b</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="868"/>
@ -1511,7 +1511,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="873"/>
<source>lowbust_arc_half_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>bajobusto_arco_mitad_t</translation>
<translation>lowbust_arc_half_b</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="875"/>

View File

@ -7,7 +7,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="207"/>
<source>height</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>Hauteur</translation>
<translation>taille</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="209"/>
@ -403,7 +403,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="365"/>
<source>Vertical height from Waist Back to floor.</source>
<comment>Full measurement description.</comment>
<translation>Distance verticale de la taille dos au sol</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="381"/>
@ -977,7 +977,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="445"/>
<source>Horizontal Distance between a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle.</source>
<comment>Full measurement description.</comment>
<translation>Distance horizontale entre un support plat placé perpendiculairement au talon et la protubérance de l&apos;os de la cheville.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="655"/>
@ -1073,7 +1073,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="692"/>
<source>Same as bust_arc_f.</source>
<comment>Full measurement description.</comment>
<translation>Identique à bust_arc_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="696"/>
@ -1475,7 +1475,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="858"/>
<source>highbust_arc_half_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>demi_arc_surpoitrine_dos</translation>
<translation>quart_tour_surpoitrinaire_dos</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="860"/>
@ -2177,7 +2177,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="1147"/>
<source>neck_side_to_highbust_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>encolure_cote_surpoitrine_dos</translation>
<translation>encolure_cote_sur_poitrine_dos</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="1149"/>
@ -2825,7 +2825,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="1423"/>
<source>bustpoint_to_waist_front</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>saillantpoitrine_taille_devant</translation>
<translation>pointe_sein_taille</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="1425"/>
@ -3527,7 +3527,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="1822"/>
<source>From Waist Side along curve to Hip level then straight down to Knee level. (&apos;Leg: Waist Side to Floor&apos; - &apos;Height Knee&apos;).</source>
<comment>Full measurement description.</comment>
<translation>Du Côté de la Taille le long de la courbe de la Hanche et jusqu&apos;au genou. (&apos;Jambe :&#xa0;Coté de la Taille jusqu&apos;au genou&apos; - &apos;Genou&apos;).</translation>
<translation>Du Côté de la Taille le long de la courbe de la Hanche et jusqu&apos;au genou. (&apos;Jambe : Coté de la Taille jusqu&apos;au genou&apos; - &apos;Genou&apos;).</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="1862"/>
@ -3807,7 +3807,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="1846"/>
<source>crotch_length_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>longueur_fourche_dos</translation>
<translation>longueur_entrejambe</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="1848"/>
@ -3990,7 +3990,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="1933"/>
<source>waist_natural_arc_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>demi_taille_naturel_devant</translation>
<translation>demi_taille_naturel_dev</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="1935"/>
@ -4332,19 +4332,19 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="2086"/>
<source>armfold_to_armfold_bust</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>entre_plis_bras_buste</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="2088"/>
<source>Armfold to Armfold, front, curved through Bust Front</source>
<comment>Full measurement name.</comment>
<translation>D&apos;un pli du bras à l&apos;autre en passant par le devant du buste</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="2090"/>
<source>Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front.</source>
<comment>Full measurement description.</comment>
<translation>Mesure depuis l&apos;avant du pli du bras gauche jusqu&apos;à l&apos;avant du pli du bras droit en passant par le devant du buste</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="2094"/>
@ -4362,25 +4362,25 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="2097"/>
<source>Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible.</source>
<comment>Full measurement description.</comment>
<translation>Mesure de la plus courte distance, aussi droite que possible, entre l&apos;avant du pli du bras et le devant du buste </translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="2101"/>
<source>highbust_b_over_shoulder_to_highbust_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>haut_du_buste_devant_à_haut_du_buste_dos_par_dessus_l&apos;épaule</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="2103"/>
<source>Highbust Back, over Shoulder, to Highbust level</source>
<comment>Full measurement name.</comment>
<translation>surpoitrine dos, au-dessus de l&apos;épaule, arriver niveau surpoitrine</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="2105"/>
<source>From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level.</source>
<comment>Full measurement description.</comment>
<translation>Depuis surpoitrine dos, au-dessus de l&apos;épaule, puis viser le saillant de poitrine, en arrêtant la mesure au niveau de la surpoitrine</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="2110"/>

View File

@ -7,361 +7,361 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="207"/>
<source>height</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובה</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="209"/>
<source>Height: Total</source>
<comment>Full measurement name.</comment>
<translation>גובה מלא</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="210"/>
<source>Vertical distance from crown of head to floor.</source>
<comment>Full measurement description.</comment>
<translation>מרחק אנכי מגובה הקדקוד עד כפות הרגליים.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="214"/>
<source>height_neck_back</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובה_צרוויקלי</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="216"/>
<source>Height: Neck Back</source>
<comment>Full measurement name.</comment>
<translation>גובה: צרוויקלי</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="217"/>
<source>Vertical distance from the Neck Back (cervicale vertebra) to the floor.</source>
<comment>Full measurement description.</comment>
<translation>מרחק אנכי מגובה הצרוויקלי ( cervicale vertebra) עד כפות הרגליים.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="221"/>
<source>height_scapula</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובה_עצם_השכם</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="223"/>
<source>Height: Scapula</source>
<comment>Full measurement name.</comment>
<translation>גובה: עצם השכם</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="224"/>
<source>Vertical distance from the Scapula (Blade point) to the floor.</source>
<comment>Full measurement description.</comment>
<translation>מרחק אנכי מגובה הקודקוד של עצם השכם (Scapula) עד כפות הרגליים.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="228"/>
<source>height_armpit</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובהית_השחי</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="230"/>
<source>Height: Armpit</source>
<comment>Full measurement name.</comment>
<translation>גובה: בית השחי</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="231"/>
<source>Vertical distance from the Armpit to the floor.</source>
<comment>Full measurement description.</comment>
<translation>מרחק אנכי מגובה נקודת אמצע בית השחי עד כפות הרגליים. </translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="235"/>
<source>height_waist_side</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובהותן_צד</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="237"/>
<source>Height: Waist Side</source>
<comment>Full measurement name.</comment>
<translation>גובה: מותן בצד</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="238"/>
<source>Vertical distance from the Waist Side to the floor.</source>
<comment>Full measurement description.</comment>
<translation>מרחק אנכי מגובה המותן בצד עד כפות הרגליים.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="242"/>
<source>height_hip</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובה_ירך</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="244"/>
<source>Height: Hip</source>
<comment>Full measurement name.</comment>
<translation>גובה: ירך</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="245"/>
<source>Vertical distance from the Hip level to the floor.</source>
<comment>Full measurement description.</comment>
<translation>מרחק אנכי מגובה הירכיים עד כפות הרגליים.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="249"/>
<source>height_gluteal_fold</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובה_פנים_הרגל</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="251"/>
<source>Height: Gluteal Fold</source>
<comment>Full measurement name.</comment>
<translation>גובה: פנים הרגל</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="252"/>
<source>Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor.</source>
<comment>Full measurement description.</comment>
<translation>מרחק אנכי מבסיס הגוף עד כפות הרגליים.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="256"/>
<source>height_knee</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובה_ברך</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="258"/>
<source>Height: Knee</source>
<comment>Full measurement name.</comment>
<translation>גובה ברך</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="259"/>
<source>Vertical distance from the fold at the back of the Knee to the floor.</source>
<comment>Full measurement description.</comment>
<translation>מרחק אנכי מהברך עד כפות הרגליים.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="263"/>
<source>height_calf</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובהוק</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="265"/>
<source>Height: Calf</source>
<comment>Full measurement name.</comment>
<translation>גובה: שוק</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="266"/>
<source>Vertical distance from the widest point of the calf to the floor.</source>
<comment>Full measurement description.</comment>
<translation>מרחק אנכי מגובה היקף המקסימלי של שוק עד כפות הרגליים.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="270"/>
<source>height_ankle_high</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובה_גב_הקרסול</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="272"/>
<source>Height: Ankle High</source>
<comment>Full measurement name.</comment>
<translation>גובה: גב הקרסול </translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="273"/>
<source>Vertical distance from the deepest indentation of the back of the ankle to the floor.</source>
<comment>Full measurement description.</comment>
<translation>מרחק אנכי מגובה החורק העמוק ביותר בגב הקרסול עד הרצפה.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="277"/>
<source>height_ankle</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובה_קרסול</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="279"/>
<source>Height: Ankle</source>
<comment>Full measurement name.</comment>
<translation>גובה: קרסול</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="280"/>
<source>Vertical distance from point where the front leg meets the foot to the floor.</source>
<comment>Full measurement description.</comment>
<translation>מרחק אנכי מנקודה בה הכרע נפגש עם הרגל ועד הריצפה.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="284"/>
<source>height_highhip</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובה_ירך_עליונה</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="286"/>
<source>Height: Highhip</source>
<comment>Full measurement name.</comment>
<translation>גובה: ירך עליונה</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="287"/>
<source>Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor.</source>
<comment>Full measurement description.</comment>
<translation>מרחק אנכי מנקודה פשיטת הבטן המקסימלי, עד כפות הרגליים.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="291"/>
<source>height_waist_front</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובהותןידמי</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="293"/>
<source>Height: Waist Front</source>
<comment>Full measurement name.</comment>
<translation>גובה: מותן קידמי</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="294"/>
<source>Vertical distance from the Waist Front to the floor.</source>
<comment>Full measurement description.</comment>
<translation>מרחק אנכי מגובה קוו המותן קידמי ועד כפות הרגליים.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="298"/>
<source>height_bustpoint</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובהודקוד_חזה</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="300"/>
<source>Height: Bustpoint</source>
<comment>Full measurement name.</comment>
<translation>גובה: קודקוד חזה</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="301"/>
<source>Vertical distance from Bustpoint to the floor.</source>
<comment>Full measurement description.</comment>
<translation>מרחק אנכי מגובה קודקוד חזה עד כפות הרגליים.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="305"/>
<source>height_shoulder_tip</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובה_קצה_הכתף</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="307"/>
<source>Height: Shoulder Tip</source>
<comment>Full measurement name.</comment>
<translation>גובה: קצה הכתף</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="308"/>
<source>Vertical distance from the Shoulder Tip to the floor.</source>
<comment>Full measurement description.</comment>
<translation>מרחק אנכי מגובה קצה הכתף עד כפות הרגליים.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="312"/>
<source>height_neck_front</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובהית_הצוור</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="314"/>
<source>Height: Neck Front</source>
<comment>Full measurement name.</comment>
<translation>גובה: בית הצוור</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="315"/>
<source>Vertical distance from the Neck Front to the floor.</source>
<comment>Full measurement description.</comment>
<translation>מרחק אנכי מגובה בית הצוור עד כפות הרגליים.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="319"/>
<source>height_neck_side</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובה_נקודת_הכתף</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="321"/>
<source>Height: Neck Side</source>
<comment>Full measurement name.</comment>
<translation>גובה: נקודת הכתף</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="322"/>
<source>Vertical distance from the Neck Side to the floor.</source>
<comment>Full measurement description.</comment>
<translation>מרחק אנכי מגובה נקודת הכתף עד כפות הרגליים.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="326"/>
<source>height_neck_back_to_knee</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובה_צרוויקלי_ברך_אחורי</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="328"/>
<source>Height: Neck Back to Knee</source>
<comment>Full measurement name.</comment>
<translation>גובה: צרוויקלי - ברך אחורי</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="329"/>
<source>Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee.</source>
<comment>Full measurement description.</comment>
<translation>מרחק אנכי מגובה צרוויקלי (cervicale vertebra) לקפל בחלק האחורי של הברך</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="333"/>
<source>height_waist_side_to_knee</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובהותן_צד_ברך</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="335"/>
<source>Height: Waist Side to Knee</source>
<comment>Full measurement name.</comment>
<translation>גובה: מותן צד עד הברך</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="336"/>
<source>Vertical distance from the Waist Side to the fold at the back of the knee.</source>
<comment>Full measurement description.</comment>
<translation>מרחק אנכי מצד המותניים עד לקפל בחלק האחורי של הברך.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="341"/>
<source>height_waist_side_to_hip</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובהותן_צד_ירך</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="343"/>
<source>Height: Waist Side to Hip</source>
<comment>Full measurement name.</comment>
<translation>גובה: מותן צד עד הירך</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="344"/>
<source>Vertical distance from the Waist Side to the Hip level.</source>
<comment>Full measurement description.</comment>
<translation>מרחק אנכי מצד המותניים לרמת הירך.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="348"/>

View File

@ -403,7 +403,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="365"/>
<source>Vertical height from Waist Back to floor.</source>
<comment>Full measurement description.</comment>
<translation>Altezza verticale dietro dalla vita al pavimento.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="381"/>
@ -1025,37 +1025,37 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="675"/>
<source>highbust_arc_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>Arco_torace_frontale</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="677"/>
<source>Highbust arc, front</source>
<comment>Full measurement name.</comment>
<translation>Arco torace, frontale</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="678"/>
<source>From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest.</source>
<comment>Full measurement description.</comment>
<translation>Da un lato del torace (ascella) all&apos;altro lato del torace (ascella) attraverso il petto.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="682"/>
<source>bust_arc_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>arco_seno_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="684"/>
<source>Bust arc, front</source>
<comment>Full measurement name.</comment>
<translation>Arco seno, frontale</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="685"/>
<source>From Bust Side to Bust Side across chest.</source>
<comment>Full measurement description.</comment>
<translation>Da un lato del busto all&apos;altro attraverso il seno</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="689"/>
@ -1067,343 +1067,343 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="691"/>
<source>Size</source>
<comment>Full measurement name.</comment>
<translation>Taglia</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="692"/>
<source>Same as bust_arc_f.</source>
<comment>Full measurement description.</comment>
<translation>Come arco_seno_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="696"/>
<source>lowbust_arc_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>arco_sottoseno_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="698"/>
<source>Lowbust arc, front</source>
<comment>Full measurement name.</comment>
<translation>Arco sotto il seno, davanti</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="699"/>
<source>From Lowbust Side to Lowbust Side across front.</source>
<comment>Full measurement description.</comment>
<translation>Da un lato sotto il seno all&apos;altro lato davanti</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="703"/>
<source>rib_arc_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>arco_costola_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="705"/>
<source>Rib arc, front</source>
<comment>Full measurement name.</comment>
<translation>Arco tra le costole, davanti</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="706"/>
<source>From Rib Side to Rib Side, across front.</source>
<comment>Full measurement description.</comment>
<translation>Dalla costola di un lato all&apos;altro lato, davanti.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="710"/>
<source>waist_arc_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>arco_vita_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="712"/>
<source>Waist arc, front</source>
<comment>Full measurement name.</comment>
<translation>Arco vita, davanti</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="713"/>
<source>From Waist Side to Waist Side across front.</source>
<comment>Full measurement description.</comment>
<translation>Da una parte all&apos;altra della vita, davanti.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="717"/>
<source>highhip_arc_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>arco_anca_alta_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="719"/>
<source>Highhip arc, front</source>
<comment>Full measurement name.</comment>
<translation>Arco anca alta, davanti.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="720"/>
<source>From Highhip Side to Highhip Side across front.</source>
<comment>Full measurement description.</comment>
<translation>Da un lato dell&apos;anca alta all&apos;altro, davanti.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="724"/>
<source>hip_arc_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>arco_anca_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="726"/>
<source>Hip arc, front</source>
<comment>Full measurement name.</comment>
<translation>Arco anca, davanti.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="727"/>
<source>From Hip Side to Hip Side across Front.</source>
<comment>Full measurement description.</comment>
<translation>Da un lato dell&apos;anca all&apos;altro, davanti.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="731"/>
<source>neck_arc_half_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>mezzo_arco_collo_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="733"/>
<source>Neck arc, front, half</source>
<comment>Full measurement name.</comment>
<translation>Metà arco collo, davanti.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="734"/>
<source>Half of &apos;Neck arc, front&apos;. (&apos;Neck arc, front&apos; / 2).</source>
<comment>Full measurement description.</comment>
<translation>Metà dell&apos;arco del collo, davanti. (Arco collo, davanti / 2).</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="738"/>
<source>highbust_arc_half_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>mezzo_arco_torace_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="740"/>
<source>Highbust arc, front, half</source>
<comment>Full measurement name.</comment>
<translation>Metà arco torace, davanti.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="741"/>
<source>Half of &apos;Highbust arc, front&apos;. From Highbust Front to Highbust Side. (&apos;Highbust arc, front&apos; / 2).</source>
<comment>Full measurement description.</comment>
<translation>Metà dell&apos;arco del torace davanti. Dal centro davanti al lato del torace. (Arco torace, davanti /2).</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="746"/>
<source>bust_arc_half_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>mezzo_arco_seno_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="748"/>
<source>Bust arc, front, half</source>
<comment>Full measurement name.</comment>
<translation>Metà arco seno, davanti.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="749"/>
<source>Half of &apos;Bust arc, front&apos;. (&apos;Bust arc, front&apos;/2).</source>
<comment>Full measurement description.</comment>
<translation>Metà dell&apos;arco del seno, davanti. (&apos;Arco seno, davanti&apos; / 2).</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="753"/>
<source>lowbust_arc_half_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>mezzo_arco_sotto_seno_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="755"/>
<source>Lowbust arc, front, half</source>
<comment>Full measurement name.</comment>
<translation>Metà arco sotto seno, davanti.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="756"/>
<source>Half of &apos;Lowbust arc, front&apos;. (&apos;Lowbust Arc, front&apos; / 2).</source>
<comment>Full measurement description.</comment>
<translation>Metà dell&apos;arco sotto il seno, davanti&apos; (&apos;Arco sotto il seno, davanti&apos;/2)</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="760"/>
<source>rib_arc_half_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>mezzo_arco_costola_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="762"/>
<source>Rib arc, front, half</source>
<comment>Full measurement name.</comment>
<translation>Metà arco costola, davanti.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="763"/>
<source>Half of &apos;Rib arc, front&apos;. (&apos;Rib Arc, front&apos; / 2).</source>
<comment>Full measurement description.</comment>
<translation>Metà dell&apos;&apos;arco tra le costole, davanti&apos;. (&apos;Arco tra le costole, davanti&apos;/2)</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="767"/>
<source>waist_arc_half_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>mezzo_arco_vita_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="769"/>
<source>Waist arc, front, half</source>
<comment>Full measurement name.</comment>
<translation>Metà arco vita, davanti.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="770"/>
<source>Half of &apos;Waist arc, front&apos;. (&apos;Waist arc, front&apos; / 2).</source>
<comment>Full measurement description.</comment>
<translation>metà dell&apos;arco vita, davanti&apos; (&apos;Arco vita, davanti&apos;/2)</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="774"/>
<source>highhip_arc_half_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>mezzo_arco_anca_alta_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="776"/>
<source>Highhip arc, front, half</source>
<comment>Full measurement name.</comment>
<translation>Metà arco anca alta, davanti.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="777"/>
<source>Half of &apos;Highhip arc, front&apos;. (&apos;Highhip arc, front&apos; / 2).</source>
<comment>Full measurement description.</comment>
<translation>Metò dell&apos;arco anca alta, davanti. (&apos;Arco anca alta, davanti./2).</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="781"/>
<source>hip_arc_half_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>mezzo_arco_fianco_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="783"/>
<source>Hip arc, front, half</source>
<comment>Full measurement name.</comment>
<translation>Metà arco fianco, davanti.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="784"/>
<source>Half of &apos;Hip arc, front&apos;. (&apos;Hip arc, front&apos; / 2).</source>
<comment>Full measurement description.</comment>
<translation>Metà dell&apos;arco del fianco, davanti. (&apos;Arco del fianco, davanti&apos;/2)</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="788"/>
<source>neck_arc_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>arco_collo_b</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="790"/>
<source>Neck arc, back</source>
<comment>Full measurement name.</comment>
<translation>Arco collo, dietro.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="791"/>
<source>From Neck Side to Neck Side across back. (&apos;Neck circumference&apos; - &apos;Neck arc, front&apos;).</source>
<comment>Full measurement description.</comment>
<translation>Da un lato all&apos;altro del collo passando per il dietro.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="796"/>
<source>highbust_arc_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>arco_torace_dietro</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="798"/>
<source>Highbust arc, back</source>
<comment>Full measurement name.</comment>
<translation>Arco torace, dietro.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="799"/>
<source>From Highbust Side to Highbust Side across back. (&apos;Highbust circumference&apos; - &apos;Highbust arc, front&apos;).</source>
<comment>Full measurement description.</comment>
<translation>Da un lato all&apos;altro del torace attraverso il dietro. (&apos;Circonferenza torace&apos;-&apos;Arco torace, frontale&apos;)</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="803"/>
<source>bust_arc_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>arco_seno_b</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="805"/>
<source>Bust arc, back</source>
<comment>Full measurement name.</comment>
<translation>Arco busto, dietro.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="806"/>
<source>From Bust Side to Bust Side across back. (&apos;Bust circumference&apos; - &apos;Bust arc, front&apos;).</source>
<comment>Full measurement description.</comment>
<translation>Da un lato all&apos;altro del busto attraverso la schiena. (&apos;Circonferenza seno&apos;-&apos;Arco seno, frontale&apos;)</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="811"/>
<source>lowbust_arc_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>arco_sottoseno_b</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="813"/>
<source>Lowbust arc, back</source>
<comment>Full measurement name.</comment>
<translation>Arco sotto il seno, dietro.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="814"/>
<source>From Lowbust Side to Lowbust Side across back. (&apos;Lowbust circumference&apos; - &apos;Lowbust arc, front&apos;).</source>
<comment>Full measurement description.</comment>
<translation>Da un lato all&apos;altro sotto il seno attraverso la schiena. (&apos;Circonferenza sottoseno&apos;-&apos;Arco sotto il seno, davanti&apos;)</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="819"/>
<source>rib_arc_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>arco_costola_b</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="821"/>
<source>Rib arc, back</source>
<comment>Full measurement name.</comment>
<translation>Arco tra le costole, dietro.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="822"/>
<source>From Rib Side to Rib side across back. (&apos;Rib circumference&apos; - &apos;Rib arc, front&apos;).</source>
<comment>Full measurement description.</comment>
<translation>Da lato di una costola all&apos;altra attraverso la schiena. (&apos;Circonferenza costole&apos;-&apos;Arco tra le costole, davanti&apos;)</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="827"/>
<source>waist_arc_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>arco_vita_b</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="829"/>
@ -1421,37 +1421,37 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="835"/>
<source>highhip_arc_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>arco_fianco_alto_b</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="837"/>
<source>Highhip arc, back</source>
<comment>Full measurement name.</comment>
<translation>Arco dei fianchi, dietro</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="838"/>
<source>From Highhip Side to Highhip Side across back. (&apos;Highhip circumference&apos; - &apos;Highhip arc, front&apos;).</source>
<comment>Full measurement description.</comment>
<translation>Da un lato del fianco alto all&apos;altro attraverso la schiena. (&apos;Circonferenza fianchi&apos;-&apos;Arco del fianco alto, davanti&apos;)</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="843"/>
<source>hip_arc_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>arco_fianco_b</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="845"/>
<source>Hip arc, back</source>
<comment>Full measurement name.</comment>
<translation>Arco fianchi dietro</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="846"/>
<source>From Hip Side to Hip Side across back. (&apos;Hip circumference&apos; - &apos;Hip arc, front&apos;).</source>
<comment>Full measurement description.</comment>
<translation>Da un lato del fianco all&apos;altro attraverso la schiena. (&apos;Circonferenza fianchi&apos;-&apos;Arco fianco, davanti&apos;)</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="851"/>

View File

@ -403,7 +403,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="365"/>
<source>Vertical height from Waist Back to floor.</source>
<comment>Full measurement description.</comment>
<translation>Verticale afstand vanaf de rugkant van de taille naar de vloer</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="381"/>

File diff suppressed because it is too large Load Diff

View File

@ -403,7 +403,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="365"/>
<source>Vertical height from Waist Back to floor.</source>
<comment>Full measurement description.</comment>
<translation>Altura vertical da parte de trás da cintura até o chão</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="381"/>

File diff suppressed because it is too large Load Diff

View File

@ -403,7 +403,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="365"/>
<source>Vertical height from Waist Back to floor.</source>
<comment>Full measurement description.</comment>
<translation>Svislá výška od zadní strany kyčlí k podlaze.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="381"/>
@ -3005,7 +3005,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="1506"/>
<source>neck_side_to_armfold_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>krk_strana_po_podpaží_vpředu</translation>
<translation>strana_krku_k_podpaží_vpředu</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="1508"/>
@ -3059,7 +3059,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="1527"/>
<source>neck_side_to_armfold_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>krk_strana_po_podpaží_vzadu</translation>
<translation>strana_krku_k_podpaží_vzadu</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="1529"/>

View File

@ -408,7 +408,7 @@ Vertikalen Abstand von der hohen Hüfte Ebene, stärkste Stelle des vorderen Ba
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="365"/>
<source>Vertical height from Waist Back to floor.</source>
<comment>Full measurement description.</comment>
<translation>Senkrechter Abstand zwischen Taillenrückseite und Boden.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="381"/>

View File

@ -403,7 +403,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="365"/>
<source>Vertical height from Waist Back to floor.</source>
<comment>Full measurement description.</comment>
<translation>Altura vertical desde la Cintura Espalda al piso.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="381"/>

View File

@ -403,7 +403,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="365"/>
<source>Vertical height from Waist Back to floor.</source>
<comment>Full measurement description.</comment>
<translation>Distance verticale de la taille dos au sol</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="381"/>
@ -977,7 +977,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="445"/>
<source>Horizontal Distance between a flat stick, placed perpendicular to Heel, and the greatest indentation of Ankle.</source>
<comment>Full measurement description.</comment>
<translation>Distance horizontale entre un support plat placé perpendiculairement au talon et la protubérance de l&apos;os de la cheville.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="655"/>
@ -1073,7 +1073,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="692"/>
<source>Same as bust_arc_f.</source>
<comment>Full measurement description.</comment>
<translation>Identique à bust_arc_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="696"/>
@ -1475,7 +1475,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="858"/>
<source>highbust_arc_half_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>demi_arc_surpoitrine_dos</translation>
<translation>quart_tour_surpoitrinaire_dos</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="860"/>
@ -2177,7 +2177,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="1147"/>
<source>neck_side_to_highbust_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>encolure_cote_surpoitrine_dos</translation>
<translation>encolure_cote_sur_poitrine_dos</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="1149"/>
@ -2825,7 +2825,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="1423"/>
<source>bustpoint_to_waist_front</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>saillantpoitrine_taille_devant</translation>
<translation>pointe_sein_taille</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="1425"/>
@ -3527,7 +3527,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="1822"/>
<source>From Waist Side along curve to Hip level then straight down to Knee level. (&apos;Leg: Waist Side to Floor&apos; - &apos;Height Knee&apos;).</source>
<comment>Full measurement description.</comment>
<translation>Du Côté de la Taille le long de la courbe de la Hanche et jusqu&apos;au genou. (&apos;Jambe :&#xa0;Coté de la Taille jusqu&apos;au genou&apos; - &apos;Genou&apos;).</translation>
<translation>Du Côté de la Taille le long de la courbe de la Hanche et jusqu&apos;au genou. (&apos;Jambe : Coté de la Taille jusqu&apos;au genou&apos; - &apos;Genou&apos;).</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="1862"/>
@ -3807,7 +3807,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="1846"/>
<source>crotch_length_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>longueur_fourche_dos</translation>
<translation>longueur_entrejambe</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="1848"/>
@ -3990,7 +3990,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="1933"/>
<source>waist_natural_arc_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>demi_taille_naturel_devant</translation>
<translation>demi_taille_naturel_dev</translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="1935"/>
@ -4332,19 +4332,19 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="2086"/>
<source>armfold_to_armfold_bust</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>entre_plis_bras_buste</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="2088"/>
<source>Armfold to Armfold, front, curved through Bust Front</source>
<comment>Full measurement name.</comment>
<translation>D&apos;un pli du bras à l&apos;autre en passant par le devant du buste</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="2090"/>
<source>Measure in a curve from Armfold Left Front through Bust Front curved back up to Armfold Right Front.</source>
<comment>Full measurement description.</comment>
<translation>Mesure depuis l&apos;avant du pli du bras gauche jusqu&apos;à l&apos;avant du pli du bras droit en passant par le devant du buste</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="2094"/>
@ -4362,25 +4362,25 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="2097"/>
<source>Measure from Armfold Front to Bust Front, shortest distance between the two, as straight as possible.</source>
<comment>Full measurement description.</comment>
<translation>Mesure de la plus courte distance, aussi droite que possible, entre l&apos;avant du pli du bras et le devant du buste </translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="2101"/>
<source>highbust_b_over_shoulder_to_highbust_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>haut_du_buste_devant_à_haut_du_buste_dos_par_dessus_l&apos;épaule</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="2103"/>
<source>Highbust Back, over Shoulder, to Highbust level</source>
<comment>Full measurement name.</comment>
<translation>surpoitrine dos, au-dessus de l&apos;épaule, arriver niveau surpoitrine</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="2105"/>
<source>From Highbust Back, over Shoulder, then aim at Bustpoint, stopping measurement at Highbust level.</source>
<comment>Full measurement description.</comment>
<translation>Depuis surpoitrine dos, au-dessus de l&apos;épaule, puis viser le saillant de poitrine, en arrêtant la mesure au niveau de la surpoitrine</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="2110"/>

View File

@ -7,361 +7,361 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="207"/>
<source>height</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובע</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="209"/>
<source>Height: Total</source>
<comment>Full measurement name.</comment>
<translation>גובע: סה&quot;כ</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="210"/>
<source>Vertical distance from crown of head to floor.</source>
<comment>Full measurement description.</comment>
<translation>גובה מהקדקוד עד כפות הרגליים</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="214"/>
<source>height_neck_back</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>אורךותן_גב</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="216"/>
<source>Height: Neck Back</source>
<comment>Full measurement name.</comment>
<translation>אורך מותן גב: מהצרוויקלי עד קו המותן</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="217"/>
<source>Vertical distance from the Neck Back (cervicale vertebra) to the floor.</source>
<comment>Full measurement description.</comment>
<translation>גובה מהצרוויקלי עד כפות הרגליים</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="221"/>
<source>height_scapula</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובה_עצם_השכם</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="223"/>
<source>Height: Scapula</source>
<comment>Full measurement name.</comment>
<translation>גובה: עצם השכם</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="224"/>
<source>Vertical distance from the Scapula (Blade point) to the floor.</source>
<comment>Full measurement description.</comment>
<translation>מרחק מהקדקוד של עצם השכם (Scapula) עד הרצפה</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="228"/>
<source>height_armpit</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובהית_השחי</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="230"/>
<source>Height: Armpit</source>
<comment>Full measurement name.</comment>
<translation>גובה: בית השחי</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="231"/>
<source>Vertical distance from the Armpit to the floor.</source>
<comment>Full measurement description.</comment>
<translation>מרחק מבית השחי עד הרצפה</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="235"/>
<source>height_waist_side</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובהותן_צד</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="237"/>
<source>Height: Waist Side</source>
<comment>Full measurement name.</comment>
<translation>גובה: מותן בצד</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="238"/>
<source>Vertical distance from the Waist Side to the floor.</source>
<comment>Full measurement description.</comment>
<translation>גובה המותן בצד עד הרצפה</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="242"/>
<source>height_hip</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובה_ירכיים</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="244"/>
<source>Height: Hip</source>
<comment>Full measurement name.</comment>
<translation>גובה: ירכיים</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="245"/>
<source>Vertical distance from the Hip level to the floor.</source>
<comment>Full measurement description.</comment>
<translation>גובה הרכיים - מגובה הירכיים עד הרצפה</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="249"/>
<source>height_gluteal_fold</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>פנים_הרגל</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="251"/>
<source>Height: Gluteal Fold</source>
<comment>Full measurement name.</comment>
<translation>גובה: פנים הרגל</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="252"/>
<source>Vertical distance from the Gluteal fold, where the Gluteal muscle meets the top of the back thigh, to the floor.</source>
<comment>Full measurement description.</comment>
<translation>גובה מבסיס הגוף עד כפות הרגלייפ</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="256"/>
<source>height_knee</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובה_ברכיים</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="258"/>
<source>Height: Knee</source>
<comment>Full measurement name.</comment>
<translation>גובה ברכיים</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="259"/>
<source>Vertical distance from the fold at the back of the Knee to the floor.</source>
<comment>Full measurement description.</comment>
<translation>גובה מהברך עד כפות הרגליים</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="263"/>
<source>height_calf</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובהוק</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="265"/>
<source>Height: Calf</source>
<comment>Full measurement name.</comment>
<translation>גובה: שוק</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="266"/>
<source>Vertical distance from the widest point of the calf to the floor.</source>
<comment>Full measurement description.</comment>
<translation>גובה מהיקף המקסימלי עד כפות הרגליים</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="270"/>
<source>height_ankle_high</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובה_קרסול</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="272"/>
<source>Height: Ankle High</source>
<comment>Full measurement name.</comment>
<translation>גובה: קרסול</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="273"/>
<source>Vertical distance from the deepest indentation of the back of the ankle to the floor.</source>
<comment>Full measurement description.</comment>
<translation>גובה מהיקף המקסימלי של קרסול עד כפות הרגליים</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="277"/>
<source>height_ankle</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובה_קרסול</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="279"/>
<source>Height: Ankle</source>
<comment>Full measurement name.</comment>
<translation>גובה: קרסול</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="280"/>
<source>Vertical distance from point where the front leg meets the foot to the floor.</source>
<comment>Full measurement description.</comment>
<translation>מרחק אנכי מנקודה בה השוק נפגש עם הרגל ועד כפות הרגליים</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="284"/>
<source>height_highhip</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובה_פשיטת_הבטן</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="286"/>
<source>Height: Highhip</source>
<comment>Full measurement name.</comment>
<translation>גובה: פשיטת הבטן</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="287"/>
<source>Vertical distance from the Highhip level, where front abdomen is most prominent, to the floor.</source>
<comment>Full measurement description.</comment>
<translation>מרחק אנכי מגובה הפשיטה עד כפות הרגליים</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="291"/>
<source>height_waist_front</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובהותן</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="293"/>
<source>Height: Waist Front</source>
<comment>Full measurement name.</comment>
<translation>גובה: מותן</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="294"/>
<source>Vertical distance from the Waist Front to the floor.</source>
<comment>Full measurement description.</comment>
<translation>מרחק אנכי מגובה המותן עד כפות הרגליים</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="298"/>
<source>height_bustpoint</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובהודקוד_חזה</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="300"/>
<source>Height: Bustpoint</source>
<comment>Full measurement name.</comment>
<translation>גובה: קודקוד חזה</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="301"/>
<source>Vertical distance from Bustpoint to the floor.</source>
<comment>Full measurement description.</comment>
<translation>מרחק אנכי מגובה קודקוד חזה עד כפות הרגליים</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="305"/>
<source>height_shoulder_tip</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובה_קצה_הכתף</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="307"/>
<source>Height: Shoulder Tip</source>
<comment>Full measurement name.</comment>
<translation>גובה: קצה הכתף</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="308"/>
<source>Vertical distance from the Shoulder Tip to the floor.</source>
<comment>Full measurement description.</comment>
<translation>מרחק אנכי מגובה קצה הכתף עד כפות הרגליים</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="312"/>
<source>height_neck_front</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובהית_הצוור</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="314"/>
<source>Height: Neck Front</source>
<comment>Full measurement name.</comment>
<translation>גובה: בית הצוור</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="315"/>
<source>Vertical distance from the Neck Front to the floor.</source>
<comment>Full measurement description.</comment>
<translation>מרחק אנכי מגובה בית הצוור עד כפות הרגליים.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="319"/>
<source>height_neck_side</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובה_נקודת_הכתף</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="321"/>
<source>Height: Neck Side</source>
<comment>Full measurement name.</comment>
<translation>גובה: נקודת הכתף</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="322"/>
<source>Vertical distance from the Neck Side to the floor.</source>
<comment>Full measurement description.</comment>
<translation>מרחק אנכי מגובה נקודת הכתף עד כפות הרגליים.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="326"/>
<source>height_neck_back_to_knee</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובה_צרוויקלי_ברך_אחורי</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="328"/>
<source>Height: Neck Back to Knee</source>
<comment>Full measurement name.</comment>
<translation>גובה: צרוויקלי - ברך אחורי</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="329"/>
<source>Vertical distance from the Neck Back (cervicale vertebra) to the fold at the back of the knee.</source>
<comment>Full measurement description.</comment>
<translation>מרחק אנכי מגובה צרוויקלי (cervicale vertebra) לקפל בחלק האחורי של הברך</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="333"/>
<source>height_waist_side_to_knee</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובהותן_צד_לברך</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="335"/>
<source>Height: Waist Side to Knee</source>
<comment>Full measurement name.</comment>
<translation>גובה ממותן צד לברך</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="336"/>
<source>Vertical distance from the Waist Side to the fold at the back of the knee.</source>
<comment>Full measurement description.</comment>
<translation>מרחק אנכי מצד המותניים לקפל בחלק האחורי של הברך.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="341"/>
<source>height_waist_side_to_hip</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>גובהותן_צד_ירך</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="343"/>
<source>Height: Waist Side to Hip</source>
<comment>Full measurement name.</comment>
<translation>גובה: מותן צד עד הירך</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="344"/>
<source>Vertical distance from the Waist Side to the Hip level.</source>
<comment>Full measurement description.</comment>
<translation>מרחק אנכי מצד המותניים לרמת הירך.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="348"/>

View File

@ -403,7 +403,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="365"/>
<source>Vertical height from Waist Back to floor.</source>
<comment>Full measurement description.</comment>
<translation>Altezza verticale dietro dalla vita al pavimento.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="381"/>
@ -1025,37 +1025,37 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="675"/>
<source>highbust_arc_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>Arco_torace_frontale</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="677"/>
<source>Highbust arc, front</source>
<comment>Full measurement name.</comment>
<translation>Arco torace, frontale</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="678"/>
<source>From Highbust Side (Armpit) to HIghbust Side (Armpit) across chest.</source>
<comment>Full measurement description.</comment>
<translation>Da un lato del torace (ascella) all&apos;altro lato del torace (ascella) attraverso il petto.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="682"/>
<source>bust_arc_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>arco_seno_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="684"/>
<source>Bust arc, front</source>
<comment>Full measurement name.</comment>
<translation>Arco seno, frontale</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="685"/>
<source>From Bust Side to Bust Side across chest.</source>
<comment>Full measurement description.</comment>
<translation>Da un lato del busto all&apos;altro attraverso il seno</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="689"/>
@ -1067,343 +1067,343 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="691"/>
<source>Size</source>
<comment>Full measurement name.</comment>
<translation>Taglia</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="692"/>
<source>Same as bust_arc_f.</source>
<comment>Full measurement description.</comment>
<translation>Come arco_seno_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="696"/>
<source>lowbust_arc_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>arco_sottoseno_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="698"/>
<source>Lowbust arc, front</source>
<comment>Full measurement name.</comment>
<translation>Arco sotto il seno, davanti</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="699"/>
<source>From Lowbust Side to Lowbust Side across front.</source>
<comment>Full measurement description.</comment>
<translation>Da un lato sotto il seno all&apos;altro lato davanti</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="703"/>
<source>rib_arc_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>arco_costola_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="705"/>
<source>Rib arc, front</source>
<comment>Full measurement name.</comment>
<translation>Arco tra le costole, davanti</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="706"/>
<source>From Rib Side to Rib Side, across front.</source>
<comment>Full measurement description.</comment>
<translation>Dalla costola di un lato all&apos;altro lato, davanti.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="710"/>
<source>waist_arc_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>arco_vita_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="712"/>
<source>Waist arc, front</source>
<comment>Full measurement name.</comment>
<translation>Arco vita, davanti</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="713"/>
<source>From Waist Side to Waist Side across front.</source>
<comment>Full measurement description.</comment>
<translation>Da una parte all&apos;altra della vita, davanti.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="717"/>
<source>highhip_arc_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>arco_anca_alta_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="719"/>
<source>Highhip arc, front</source>
<comment>Full measurement name.</comment>
<translation>Arco anca alta, davanti.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="720"/>
<source>From Highhip Side to Highhip Side across front.</source>
<comment>Full measurement description.</comment>
<translation>Da un lato dell&apos;anca alta all&apos;altro, davanti.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="724"/>
<source>hip_arc_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>arco_anca_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="726"/>
<source>Hip arc, front</source>
<comment>Full measurement name.</comment>
<translation>Arco anca, davanti.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="727"/>
<source>From Hip Side to Hip Side across Front.</source>
<comment>Full measurement description.</comment>
<translation>Da un lato dell&apos;anca all&apos;altro, davanti.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="731"/>
<source>neck_arc_half_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>mezzo_arco_collo_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="733"/>
<source>Neck arc, front, half</source>
<comment>Full measurement name.</comment>
<translation>Metà arco collo, davanti.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="734"/>
<source>Half of &apos;Neck arc, front&apos;. (&apos;Neck arc, front&apos; / 2).</source>
<comment>Full measurement description.</comment>
<translation>Metà dell&apos;arco del collo, davanti. (Arco collo, davanti / 2).</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="738"/>
<source>highbust_arc_half_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>mezzo_arco_torace_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="740"/>
<source>Highbust arc, front, half</source>
<comment>Full measurement name.</comment>
<translation>Metà arco torace, davanti.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="741"/>
<source>Half of &apos;Highbust arc, front&apos;. From Highbust Front to Highbust Side. (&apos;Highbust arc, front&apos; / 2).</source>
<comment>Full measurement description.</comment>
<translation>Metà dell&apos;arco del torace davanti. Dal centro davanti al lato del torace. (Arco torace, davanti /2).</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="746"/>
<source>bust_arc_half_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>mezzo_arco_seno_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="748"/>
<source>Bust arc, front, half</source>
<comment>Full measurement name.</comment>
<translation>Metà arco seno, davanti.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="749"/>
<source>Half of &apos;Bust arc, front&apos;. (&apos;Bust arc, front&apos;/2).</source>
<comment>Full measurement description.</comment>
<translation>Metà dell&apos;arco del seno, davanti. (&apos;Arco seno, davanti&apos; / 2).</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="753"/>
<source>lowbust_arc_half_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>mezzo_arco_sotto_seno_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="755"/>
<source>Lowbust arc, front, half</source>
<comment>Full measurement name.</comment>
<translation>Metà arco sotto seno, davanti.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="756"/>
<source>Half of &apos;Lowbust arc, front&apos;. (&apos;Lowbust Arc, front&apos; / 2).</source>
<comment>Full measurement description.</comment>
<translation>Metà dell&apos;arco sotto il seno, davanti&apos; (&apos;Arco sotto il seno, davanti&apos;/2)</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="760"/>
<source>rib_arc_half_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>mezzo_arco_costola_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="762"/>
<source>Rib arc, front, half</source>
<comment>Full measurement name.</comment>
<translation>Metà arco costola, davanti.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="763"/>
<source>Half of &apos;Rib arc, front&apos;. (&apos;Rib Arc, front&apos; / 2).</source>
<comment>Full measurement description.</comment>
<translation>Metà dell&apos;&apos;arco tra le costole, davanti&apos;. (&apos;Arco tra le costole, davanti&apos;/2)</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="767"/>
<source>waist_arc_half_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>mezzo_arco_vita_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="769"/>
<source>Waist arc, front, half</source>
<comment>Full measurement name.</comment>
<translation>Metà arco vita, davanti.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="770"/>
<source>Half of &apos;Waist arc, front&apos;. (&apos;Waist arc, front&apos; / 2).</source>
<comment>Full measurement description.</comment>
<translation>metà dell&apos;arco vita, davanti&apos; (&apos;Arco vita, davanti&apos;/2)</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="774"/>
<source>highhip_arc_half_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>mezzo_arco_anca_alta_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="776"/>
<source>Highhip arc, front, half</source>
<comment>Full measurement name.</comment>
<translation>Metà arco anca alta, davanti.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="777"/>
<source>Half of &apos;Highhip arc, front&apos;. (&apos;Highhip arc, front&apos; / 2).</source>
<comment>Full measurement description.</comment>
<translation>Metò dell&apos;arco anca alta, davanti. (&apos;Arco anca alta, davanti./2).</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="781"/>
<source>hip_arc_half_f</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>mezzo_arco_fianco_f</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="783"/>
<source>Hip arc, front, half</source>
<comment>Full measurement name.</comment>
<translation>Metà arco fianco, davanti.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="784"/>
<source>Half of &apos;Hip arc, front&apos;. (&apos;Hip arc, front&apos; / 2).</source>
<comment>Full measurement description.</comment>
<translation>Metà dell&apos;arco del fianco, davanti. (&apos;Arco del fianco, davanti&apos;/2)</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="788"/>
<source>neck_arc_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>arco_collo_b</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="790"/>
<source>Neck arc, back</source>
<comment>Full measurement name.</comment>
<translation>Arco collo, dietro.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="791"/>
<source>From Neck Side to Neck Side across back. (&apos;Neck circumference&apos; - &apos;Neck arc, front&apos;).</source>
<comment>Full measurement description.</comment>
<translation>Da un lato all&apos;altro del collo passando per il dietro.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="796"/>
<source>highbust_arc_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>arco_torace_dietro</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="798"/>
<source>Highbust arc, back</source>
<comment>Full measurement name.</comment>
<translation>Arco torace, dietro.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="799"/>
<source>From Highbust Side to Highbust Side across back. (&apos;Highbust circumference&apos; - &apos;Highbust arc, front&apos;).</source>
<comment>Full measurement description.</comment>
<translation>Da un lato all&apos;altro del torace attraverso il dietro. (&apos;Circonferenza torace&apos;-&apos;Arco torace, frontale&apos;)</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="803"/>
<source>bust_arc_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>arco_seno_b</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="805"/>
<source>Bust arc, back</source>
<comment>Full measurement name.</comment>
<translation>Arco busto, dietro.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="806"/>
<source>From Bust Side to Bust Side across back. (&apos;Bust circumference&apos; - &apos;Bust arc, front&apos;).</source>
<comment>Full measurement description.</comment>
<translation>Da un lato all&apos;altro del busto attraverso la schiena. (&apos;Circonferenza seno&apos;-&apos;Arco seno, frontale&apos;)</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="811"/>
<source>lowbust_arc_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>arco_sottoseno_b</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="813"/>
<source>Lowbust arc, back</source>
<comment>Full measurement name.</comment>
<translation>Arco sotto il seno, dietro.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="814"/>
<source>From Lowbust Side to Lowbust Side across back. (&apos;Lowbust circumference&apos; - &apos;Lowbust arc, front&apos;).</source>
<comment>Full measurement description.</comment>
<translation>Da un lato all&apos;altro sotto il seno attraverso la schiena. (&apos;Circonferenza sottoseno&apos;-&apos;Arco sotto il seno, davanti&apos;)</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="819"/>
<source>rib_arc_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>arco_costola_b</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="821"/>
<source>Rib arc, back</source>
<comment>Full measurement name.</comment>
<translation>Arco tra le costole, dietro.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="822"/>
<source>From Rib Side to Rib side across back. (&apos;Rib circumference&apos; - &apos;Rib arc, front&apos;).</source>
<comment>Full measurement description.</comment>
<translation>Da lato di una costola all&apos;altra attraverso la schiena. (&apos;Circonferenza costole&apos;-&apos;Arco tra le costole, davanti&apos;)</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="827"/>
<source>waist_arc_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>arco_vita_b</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="829"/>
@ -1421,37 +1421,37 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="835"/>
<source>highhip_arc_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>arco_fianco_alto_b</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="837"/>
<source>Highhip arc, back</source>
<comment>Full measurement name.</comment>
<translation>Arco dei fianchi, dietro</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="838"/>
<source>From Highhip Side to Highhip Side across back. (&apos;Highhip circumference&apos; - &apos;Highhip arc, front&apos;).</source>
<comment>Full measurement description.</comment>
<translation>Da un lato del fianco alto all&apos;altro attraverso la schiena. (&apos;Circonferenza fianchi&apos;-&apos;Arco del fianco alto, davanti&apos;)</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="843"/>
<source>hip_arc_b</source>
<comment>Name in a formula. Don&apos;t use math symbols and space in name!!!!</comment>
<translation>arco_fianco_b</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="845"/>
<source>Hip arc, back</source>
<comment>Full measurement name.</comment>
<translation>Arco fianchi dietro</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="846"/>
<source>From Hip Side to Hip Side across back. (&apos;Hip circumference&apos; - &apos;Hip arc, front&apos;).</source>
<comment>Full measurement description.</comment>
<translation>Da un lato del fianco all&apos;altro attraverso la schiena. (&apos;Circonferenza fianchi&apos;-&apos;Arco fianco, davanti&apos;)</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="851"/>

View File

@ -403,7 +403,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="365"/>
<source>Vertical height from Waist Back to floor.</source>
<comment>Full measurement description.</comment>
<translation>Verticale afstand vanaf de rugkant van de taille naar de vloer</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="381"/>

File diff suppressed because it is too large Load Diff

View File

@ -403,7 +403,7 @@
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="365"/>
<source>Vertical height from Waist Back to floor.</source>
<comment>Full measurement description.</comment>
<translation>Altura vertical da parte de trás da cintura até o chão</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../src/libs/vpatterndb/vtranslatemeasurements.cpp" line="381"/>

Some files were not shown because too many files have changed in this diff Show More