diff --git a/config/software/packages.json b/config/software/packages.json index 04d3268570f..06c041d81fe 100644 --- a/config/software/packages.json +++ b/config/software/packages.json @@ -1,6 +1,5 @@ { "core": "A library for creating made-to-measure sewing patterns", - "i18n": "Translations for the FreeSewing project", "models": "Body measurements data for a range of default sizes", "new-design": "Initializer package for a new FreeSewing design: npx @freesewing/new-design", "prettier-config": "FreeSewing's shared configuration for prettier", diff --git a/packages/i18n/.travis.yml b/packages/i18n/.travis.yml deleted file mode 100644 index 5b1c5ed5cb6..00000000000 --- a/packages/i18n/.travis.yml +++ /dev/null @@ -1,8 +0,0 @@ -language: node_js -node_js: - - "node" -install: - - npm install - - npm run build -script: - - npm run test diff --git a/packages/i18n/CHANGELOG.md b/packages/i18n/CHANGELOG.md deleted file mode 100644 index 83ebd21c46a..00000000000 --- a/packages/i18n/CHANGELOG.md +++ /dev/null @@ -1,214 +0,0 @@ -# Change log for: @freesewing/i18n - - -## 2.21.0 (2022-06-27) - -### Changed - - - Migrated from Rollup to Esbuild for all builds - -### Fixed - - - Added missing lab namespace for English - -## 2.20.2 (2022-01-27) - -### Fixed - - - Patterns options were always in English due to symlinks being used - -## 2.20.0 (2022-01-24) - -### Fixed - - - Fixed issue that was causing plugin translations to always be in English - -## 2.19.0 (2021-10-17) - -### Fixed - - - Fixed bug in resolving of shared pattern options - - Removed optional chaining which broke node v12 support - -## 2.18.0 (2021-09-09) - -### Added - - - Added translations for Yuri - -### Fixed - - - Added optional chaining so missing options always lead to clear error message - -## 2.17.3 (2021-08-16) - -### Added - - - New translations - -## 2.17.2 (2021-08-15) - -### Added - - - Added new ffsa option for simon & simone - -## 2.17.0 (2021-07-01) - -### Changed - - - Changed antman references to antperson - -## 2.16.2 (2021-05-05) - -### Changed - - - String updates - -## 2.16.1 (2021-05-30) - -### Added - - - New translations for pattern filter - -## 2.16.0 (2021-05-24) - -### Changed - - - Changes to cfp strings - -## 2.15.0 (2021-04-15) - -### Added - - - Added translation for new Titan options - - Added translations for Charlie - -## 2.14.0 (2021-03-07) - -### Added - - - Added translations for Cornelius - -## 2.13.0 (2021-02-13) - -### Added - - - Translation for Hortensia - -## 2.11.0 (2021-01-10) - -### Changed - - - New strings for new features - -### Fixed - - - Type in Simon title - -## 2.10.5 (2020-11-14) - -### Fixed - - - Added missing `cty.` translations to non-English language files - -## 2.9.0 (2020-10-02) - -### Added - - - Added translations for plugin-title - - Added translations for teagan - - Added some translations for the UI - -### Fixed - - - Replaced a few identical files with symlinks - -## 2.7.0 (2020-07-12) - -### Changed - - - Added translations for Titan - - Removed `Circumference` suffix from measurement names - -## 2.6.0 (2020-05-01) - -### Changed - - - Changes to support the renaming of @freesewing/fu to @freesewing/florence - -## 2.5.0 (2020-04-05) - -### Added - - - title, description, and options for Dianna - -## 2.4.6 (2020-03-23) - -### Fixed - - - Fixed an bug in the i18n package - -## 2.4.3 (2020-03-12) - -### Added - - - Added more translations - -## 2.4.2 (2020-03-08) - -### Added - - - Added more strings - -## 2.2.0 (2020-02-22) - -### Added - - - Added translations for Breanna - -### Changed - - - Added/Updated strings for the 2.2 frontend changes - - Changed `Joost De Cock` to `Joost` because spam filters don't like cock - -### Removed - - - Removed the files for homepage translation, and moved that content to markdown - - Removed the files for editor translation, as it is no longer used - -## 2.1.3 (2019-10-18) - -### Added - - - More translated strings - -## 2.1.2 (2019-10-14) - -### Fixed - - - Fixed issue where symlinks were causing all languages to export English strings - -## 2.1.0 (2019-10-06) - -### Added - - - Added translations for Penelope, Waralee, and Simone - -## 2.0.2 (2019-09-06) - -### Added - - - [#90](https://github.com/freesewing/freesewing/issues/90): Added missing option translations for Benjamin, Florent, Sandy, Shin, and Theo - -## 2.0.0 (2019-08-25) - -### Added - - - Initial release - - -This is the **initial release**, and the start of this change log. - -> Prior to version 2, FreeSewing was not a JavaScript project. -> As such, that history is out of scope for this change log. - diff --git a/packages/i18n/README.md b/packages/i18n/README.md deleted file mode 100644 index 867d20c1bd9..00000000000 --- a/packages/i18n/README.md +++ /dev/null @@ -1,354 +0,0 @@ -![FreeSewing](https://static.freesewing.org/banner.png) -

@freesewing/i18n on NPM - License: MIT - Code quality on DeepScan - Open issues tagged pkg:i18n - All Contributors -

Follow @freesewing_org on Twitter - Chat with us on Discord - Become a FreeSewing Patron - Follow @freesewing_org on Twitter -

- -# @freesewing/i18n - -Translations for the FreeSewing project - - -# Languages - -We currently provide translation in 5 languages: - - - English - - German - - Spanish - - French - - Dutch - -## How to use these translations - -We use these translations in our [website repository](https://github.com/freesewing/website) to -translate react components with [react-intl](https://github.com/yahoo/react-intl): - -```js -import { strings } from "@freesewing/i18n"; -import { IntlProvider } from "react-intl"; - -class Base extends React.Component { - render() { - const { language } = this.props; - - return ( - - {...children} - - ) - } -} -``` - -Now all components below will be able to translate messages: - -```js -import React from "react"; -import { FormattedMessage } from "react-intl"; - -const Example = props => { - return

-}; - -export default Example; -``` - -For all details, please refer to -[the react-intl documentation](https://github.com/yahoo/react-intl/wiki). - - -We also use it in our [backend repository](https://github.com/freesewing/website) -to translate the emails we send out to users. - - - -> #### Note: Version 3 is a work in progress -> -> We are working on a new major version (v3) but it is not ready for prime-time. -> For production use, please refer to our v2 packages (the `latest` on NPM) -> or [the `v2` branch in our monorepo](https://github.com/freesewing/freesewing/tree/v2). -> -> We the `main` branch and `next` packages on NPM holds v3 code. But it's alpha for now. - -## What am I looking at? 🤔 - -This repository is our *monorepo* holding all our NPM designs, plugins, other NPM packages, and (web)sites. - -This folder holds: @freesewing/i18n - -If you're not entirely sure what to do or how to start, type this command: - -``` -npm run tips -``` - -> If you don't want to set up a dev environment, you can run it in your browser: -> -> [![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/freesewing/freesewing) -> -> We recommend that you fork our repository and then -> put `gitpod.io/# to start up a browser-based dev environment of your own. - -## About FreeSewing 💀 - -Where the world of makers and developers collide, that's where you'll find FreeSewing. - -If you're a maker, checkout [freesewing.org](https://freesewing.org/) where you can generate -our sewing patterns adapted to your measurements. - -If you're a developer, our documentation is on [freesewing.dev](https://freesewing.dev/). -Our [core library](https://freesewing.dev/reference/api/) is a *batteries-included* toolbox -for parametric design of sewing patterns. But we also provide a range -of [plugins](https://freesewing.dev/reference/plugins/) that further extend the -functionality of the platform. - -If you have NodeJS installed, you can try it right now by running: - -```bash -npx create-freesewing-pattern -``` - -Or, consult our getting started guides -for [Linux](https://freesewing.dev/tutorials/getting-started-linux/), -[MacOS](https://freesewing.dev/tutorials/getting-started-mac/), -or [Windows](https://freesewing.dev/tutorials/getting-started-windows/). - -We also have a [pattern design tutorial](https://freesewing.dev/tutorials/pattern-design/) that -walks you through your first parametric design, -and [a friendly community](https://freesewing.org/community/where/) with -people who can help you when you get stuck. - -## Support FreeSewing: Become a patron 🥰 - -FreeSewing is an open source project run by a community, -and financially supported by our patrons. - -If you feel what we do is worthwhile, and you can spend a few coind without -hardship, then you should [join us and become a patron](https://freesewing.org/community/join). - -## Links 👩‍💻 - - - 💻 Makers website: [freesewing.org](https://freesewing.org) - - 💻 Developers website: [freesewing.dev](https://freesewing.dev) - - 💬 Chat: On Discord via [discord.freesewing.org](https://discord.freesewing.org/) - - ✅ Todo list/Kanban board: On Github via [todo.freesewing.org](https://todo.freesewing.org/) - - 🐦 Twitter: [@freesewing_org](https://twitter.com/freesewing_org) - - 📷 Instagram: [@freesewing_org](https://instagram.com/freesewing_org) - -## License: MIT 🤓 - -© [Joost De Cock](https://github.com/joostdecock). -See [the license file](https://github.com/freesewing/freesewing/blob/develop/LICENSE) for details. - -## Where to get help 🤯 - -Our [chatrooms on Discord](https://chat.freesewing.org/) are the best place to ask questions, -share your feedback, or just hang out. - -If you want to report a problem, please [create an issue](https://github.com/freesewing/freesewing/issues/new). - - - -## Contributors ✨ - -Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Adam Tomkins
Adam Tomkins

📖
Alexandre Ignjatovic
Alexandre Ignjatovic

💻
AlfaLyr
AlfaLyr

💻 🔌 🎨
Andrew James
Andrew James

📖
Anneke
Anneke

📖 🌍
Annie Kao
Annie Kao

📖
Anternative
Anternative

📖
Anthony
Anthony

💬
Ari Grayzel-student
Ari Grayzel-student

💻
Bart
Bart

📖
BenJamesBen
BenJamesBen

💻 📖 🐛
Cameron Dubas
Cameron Dubas

📖
Carsten Biebricher
Carsten Biebricher

📖
Cathy Zoller
Cathy Zoller

📖
Chantal Lapointe
Chantal Lapointe

🌍
Damien PIQUET
Damien PIQUET

💻
Darigov Research
Darigov Research

📖 🤔
David Clegg
David Clegg

🎨 💻
Elena FdR
Elena FdR

📖 📝
Emmanuel Nyachoke
Emmanuel Nyachoke

💻 📖
Enoch Riese
Enoch Riese

💻
EvEkSwed
EvEkSwed

🌍
Fantastik-Maman
Fantastik-Maman

🌍
Forrest O.
Forrest O.

📖
Frédéric
Frédéric

🌍
Glenn Matthews
Glenn Matthews

📖
Greg Sadetsky
Greg Sadetsky

📖
Igor Couto
Igor Couto

🐛
Ikko Ashimine
Ikko Ashimine

📖
Irapeke
Irapeke

🌍
Jacek Sawoszczuk
Jacek Sawoszczuk

📖
Jason Williams
Jason Williams

📖
Jeremy Jackson
Jeremy Jackson

💻
Jeroen Hoek
Jeroen Hoek

📖
Joe Schofield
Joe Schofield

📖
Joebidido
Joebidido

🌍
Joost De Cock
Joost De Cock

🚧
Josh Essman
Josh Essman

📖
Kake
Kake

📖
Kapunahele Wong
Kapunahele Wong

📖
Karen
Karen

📖 📋
Katie McGinley
Katie McGinley

📖
Kieran Klaassen
Kieran Klaassen

💻
Kittycatou
Kittycatou

🌍
Kris
Kris

📖
Kristin Ruben
Kristin Ruben

💻
Loudepeuter
Loudepeuter

🌍
Lucian
Lucian

📋
Luiz Saggioro
Luiz Saggioro

💻
MA-TATAS
MA-TATAS

📖
Marcus
Marcus

🌍
Martin Tribo
Martin Tribo

📖
Nadege Michel
Nadege Michel

⚠️ 📖
Natalia
Natalia

💻 🎨 📝
Nathan Yergler
Nathan Yergler

📖
Nick Dower
Nick Dower

📖 💻 🐛
Nikhil Chelliah
Nikhil Chelliah

📖
OysteinHoiby
OysteinHoiby

💻
Patrick Forringer
Patrick Forringer

🔌
Paul
Paul

📖 📝 🌍
Phillip Thelen
Phillip Thelen

💻
Pixieish
Pixieish

📖
Prof. dr. Sorcha Ní Dhubhghaill
Prof. dr. Sorcha Ní Dhubhghaill

📖
Quentin FELIX
Quentin FELIX

💻 🎨
Rik Hekker
Rik Hekker

🐛
Sam Livingston-Gray
Sam Livingston-Gray

📖
Sanne
Sanne

💻 📖
Sara Latorre
Sara Latorre

🌍
SeaZeeZee
SeaZeeZee

📖 💻
SimonbJohnson
SimonbJohnson

🐛
SirCharlotte
SirCharlotte

🌍
Slylele
Slylele

📖 🌍
Soazillon
Soazillon

🌍
SoneaTheBest
SoneaTheBest

🌍
Stefan Sydow
Stefan Sydow

🌍 📖 💻
Trent Trama
Trent Trama

💻
Tríona
Tríona

📖
Unmutual
Unmutual

📖
Wouter van Wageningen
Wouter van Wageningen

💻 🎨 🔧
amysews
amysews

📖
anna-puk
anna-puk

💻
beautifulsummermoon
beautifulsummermoon

🌍
berce
berce

📖
biou
biou

💻
bobgeorgethe3rd
bobgeorgethe3rd

💻 📖 🎨
brmlyklr
brmlyklr

📖
chri5b
chri5b

💻 ⚠️
dingcycle
dingcycle

🌍
drowned-in-books
drowned-in-books

💬
econo202
econo202

📖
ericamattos
ericamattos

🌍
fightingrabbit
fightingrabbit

💻
gaylyndie
gaylyndie

📖
grimlokason
grimlokason

💻
hellgy
hellgy

🎨
jackseye
jackseye

📖
marckiesel
marckiesel

🌍
marpants
marpants

💻
mergerg
mergerg

📖
mesil
mesil

🐛
starfetch
starfetch

💻 📖 🌍 🎨
timorl
timorl

💻
ttimearl
ttimearl

🖋
tuesgloomsday
tuesgloomsday

📖
valadaptive
valadaptive

💻
viocky
viocky

🌍
woolishboy
woolishboy

💻
yc
yc

🌍
- - - - - - -This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! - diff --git a/packages/i18n/build.mjs b/packages/i18n/build.mjs deleted file mode 100644 index 172f1ae6a46..00000000000 --- a/packages/i18n/build.mjs +++ /dev/null @@ -1 +0,0 @@ -// noop diff --git a/packages/i18n/data.mjs b/packages/i18n/data.mjs deleted file mode 100644 index 50b4cefc85f..00000000000 --- a/packages/i18n/data.mjs +++ /dev/null @@ -1,4 +0,0 @@ -// This file is auto-generated | All changes you make will be overwritten. -export const name = '@freesewing/i18n' -export const version = '3.0.0-alpha.10' -export const data = { name, version } diff --git a/packages/i18n/info.md b/packages/i18n/info.md deleted file mode 100644 index 495e2222f61..00000000000 --- a/packages/i18n/info.md +++ /dev/null @@ -1,52 +0,0 @@ - -# Languages - -We currently provide translation in 5 languages: - - - English - - German - - Spanish - - French - - Dutch - -## How to use these translations - -We use these translations in our [website repository](https://github.com/freesewing/website) to -translate react components with [react-intl](https://github.com/yahoo/react-intl): - -```js -import { strings } from "@freesewing/i18n"; -import { IntlProvider } from "react-intl"; - -class Base extends React.Component { - render() { - const { language } = this.props; - - return ( - - {...children} - - ) - } -} -``` - -Now all components below will be able to translate messages: - -```js -import React from "react"; -import { FormattedMessage } from "react-intl"; - -const Example = props => { - return

-}; - -export default Example; -``` - -For all details, please refer to -[the react-intl documentation](https://github.com/yahoo/react-intl/wiki). - - -We also use it in our [backend repository](https://github.com/freesewing/website) -to translate the emails we send out to users. diff --git a/packages/i18n/package.json b/packages/i18n/package.json deleted file mode 100644 index 30398ca9328..00000000000 --- a/packages/i18n/package.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "name": "@freesewing/i18n", - "version": "3.0.0-alpha.10", - "description": "Translations for the FreeSewing project", - "author": "Joost De Cock (https://github.com/joostdecock)", - "homepage": "https://freesewing.org/", - "repository": "github:freesewing/freesewing", - "license": "MIT", - "bugs": { - "url": "https://github.com/freesewing/freesewing/issues" - }, - "funding": { - "type": "individual", - "url": "https://freesewing.org/patrons/join" - }, - "keywords": [ - "freesewing", - "i18n", - "internationalisation", - "languages", - "localisation", - "translation" - ], - "type": "module", - "module": "dist/index.mjs", - "exports": { - ".": "./dist/index.mjs" - }, - "scripts": { - "build": "node build.mjs", - "clean": "rimraf dist", - "mbuild": "NO_MINIFY=1 node build.mjs", - "symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -", - "test": "echo \"i18n: No tests configured. Perhaps you could write some?\" && exit 0", - "vbuild": "VERBOSE=1 node build.mjs", - "lab": "cd ../../sites/lab && yarn start", - "tips": "node ../../scripts/help.mjs", - "lint": "npx eslint 'src/**' 'tests/*.mjs'", - "prebuild": "node scripts/prebuilder.mjs", - "precibuild_step7": "node scripts/prebuilder.mjs", - "prewbuild": "node scripts/prebuilder.mjs", - "cibuild_step7": "node build.mjs", - "wbuild": "node build.mjs", - "wcibuild_step7": "node build.mjs" - }, - "peerDependencies": {}, - "dependencies": {}, - "devDependencies": { - "js-yaml": "4.1.0", - "recursive-readdir": "^2.2.3" - }, - "files": [ - "dist/*", - "README.md" - ], - "publishConfig": { - "access": "public", - "tag": "next" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=8" - }, - "private": true -} diff --git a/packages/i18n/prebuild/jargon.js b/packages/i18n/prebuild/jargon.js deleted file mode 100644 index b79ac195181..00000000000 --- a/packages/i18n/prebuild/jargon.js +++ /dev/null @@ -1,140 +0,0 @@ -export const jargon_en = { - "basting": "See Basting in the Sewing documentation", - "coverlock": "See Coverlock in the Sewing documentation", - "cutting": "See Cutting in the Sewing documentation", - "darts": "See Darts in the Sewing documentation", - "double welt pockets": "See Double welt pockets in the Sewing documentation", - "ease": "See Ease in the Sewing documentation", - "fabric grain": "See Fabric grain in the Sewing documentation", - "good sides together": "See Good sides together in the Sewing documentation", - "on the fold": "See On the fold in the Sewing documentation", - "hemming": "See Hemming in the Sewing documentation", - "jersey": "See Jersey in the Sewing documentation", - "knit binding": "See Knit binding in the Sewing documentation", - "knit fabric": "See Knit fabric in the Sewing documentation", - "pinning": "See Pinning in the Sewing documentation", - "rayon": "See Rayon in the Sewing documentation", - "seam allowance": "See Seam allowance in the Sewing documentation", - "serger": "See Serger in the Sewing documentation", - "topstitching": "See Topstitching in the Sewing documentation", - "trimming": "See Trimming in the Sewing documentation", - "twin needle": "See Twin needle in the Sewing documentation", - "zig-zag stitch": "See Zig-zag stitch in the Sewing documentation", - "freesewing": "FreeSewing is an open source platform for made-to-measure sewing patterns", - "pattern options": "The pattern options allow you to customize the design of the pattern", - "draft settings": "The draft settings give you control of how a pattern is generated", - "patrons": "Patrons support Freesewing financially. They are loyal supporters who ensure a sustainable future for freesewing.org, our code, our patterns, and our community.", - "msf": "Médecins Sans Frontières/Doctors Without Borders - See msf.org" -} -export const jargon_de = { - "Heften": "Siehe Heften in der Dokumentation zum Nähen", - "Coverlock": "Siehe Coverlock in der Dokumentation zum Nähen", - "Zuschnitt": "Siehe Zuschnitt in der Dokumentation zum Nähen", - "Abnäher": "Abnäher in der Dokumentation zum Nähen", - "Doppelpaspeltaschen": "Siehe Doppelpaspeltasche in der Dokumentation zum Nähen", - "Zugabe": "Siehe Zugabe in der Dokumentation zum Nähen", - "Fadenlauf": "Siehe Fadenlauf in der Dokumentation zum Nähen", - "rechts auf rechts": "Siehe rechts auf rechts in der Dokumentation zum Nähen", - "im Stoffbruch": "Siehe Im Stoffbruch in der Dokumentation zum Nähen", - "Säumen": "Siehe Säumen in der Dokumentation zum Nähen", - "Jersey": "Siehe Jersey in der Dokumentation zum Nähen", - "Kantenabschluss mit Maschenware": "Siehe Kantenabschluss mit Maschenware in der Dokumentation zum Nähen", - "Maschenware": "Siehe Maschenware in der Dokumentation zum Nähen", - "Stecken": "Siehe Stecken in der Dokumentation zum Nähen", - "Rayon": "Siehe Rayon in der Dokumentation zum Nähen", - "Nahtzugabe": "Siehe Nahtzugabe in der Dokumentation zum Nähen", - "Overlock": "Siehe Overlock in der Dokumentation zum Nähen", - "Absteppen": "Siehe Absteppen in der Dokumentation zum Nähen", - "Zurückschneiden": "Siehe Zurückschneiden in der Dokumentation zum Nähen", - "Zwillingsnadel": "Siehe Zwillingsnadel in der Dokumentation zum Nähen", - "Zickzackstich": "Siehe Zickzackstich in der Dokumentation zum Nähen", - "FreeSewing": "FreeSewing ist eine Open-Source Plattform für Schnittmuster nach Maß", - "Schnittmusteroptionen": "Die Schnittmusteroptionen erlauben es dir, das Design des Schnittmusters anzupassen", - "Entwurfseinstellungen": "Mit den Entwurfseinstellungen legst du fest, wie ein Schnittmuster erzeugt wird", - "Förderer": "Förderer unterstützen Freesewing finanziell. Sie sind treue Unterstützer, die für eine nachhaltige Zukunft für freesewing.org, unseren Code, unsere Schnittmuster und unsere Community sorgen.", - "MSF": "Médecins Sans Frontières/Ärzte ohne Grenzen - Siehe msf.org" -} -export const jargon_es = { - "basting": "See Basting in the Sewing documentation", - "coverlock": "See Coverlock in the Sewing documentation", - "cutting": "See Cutting in the Sewing documentation", - "darts": "See Darts in the Sewing documentation", - "double welt pockets": "See Double welt pockets in the Sewing documentation", - "ease": "See Ease in the Sewing documentation", - "fabric grain": "See Fabric grain in the Sewing documentation", - "good sides together": "See Good sides together in the Sewing documentation", - "on the fold": "See On the fold in the Sewing documentation", - "hemming": "See Hemming in the Sewing documentation", - "jersey": "See Jersey in the Sewing documentation", - "knit binding": "See Knit binding in the Sewing documentation", - "knit fabric": "See Knit fabric in the Sewing documentation", - "pinning": "See Pinning in the Sewing documentation", - "rayon": "See Rayon in the Sewing documentation", - "seam allowance": "See Seam allowance in the Sewing documentation", - "serger": "See Serger in the Sewing documentation", - "topstitching": "See Topstitching in the Sewing documentation", - "trimming": "See Trimming in the Sewing documentation", - "twin needle": "See Twin needle in the Sewing documentation", - "zig-zag stitch": "See Zig-zag stitch in the Sewing documentation", - "freesewing": "FreeSewing is an open source platform for made-to-measure sewing patterns", - "pattern options": "The pattern options allow you to customize the design of the pattern", - "draft settings": "The draft settings give you control of how a pattern is generated", - "patrons": "Patrons support Freesewing financially. They are loyal supporters who ensure a sustainable future for freesewing.org, our code, our patterns, and our community.", - "msf": "Médecins Sans Frontières/Doctors Without Borders - See msf.org" -} -export const jargon_fr = { - "bâti": "Voir Bâtir dans la documentation de Couture", - "recouvreuse": "Voir Recouvreuse dans la documentation de Couture", - "coupe": "Voir Coupe dans la documentation de Couture", - "pinces": "Voir Pinces dans la documentation de Couture", - "poche passepoilée": "Voir Poches passepoilées dans la documentation de Couture", - "aisance": "Voir Aisance dans la documentation de Couture", - "droit fil": "Voir Droit fil dans la documentation de Couture", - "endroit contre endroit": "Voir Endroit contre endroit dans la documentation de Couture", - "au pli": "Voir Au pli dans la documentation de couture", - "ourlet": "Voir Ourlet dans la documentation de Couture", - "Jersey": "Voir Jersey dans la documentation de Couture", - "biais de jersey": "Voir Biais de jersey dans la documentation de Couture", - "tissu Maille": "Voir Tissu maille dans la documentation de Couture", - "épingler": "Voir Épingler dans la documentation de Couture", - "rayonne ou viscose": "Voir Rayonne ou Viscose dans la documentation de Couture", - "marge de couture": "Voir Marge de couture dans la documentation de Couture", - "sergeur": "Voir Surgeteuse dans la documentation de Couture", - "surpiqûre": "Voir Surpiqûre dans la documentation de Couture", - "dégarnir": "Voir Dégarnir dans la documentation de Couture", - "aiguilles doubles": "Voir Aiguilles doubles dans la documentation de Couture", - "point zig-zag": "Voir Point zig-zag dans la documentation de Couture", - "freesewing": "FreeSewing est une plate-forme open source pour des patrons de couture sur-mesure", - "options du patron": "Les options de patron vous permettent de personnaliser le design du patron", - "Paramètres de patrons générés": "Les paramètres de patrons générés vous donnent le contrôle de la manière dont un patron est généré", - "patrons": "Les mécènes soutiennent financièrement Freesewing. Ce sont des fidèles soutiens qui assurent un avenir durable à freesewing.org, à notre code, à nos patrons et à notre communauté.", - "MSF": "Médecins Sans Frontières/Doctors Sans Frontières - Voir msf.org" -} -export const jargon_nl = { - "driegen": "Zie Driegen in deDocumentatie naaien", - "coverlock": "Zie Coverlock in deDocumentatie naaien", - "knippen": "Zie Knippen in deDocumentatie naaien", - "nepen": "Zie Nepen in deDocumentatie naaien", - "dubbele paspelzak": "Zie Dubbele paspelzak in deDocumentatie naaien", - "overwijdte": "Zie Overwijdte in deDocumentatie naaien", - "draadrichting": "Zie Draadrichting in deDocumentatie naaien", - "goede kanten op elkaar": "Zie Goede kanten op elkaar bij de Documentatie naaien", - "aan de stofvouw": "Zie Aan de stofvouw bij de Documentatie naaien", - "zomen": "Zie Zomen in deDocumentatie naaien", - "jersey": "Zie Jersey in deDocumentatie naaien", - "jersey biezen": "Zie Jersey biezen in deDocumentatie naaien", - "gebreide stof": "Zie Gebreide stof in deDocumentatie naaien", - "spelden": "Zie Spelden in deDocumentatie naaien", - "rayon": "Zie Rayon in deDocumentatie naaien", - "naadtoeslag": "Zie Naadtoeslag in deDocumentatie naaien", - "serger/overlock": "Zie Serger/Overlock in deDocumentatie naaien", - "sierstiksel": "Zie Sierstiksel in deDocumentatie naaien", - "bijknippen": "Zie Bijknippen in deDocumentatie naaien", - "tweelingnaald": "Zie Tweelingnaald in deDocumentatie naaien", - "zigzagsteek": "Zie Zigzagsteek in deDocumentatie naaien", - "freesewing": "FreeSewing is een open source platform voor naaipatronen op maat", - "patroon opties": "De patroon opties staan je toe het ontwerp van het patroon aan te passen", - "instellingen patroontekening": "De instellingen patroontekening geven je controle over goe een patroon gegenereerd wordt", - "mecenas": "Mecenassen ondersteunen FreeSewing financieel. Het zijn loyale supporters die zorgen voor een duurzame toekomst voor freesewing.org, onze code, onze patronen en onze gemeenschap.", - "msf": "Médecins Sans Frontières/Artsen Zonder Grenzen - Ziemsf.org" -} diff --git a/packages/i18n/prebuild/languages.js b/packages/i18n/prebuild/languages.js deleted file mode 100644 index ee4617e0eb7..00000000000 --- a/packages/i18n/prebuild/languages.js +++ /dev/null @@ -1,7 +0,0 @@ -export const languages = { - "en": "English", - "de": "Deutsch", - "es": "Español", - "fr": "Français", - "nl": "Nederlands" -} \ No newline at end of file diff --git a/packages/i18n/prebuild/locales.js b/packages/i18n/prebuild/locales.js deleted file mode 100644 index 15fb0c24859..00000000000 --- a/packages/i18n/prebuild/locales.js +++ /dev/null @@ -1,7 +0,0 @@ -export const locales = [ - "en", - "de", - "es", - "fr", - "nl" -] \ No newline at end of file diff --git a/packages/i18n/prebuild/strings.js b/packages/i18n/prebuild/strings.js deleted file mode 100644 index ccf11a985b2..00000000000 --- a/packages/i18n/prebuild/strings.js +++ /dev/null @@ -1,7510 +0,0 @@ -export const en = { - "acc.accountRemoved": "Account removed", - "acc.accountRestricted": "Account restricted", - "acc.avatar": "Avatar", - "acc.avatarInfo": "Your avatar or profile picture will be shown on your profile page.", - "acc.avatarTitle": "Set your profile picture", - "acc.bio": "Bio", - "acc.bioInfo": "This is where you can tell other freesewing users a little bit about yourself. This field supports MarkDown, so you can include links. If you have a blog, this is where you link to it so others can discover it.", - "acc.bioTitle": "Write a short bio", - "acc.currentPassword": "Current password", - "acc.email": "E-mail address", - "acc.emailInfo": "The E-mail address linked to your account is important, as it will be used to regain access to your account if you forget your password. Because of this, changing your E-mail address requires confirmation.", - "acc.emailTitle": "Enter the E-mail address you want to link to this account", - "acc.exportYourData": "Export your data", - "acc.exportYourDataInfo": "The EU's General Data Protection (GDPR) ensures your so-called right to data portability — the right to obtain and reuse your personal data for your own purposes, or across different services.", - "acc.exportYourDataTitle": "Click below to download your personal data", - "acc.github": "Github", - "acc.githubInfo": "If you provide your GitHub username, your profile page will contain a link to your Github account, so visitors can discover your code contributions, star you, or follow you.", - "acc.githubTitle": "Fill in your Github username", - "acc.instagramInfo": "If you provide your Instagram username, your profile page will contain a link to your Instagram account, so visitors can discover your pictures, and follow you.", - "acc.instagram": "Instagram", - "acc.instagramTitle": "Fill in your Instagram username", - "acc.languageInfo": "This language choice determines in what language you will receive E-mails from freesewing. It does not determine the language of the website, which can be chosen on every page.", - "acc.language": "Language", - "acc.languageTitle": "Select the language of your choice", - "acc.newPassword": "New password", - "acc.newsletter": "Newsletter", - "acc.newsletterTitle": "Would you like to receive the FreeSewing newsletter?", - "acc.newsletterInfo": "Once every 3 months, we send out our newsletter with honest wholesome content. No tracking, no ads, no nonsense.", - "acc.passwordInfo": "Changing your password requires your current password. Fill that in, then fill in your new password too.", - "acc.password": "Password", - "acc.passwordTitle": "Enter your current password, and your new password", - "acc.patronInfo": "Patrons support Freesewing financially. They are loyal supporters who ensure a sustainable future for freesewing.org, our code, our patterns, and our community.", - "acc.patron": "Patron", - "acc.removeYourAccountInfo": "The EU's General Data Protection (GDPR) ensures your so-called right to data erasure — the right to have your personal data removed.", - "acc.removeYourAccount": "Remove your account", - "acc.removeYourAccountWarning": "This will remove your account, your drafts, your models, and all data we have stored for you. There is no way back from this.", - "acc.resetPasswordInfo": "Enter your new password.", - "acc.resetPassword": "Reset password", - "acc.resetPasswordTitle": "Enter your new password", - "acc.restrictProcessingOfYourDataInfo": "The EU's General Data Protection (GDPR) ensures your so-called right to restrict processing — the right to put a halt on the processing of your data.", - "acc.restrictProcessingOfYourData": "Restrict processing of your data", - "acc.restrictProcessingWarning": "While no data will be removed, this will log you out and freeze your account. Furthermore, you can not undo this on your own, but will have to contact us when you want to restore access to your account.", - "acc.reviewYourConsent": "Review your consent", - "acc.socialInfo": "If you provide your GitHub, Twitter, or Instagram username, your profile page will contain links to your accounts on these sites. This allows freesewing users to follow you there.
We are not contacting any of these sites on your behalf. This is just so that people can connect the dots and know that for example user @joost on freesewing is the same person as user @j__st on twitter.", - "acc.social": "Social", - "acc.socialTitle": "Let people follow you elsewhere", - "acc.twitterInfo": "If you provide your Twitter username, your profile page will contain a link to your Twitter account, so visitors can discover your tweets, and follow you.", - "acc.twitterTitle": "Fill in your Twitter username", - "acc.twitter": "Twitter", - "acc.unitsInfo": "Freesewing supports both the metric system, and imperial measurements.", - "acc.unitsTitle": "Please select the unit system you are most familiar with", - "acc.units": "Units", - "acc.usernameInfo": "Everyone starts with a randomly generated username. That isn't very personal, so you can change your username to something more you. Like your name, or queenoffarts or whatever.", - "acc.usernameTitle": "Please choose your username", - "acc.username": "Username", - "acc.accountIsInactive": "Your account is inactive", - "acc.accountNeedsActivation": "Before you can login, you need to activate your account. Please check your inbox for the registration email and click the link within it.", - "acc.reloadAccount": "Reload account", - "acc.reloadAccountDescription": "This will reload your account data from the backend. It has the same effect as logging out, and then logging in again.", - "app.100PercentCommunity": "100% community", - "app.100PercentFree": "100% free", - "app.100PercentOpenSource": "100% open source", - "app.aboutFreesewing": "About Freesewing", - "app.account": "Account", - "app.accountCreated": "Account created", - "app.actions": "Actions", - "app.allDocumentation": "All documentation", - "app.andThatIsAwesome": "And that is awesome", - "app.applyThisLayout": "Apply this layout", - "app.areYouSureYouWantToContinue": "Are you sure you want to continue?", - "app.askForHelp": "Ask for help", - "app.automatic": "Automatic", - "app.averagePeopleDoNotExist": "Average people don't exist", - "app.awesome": "Awesome", - "app.back": "Back", - "app.becauseThatWouldBeReallyHelpful": "Because that would be really helpful.", - "app.browseBlogposts": "Browse blogposts", - "app.browsePatterns": "Browse patterns", - "app.browseShowcases": "Browse showcases", - "app.butThatCouldChange": "But that could change", - "app.cancel": "Cancel", - "app.changePerson": "Change person", - "app.changePattern": "Change pattern", - "app.chatOnDiscord": "Chat on Discord", - "app.checkInboxClickLinkInConfirmationEmail": "Now check your inbox and click the link in the confirmation Email we've sent you.", - "app.chest": "Chest", - "app.chestInfo": "Breasts require extra measurements. If this person has no breasts, irrelevant measurements will be hidden when configuring them. This has no impact on how patterns are drafted.", - "app.chooseASize": "Choose a size", - "app.chooseAPerson": "Choose a person", - "app.chooseADesign": "Choose a design", - "app.chooseAPattern": "Choose a pattern", - "app.chooseYourOptions": "Choose your options", - "app.close": "Close", - "app.configureLayout": "Configure layout", - "app.configureYourDraft": "Configure your draft", - "app.contactUs": "Contact us", - "app.contentLocaleFallback": "That's why we're showing you the English version instead.", - "app.contents": "Contents", - "app.continue": "Continue", - "app.copiedToClipboard": "Copied to clipboard", - "app.copy": "Copy", - "app.couldYouTranslateThis": "Could you translate this?", - "app.countModelsLackingForPattern": "{count} of your people lack the required measurements to draft {pattern}", - "app.created": "Created", - "app.custom": "Custom", - "app.customSeamAllowance": "Custom seam allowance", - "app.lightMode": "Light mode", - "app.data": "Data", - "app.darkMode": "Dark mode", - "app.default": "Default", - "app.demo": "Demo", - "app.designOptions": "Design options", - "app.designs": "Designs", - "app.docs": "Documentation", - "app.docsFooterMsg": "Documentation is never finished. Hopefully we were able to answer all your questions, but if that's not the case, help is available.", - "app.docsNotFoundMsg": "We were unable to find this documentation, which typically means that it hasn't been written yet.", - "app.docsNotFoundTitle": "This documentation is missing", - "app.documentationForDevelopers": "Documentation for developers", - "app.documentationForEditors": "Documentation for editors", - "app.documentationForTranslators": "Documentation for translators", - "app.documentationOverview": "Documentation overview", - "app.download": "Download", - "app.draft": "Draft", - "app.draftPattern": "Draft {pattern}", - "app.draftPatternForModel": "Draft {pattern} for {model}", - "app.drafts": "Drafts", - "app.draftSettings": "Draft settings", - "app.dragAndDropImageHere": "Drag and drop an image here, or select one manually with the button below", - "app.emailAddress": "E-mail address", - "app.emailWorksToo": "If you don't know your username, you can also use your E-mail address to login", - "app.enterEmailPickPassword": "Enter your E-mail address, and pick a password", - "app.export": "Export", - "app.exportTiledPDF": "Export tiled PDF", - "app.faq": "Frequently asked questions", - "app.fieldRemoved": "{field} removed", - "app.fieldSaved": "{field} saved", - "app.filterByPattern": "Filter by pattern", - "app.filterPatterns": "Filter patterns", - "app.forgotLoginInstructions": "If you don't remember your password, enter your username or E-mail address below and click the Reset password button", - "app.freesewing": "Freesewing", - "app.freesewingOnGithub": "Freesewing on GitHub", - "app.github": "GitHub", - "app.goAheadWeWillWait": "Go ahead, we'll wait.", - "app.goodJob": "Good job", - "app.goodToSeeYouAgain": "Good to see you again {user}", - "app.handle": "Handle", - "app.helpUsTranslate": "Help us translate", - "app.howCanWeHelpYou": "How can we help you?", - "app.howToTakeMeasurements": "How to take measurements", - "app.i18n": "Internationalization", - "app.imperialUnits": "Imperial units (inch)", - "app.instagram": "Instagram", - "app.invalidTldMessage": ".{tld} is not a valid TLD", - "app.joinTheChatMsg": "We have a community on Discord with friendly people you can chat to.", - "app.justAMoment": "Just a moment", - "app.layout": "Layout", - "app.logIn": "Log in", - "app.loginWithProvider": "Log in with {provider}", - "app.logOut": "Log out", - "app.manual": "Manual", - "app.markdownHelp": "MarkDown help", - "app.measurements": "Measurements", - "app.menu": "Menu", - "app.metadata": "Metadata", - "app.metricUnits": "Metric units (cm)", - "app.person": "Person", - "app.people": "People", - "app.nameInfo": "A name helps to keep things apart. You can pick any name you want.", - "app.name": "Name", - "app.addThing": "Add {thing}", - "app.newThing": "New {thing}", - "app.newPatternForModel": "New {pattern} for {model}", - "app.noChanges": "No changes", - "app.no": "No", - "app.noPasswordPolicy": "We don't enforce a password policy", - "app.noSeamAllowance": "No seam allowance", - "app.notAllOfThisContentIsAvailableInLanguage": "Not all of this content is available in English", - "app.notesInfo": "These are your notes. You can write anything you want here", - "app.notes": "Notes", - "app.ohNo": "Oh no!", - "app.oneMoreThing": "One more thing", - "app.options": "Options", - "app.orPayPerYear": "Or pay per year", - "app.other": "Other", - "app.otherThing": "Other {thing}", - "app.ourPatrons": "Our patrons", - "app.ourRevenuePledge": "Our revenue pledge", - "app.patron-2": "Powder monkey", - "app.patron-4": "First mate", - "app.patron-8": "Captain", - "app.patronHelp": "If you have any questions, or would like to make changes to your Patron status, please contact us", - "app.patron": "Patron", - "app.patronPitch": "If you think what we do is worthwhile, and if you can spare a few coins each month without hardship, please support our work", - "app.patronsKeepUsAfloat": "Freesewing is made possible by the financial support of our Patrons. They keep this ship afloat.", - "app.patternInstructions": "Pattern instructions", - "app.patternOptions": "Pattern options", - "app.pattern": "pattern", - "app.sewingPatterns": "Sewing patterns", - "app.patterns": "Patterns", - "app.pendingConfirmation": "Pending confirmation", - "app.perMonth": "Per month", - "app.pleaseEnterAValidEmailAddress": "Please enter a valid E-mail address", - "app.pleaseIncludeTheInformationBelow": "Please include the information below", - "app.preview": "Preview", - "app.privacyNotice": "Privacy notice", - "app.proceedWithCaution": "Proceed with caution", - "app.profile": "Profile", - "app.relatedLinks": "Related links", - "app.remove": "Remove", - "app.removeThing": "Remove {thing}", - "app.reportThisOnGithub": "Report this on GitHub", - "app.requiredMeasurements": "Required measurements", - "app.resendActivationEmailMessage": "Fill in the E-mail address you signed up with, and we'll send you a new confirmation message.", - "app.resendActivationEmail": "Re-send activation E-mail", - "app.resetPassword": "Reset password", - "app.reset": "Reset", - "app.restoreDefaults": "Restore defaults", - "app.restoreDesignDefaults": "Restore design defaults", - "app.restorePatternDefaults": "Restore pattern defaults", - "app.saveDraftToYourAccount": "Save draft to your account", - "app.save": "Save", - "app.searchLanguageMsg": "Every language has its own search index. Since not all our content is translated, you may find more result in the English search.", - "app.searchLanguageTitle": "Can't find what you're looking for?", - "app.search": "Search", - "app.selectAPartToMoveMirrorOrRotate": "Select a part to move, mirror, or rotate", - "app.selectImage": "Select image", - "app.sendAnEmail": "Send an E-mail", - "app.settings": "Settings", - "app.sewingHelp": "Sewing help", - "app.sewingPatternsForNonAveragePeople": "Sewing patterns for non-average people", - "app.share": "Share", - "app.shareFreesewing": "Share FreeSewing", - "app.showcase": "Showcase", - "app.signUpForAFreeAccount": "Sign up for a free account", - "app.signUp": "Sign up", - "app.signupWithProvider": "Sign up with {provider}", - "app.sortByField": "Sort by {field}", - "app.standardSeamAllowance": "Standard seam allowance", - "app.startOver": "Start over", - "app.startTranslatingNowOrRead": "{startTranslatingNow}, or read the {documentationForTranslators} first.", - "app.startTranslatingNow": "Start translating now", - "app.subscribe": "Subscribe", - "app.support": "Support", - "app.supportFreesewing": "Support freesewing", - "app.tellMeMore": "Tell me more", - "app.thanksForYourSupport": "Thanks for your support", - "app.thisContentIsNotAvailableInLanguage": "This content is not available in English", - "app.thisFieldSupportsMarkdown": "This field supports Markdown", - "app.thisPageRequiresAuthentication": "This page requires authentication", - "app.troubleLoggingIn": "Trouble logging in?", - "app.twitter": "Twitter", - "app.txt-footer": "Freesewing is made by a community of contributors
with the financial support of our Patrons", - "app.txt-tier2": "Our most democractically priced tier. It may be less than the price of a latte, but your support means the world to us.", - "app.txt-tier4": "Subscribe to this tier and we'll send some of our much covetted freesewing swag to your home anywhere in the world.", - "app.txt-tier8": "If you don't merely want to support us, but want to see freesewing thrive, this is the tier for you. Also: extra swag.", - "app.txt-tiers": "FreeSewing is fuelled by a voluntary subscription model", - "app.unitsInfo": "Freesewing supports both the metric system and imperial units. Simply pick which one you'd like to use here. (the default is to use the units configured in your account).", - "app.updated": "Updated", - "app.update": "Update", - "app.userHasBeenWithUsSince": "{user} has been with us since {since}", - "app.users": "Users", - "app.weAreValidatingYourConfirmationCode": "We are validating your confirmation code", - "app.weCouldNotValidateYourConfirmationCode": "We could not validate your confirmation code", - "app.weEncounteredAProblem": "We encountered a problem", - "app.weEncourageYouToReportThis": "We encourage you to report this", - "app.welcomeAboard": "Welcome aboard", - "app.welcome": "Welcome", - "app.weNeverShareYourEmail": "We'll never share your email with anyone else", - "app.whatIsThis": "What is this?", - "app.withBreasts": "With breasts", - "app.withoutBreasts": "Without breasts", - "app.yay": "Yay!", - "app.yes": "Yes", - "app.youAreAPatron": "You are a patron", - "app.youAreNotAPatron": "Your are not a patron", - "app.youAreNotLoggedIn": "You are not logged in", - "app.yourRights": "Your rights", - "app.makerDocs": "Maker documentation", - "app.devDocs": "Developer documentation", - "app.slogan": "A JavaScript library for made-to-measure sewing patterns", - "app.getStarted": "Get started", - "app.apiReference": "API Reference", - "app.tutorial": "Tutorial", - "app.editThisPage": "Edit this page", - "app.loginRequiredRedirect": "You were redirected to the login page because {page} requires authentication", - "app.various": "Various", - "app.sewing": "Sewing", - "app.examples": "Examples", - "app.by": "by", - "app.years": "Years", - "app.pricing": "Pricing", - "app.createFirst": "Start by creating a new pattern", - "app.noPattern": "You don't have any patterns (yet). Create a new pattern, then save it to your account.", - "app.modelFirst": "Start by adding measurements", - "app.noModel": "You haven't added any measurements (yet). FreeSewing can generate made-to-measure sewing patterns. But for that, we need measurements.", - "app.noModel2": "So the first thing you should do is add a person, and crack out your measuring tape.", - "app.noUserBrowsingTitle": "You can't just browse all users", - "app.noUserBrowsingText": "We've got thousands of them. Surely you have better things to do?", - "app.usePatternMeasurements": "Use the measurements of the original pattern", - "app.createReplica": "Create a replica", - "app.showDetails": "Show details", - "app.hideDetails": "Hide details", - "app.clickBelowToLogOut": "Click below to log out", - "app.compare": "Compare", - "app.savePattern": "Save pattern", - "app.recreate": "Recreate", - "app.recreateThing": "Recreate {thing}", - "app.recreateThingForPerson": "Recreate {thing} for {person}", - "app.seeYouLaterUser": "See you later {user}", - "app.exportForPrinting": "Export for printing", - "app.exportForEditing": "Export for editing", - "app.startWithNeckTitle": "Start with the neck circumference", - "app.startWithNeckDescription": "Based on your neck circumference, we can help you spot mistakes in your measurements.", - "app.whatYouNeed": "What you need", - "app.fabricOptions": "Fabric options", - "app.cutting": "Cutting", - "app.instructions": "Instructions", - "app.hide": "Hide", - "app.show": "Show", - "app.oneMomentPlease": "One moment please", - "app.loadingMagic": "We are loading the magic", - "app.estimate": "Estimate", - "app.actual": "Actual", - "app.weEstimateYM2B": "We estimate your {measurement} to be around:", - "app.exportAsData": "Export as data", - "app.availablePatterns": "Available patterns", - "app.browseCollection": "Browse collection", - "app.browseYourPatterns": "Browse your patterns", - "app.yourPatterns": "Your patterns", - "app.loginNeededToSavePatternsMsg": "You need to be logged in to save your patterns", - "app.docsForContributors": "Documentation for contributors", - "app.patternDocs": "Pattern documentation", - "app.socialMedia": "Social media", - "app.create": "Create", - "app.browse": "Browse", - "app.patrons": "Patrons", - "app.scrollToTop": "Scroll to top", - "app.sitemap": "Sitemap", - "app.contributeToThing": "Contribute to {thing}", - "app.mtmIsOurJam": "Made-to-measure sewing patterns is what we specialize in", - "app.fitYouDeserve": "You're really missing out if you go for standardized sizes.
So sign up today, and get the fit you deserve.", - "app.supportNag": "FreeSewing is free, but we'd appreciate if you would consider supporting us.", - "app.madeToMeasure": "Made-to-measure", - "app.sizes": "Sizes", - "app.standardSizes": "Standard sizes", - "app.accountRequired": "This feature requires a FreeSewing account", - "app.size": "Size", - "app.switchToThing": "Switch to {thing}", - "app.saveThing": "Save {thing}", - "app.shareThing": "Share {thing}", - "app.link": "Link", - "app.cloneThing": "Clone {thing}", - "app.cloneDescription": "Recreate an exact copy, using the measurements of the original pattern.", - "app.furtherReading": "Further reading", - "app.saveAsNewPattern": "Save As New Pattern", - "app.saveAsNewPattern-txt": "Store (a copy of) this pattern in your FreeSewing account", - "app.exportPattern": "Export pattern", - "app.printPattern": "Print pattern", - "app.exportPattern-txt": "Export a PDF suitable for your printer, or download this pattern in a variety of formats", - "app.editThing": "Edit {thing}", - "app.editPattern-txt": "Load this pattern in the pattern editor", - "app.featureRequiresAccount": "This feature requires a FreeSewing account", - "app.zoom": "Zoom", - "app.zoomIn": "Zoom in", - "app.zoomOut": "Zoom out", - "app.zoom-txt": "Switches between constraining the height or the width of the pattern to fit on your screen", - "app.savePattern-txt": "Store this pattern in your FreeSewing account", - "app.comparePattern": "Compare pattern", - "app.showPattern": "Show pattern", - "app.comparePattern-txt": "Compare your pattern to a range a standard sizes to review possible fitting issues", - "app.recreatePattern": "Recreate pattern", - "app.recreatePattern-txt": "Choose a different person, then recreate this pattern for that person", - "app.editOwnPatternsOnly": "You can only edit your own patterns", - "app.editOwnPatternsOnly-txt": "You cannot edit this pattern because it isn't yours. But you can use it as a baseline to create your own pattern.", - "app.updateNotes-txt": "Update the notes you keep along your pattern", - "app.franceWarning": "Beware users in France", - "app.franceWarning-txt": "Several French E-mail providers — including, free.fr, laposte.net, orange.fr, and sfr.fr — are known to routinely discard our E-mails.", - "app.emailNotReceived": "If you do not receive the activation email, please reach out so we can help you.", - "app.error": "Error", - "app.info": "Info", - "app.warning": "Warning", - "app.debug": "Debug", - "app.unsubscribe": "Unsubscribe", - "app.slogan-come": "Come for the sewing patterns", - "app.slogan-stay": "Stay for the community", - "cfp.author": "Author", - "cfp.githubRepo": "GitHub repository", - "cfp.packageManager": "Package manager", - "cfp.patternName": "Pattern name", - "cfp.patternType": "Pattern type", - "cfp.patternCreated": "Your pattern skeleton has been created at", - "cfp.runTheseCommands": "To get started, run this command", - "cfp.startRollup": "In one terminal, start the rollup bundler in watch mode", - "cfp.startWebpack": "It will enter the 'example' folder, and start the development environment.", - "cfp.devDocsAvailableAt": "Developer documentation is available at", - "cfp.talkToUs": "For questions, feedback or suggestions, join our Discord server", - "cfp.draftYourPattern": "Draft your pattern", - "cfp.testYourPattern": "Test your pattern", - "cfp.draftThing": "Draft {thing}", - "cfp.testThing": "Test {thing}", - "cfp.renderInBrowser": "Click below to render your pattern in the browser.", - "cfp.weWillReRender": "When you make changes, we will re-render for you.", - "cfp.youCan": "You can", - "cfp.enterMeasurements": "Enter measurements by hand", - "cfp.preloadMeasurements": "Preload a set of measurements", - "cfp.size": "Size", - "cfp.noRequiredMeasurements": "This pattern has no required measurements", - "cfp.howtoAddMeasurements": "To require measurements, add them to the measurements section of the pattern's configuration file.", - "cfp.seeDocsAt": "Documentation on this topic is available at", - "cfp.clearDesignMode": "Clear design mode", - "cfp.designMode": "Design mode", - "cfp.exportMode": "Export mode", - "cfp.thingIsEnabled": "{thing} is enabled", - "cfp.thingIsDisabled": "{thing} is disabled", - "cfp.turnOn": "Turn on", - "cfp.turnOff": "Turn off", - "cfp.validNameWarning": "Please pick a different name as this name would cause problems.\nWe (re-)use the pattern name as the NPM package name.\nPackage names must be lowercase and cannot contain special characters.\nSo please name your pattern accordingly, like:", - "designs.aaron.d": "Aaron is an athletic shirt or tank top.", - "designs.aaron.t": "Aaron A-Shirt", - "designs.albert.d": "Albert is an apron.", - "designs.albert.t": "Albert apron", - "designs.bella.d": "Bella is a basic body block for people with breasts.", - "designs.bella.t": "Bella body block", - "designs.benjamin.d": "Benjamin is a bow tie pattern with four different shape options.", - "designs.benjamin.t": "Benjamin bow tie", - "designs.bent.d": "This two-part sleeve block is the basis of our coat and jacket patterns.", - "designs.bent.t": "Bent body Block", - "designs.breanna.d": "Breanna is a basic body block for people with breasts.", - "designs.breanna.t": "Breanna body block", - "designs.brian.d": "Brian is a basic body block for people without breasts.", - "designs.brian.t": "Brian body block", - "designs.bruce.d": "Bruce are comfortable yet stylish boxer briefs.", - "designs.bruce.t": "Bruce boxer briefs", - "designs.carlita.d": "The version for breasts of our Carlton coat, aka Sherlock Holmes coat.", - "designs.carlita.t": "Carlita coat", - "designs.carlton.d": "For Sherlock Holmes cosplay, or just a really nice coat.", - "designs.carlton.t": "Carlton coat", - "designs.cathrin.d": "Cathrin is an underbust corset or waist trainer.", - "designs.cathrin.t": "Cathrin corset", - "designs.charlie.d": "Charlie is a chino trouser pattern.", - "designs.charlie.t": "Charlie chinos", - "designs.cornelius.d": "Cornelius are cycling breeches based on the Keystone drafting method.", - "designs.cornelius.t": "Cornelius cycling breeches", - "designs.diana.d": "Diana is a top with a draped neckline.", - "designs.diana.t": "Diana draped top", - "designs.florent.d": "Florent is a flat cap, a rounded cap with a small stiff brim in front.", - "designs.florent.t": "Florent flat cap", - "designs.florence.d": "Florence is a face mask", - "designs.florence.t": "Florence face mask", - "designs.holmes.d": "For Sherlock Holmes cosplay or just a cute hat", - "designs.holmes.t": "Holmes deerstalker hat", - "designs.hortensia.d": "Hortensia is a handbag", - "designs.hortensia.t": "Hortensia handbag", - "designs.huey.d": "Huey is a zip-up hoodie with optional front pockets.", - "designs.huey.t": "Huey hoodie", - "designs.hugo.d": "Hugo is a hooded jumper with raglan sleeves.", - "designs.hugo.t": "Hugo hoodie", - "designs.jaeger.d": "Jeager is a sport coat style jacket with two buttons and patch pockets.", - "designs.jaeger.t": "Jaeger jacket", - "designs.paco.d": "Paco are casual yet stylish summer pants", - "designs.paco.t": "Paco pants", - "designs.penelope.d": "Penelope is a pencil skirt with or without a vent in the back.", - "designs.penelope.t": "Penelope pencil skirt", - "designs.sandy.d": "Sandy is an adaptable circle skirt pattern", - "designs.sandy.t": "Sandy circle skirt", - "designs.shin.d": "Shin are athletic swim trunks", - "designs.shin.t": "Shin swim trunks", - "designs.simon.d": "Simon is a highly adaptable shirt pattern for people without breasts.", - "designs.simon.t": "Simon shirt", - "designs.simone.d": "Simone is simon, adapted for breasts.", - "designs.simone.t": "Simone shirt", - "designs.sven.d": "Sven is a straightforward sweater.", - "designs.sven.t": "Sven sweatshirt", - "designs.tamiko.d": "Tamiko is a zero-waste top.", - "designs.tamiko.t": "Tamiko top", - "designs.teagan.d": "Teagan is a fitted T-shirt pattern", - "designs.teagan.t": "Teagan T-shirt", - "designs.theo.d": "Theo is a classic trouser pattern.", - "designs.theo.t": "Theo trousers", - "designs.titan.d": "Titan is a dartless unisex trouser block", - "designs.titan.t": "Titan trouser block", - "designs.trayvon.d": "Trayvon is a tie that cuts no corners for a professional result.", - "designs.trayvon.t": "Trayvon tie", - "designs.ursula.d": "Ursula is a basic, highly-customizable underwear pattern", - "designs.ursula.t": "Ursula undies", - "designs.wahid.d": "Wahid is a classic fitted waistcoat.", - "designs.wahid.t": "Wahid waistcoat", - "designs.waralee.d": "Waralee are wrap pants", - "designs.waralee.t": "Waralee wrap pants", - "email.chatWithUs": "Chat with us", - "email.emailchangeActionText": "Confirm your new E-mail address", - "email.emailchangeCopy1": "You requested to change the E-mail address linked to your account at freesewing.org.

Before we do that, you need to confirm your new E-mail address. Please click the link below to do that:", - "email.emailchangeHeaderOpeningLine": "Just making sure we can reach you when needed", - "email.emailchangeHiddenIntro": "Let's confirm your new E-mail address", - "email.emailchangeSubject": "Please confirm your new E-mail address", - "email.emailchangeTitle": "Please confirm your new E-mail address", - "email.emailchangeWhy": "You received this E-mail because you changed the E-mail address linked to your account on freesewing.org", - "email.footerCredits": "Made by joost & contributors with the financial support of our patrons ❤️ ", - "email.footerSlogan": "Freesewing is an open source platform for made-to-measure sewing patterns", - "email.goodbyeCopy1": "If you'd like to share why you're leaving, you can reply to this message.
From our side, we won't bother you again.", - "email.goodbyeHeaderOpeningLine": "Just know that you can always come back", - "email.goodbyeHiddenIntro": "Thank you for giving freesewing a chance", - "email.goodbyeSubject": "Farewell 👋", - "email.goodbyeTitle": "Thank you for giving freesewing a chance", - "email.goodbyeWhy": "You received this E-mail as a final adieu after removing your account on freesewing.org", - "email.joostFromFreesewing": "Joost from Freesewing", - "email.passwordresetActionText": "Re-gain access to your account", - "email.passwordresetCopy1": "You forgot your password for your account at freesewing.org.

Click click the link below to reset your password:", - "email.passwordresetHeaderOpeningLine": "Don't worry, these things happen to all of us", - "email.passwordresetHiddenIntro": "Re-gain access to your account", - "email.passwordresetSubject": "Re-gain access to your account on freesewing.org", - "email.passwordresetTitle": "Reset your password, and re-gain access to your account", - "email.passwordresetWhy": "You received this E-mail because you requested to reset your password on freesewing.org", - "email.questionsJustReply": "If you have any questions, just reply to this E-mail. I'm always happy to help out. 🙂", - "email.signature": "Love,", - "email.signupActionText": "Confirm your E-mail address", - "email.signupCopy1": "Thank you for signing up at freesewing.org.

Before we get started, you need to confirm your E-mail address. Please click the link below to do that:", - "email.signupHeaderOpeningLine": "We're really happy you're joining the freesewing community.", - "email.signupHiddenIntro": "Let's confirm your E-mail address", - "email.signupSubject": "Welcome to freesewing.org", - "email.signupTitle": "Welcome aboard", - "email.signupWhy": "You received this E-mail because you just signed up for an account on freesewing.org", - "errors.404": "The page you are looking for cannot be found", - "errors.confirmationNotFound": "If you arrived at this page via the link in a confirmation Email, we encourage you to report this problem.", - "errors.emailExists": "We already have a user with that Email address. Perhaps you'd like to log in instead?", - "errors.networkError": "Backend or network seems down", - "errors.notAValidImageFormat": "Not a valid image format", - "errors.requestFailedWithStatusCode400": "Request failed", - "errors.requestFailedWithStatusCode401": "Authentication failed", - "errors.requestFailedWithStatusCode403": "Forbidden", - "errors.requestFailedWithStatusCode500": "There was an unexpected problem. Please report this.", - "errors.something": "Something went wrong", - "filter.filter": "Filter", - "filter.department": "Department", - "filter.type": "Type", - "filter.tags": "Tags", - "filter.code": "Code", - "filter.design": "Design", - "filter.difficulty": "Difficulty", - "filter.resetFilter": "Reset filter", - "filter.accessories": "Accessories", - "filter.block": "Block", - "filter.pattern": "Pattern", - "filter.byPattern": "Filter by pattern", - "filter.underwear": "Underwear", - "filter.top": "Top", - "filter.tops": "Tops", - "filter.bottom": "Bottom", - "filter.bottoms": "Bottoms", - "filter.coats": "Coats & jackets", - "filter.swimwear": "Swimwear", - "gdpr.compliant": "Freesewing.org respects your privacy and your rights. We apply the General Data Protection Regulation (GDPR) of the European Union (EU).", - "gdpr.consent": "Consent", - "gdpr.consentForModelData": "Consent for model data", - "gdpr.consentForProfileData": "Consent for profile data", - "gdpr.consentGiven": "Consent given", - "gdpr.consentNotGiven": "Consent not given", - "gdpr.consentWhyAnswer": "Under the GDPR, processing of your personal data requires your consent — in other words, your permission.", - "gdpr.createMyAccount": "Create my account", - "gdpr.furtherReading": "Further reading", - "gdpr.modelQuestion": "Do you give your consent to process your model data?", - "gdpr.modelWarning": "Revoking this consent will lock you out of all your model data, as well as disable functionality that depends on it.", - "gdpr.modelWhatAnswer": "For each model their measurements and breasts settings.", - "gdpr.modelWhatAnswerOptional": "Optional: A model picture and the name that you give your model.", - "gdpr.modelWhatQuestion": "What is model data?", - "gdpr.modelWhyAnswer": "To draft made-to-measure sewing patterns, we need body measurements.", - "gdpr.noConsentNoAccount": "Without this consent, we cannot create your account", - "gdpr.noConsentNoPatterns": "Without this consent, you cannot create any patterns", - "gdpr.noIDoNot": "No, I do not", - "gdpr.openDataInfo": "This data is used to study and understand the human form in all its shapes, so we can get better sewing patterns, and better fitting garments. Even though this data is anonymized, you have the right to object to this.", - "gdpr.openDataQuestion": "Share anonymized measurements as open data", - "gdpr.profileQuestion": "Do you give your consent to process your profile data?", - "gdpr.profileShareAnswer": "No, never.", - "gdpr.profileTimingAnswer": "12 months after your last login, or until you remove your account or revoke this consent.", - "gdpr.profileWarning": "Revoking this consent will trigger the removal of all of your data. It has the exact same affect as removing your account.", - "gdpr.profileWhatAnswerOptional": "Optional: A profile picture, bio, and social media accounts", - "gdpr.profileWhatAnswer": "Your email address, username, and password.", - "gdpr.profileWhatQuestion": "What is profile data?", - "gdpr.profileWhyAnswer": "To authenticate you, contact you when needed, and build a community.", - "gdpr.readMore": "For more information, please read our privacy notice.", - "gdpr.readRights": "For more information, please read up on your rights.", - "gdpr.revokeConsent": "Revoke consent", - "gdpr.shareQuestion": "Do we share it with others?", - "gdpr.timingQuestion": "How long do we keep it?", - "gdpr.whatYouNeedToKnow": "What you need to know", - "gdpr.whyQuestion": "Why do we need it?", - "gdpr.yesIDoObject": "Yes, I do object", - "gdpr.yesIDo": "Yes, I do", - "gdpr.openData": "Note: Freesewing publishes anonymized measurements as open data for scientific research. You have the right to object to this", - "i18n.de": "German", - "i18n.en": "English", - "i18n.es": "Spanish", - "i18n.fr": "French", - "i18n.nl": "Dutch", - "jargon.basting.d": "See Basting in the Sewing documentation", - "jargon.basting.term": "basting", - "jargon.coverlock.d": "See Coverlock in the Sewing documentation", - "jargon.coverlock.term": "coverlock", - "jargon.cutting.d": "See Cutting in the Sewing documentation", - "jargon.cutting.term": "cutting", - "jargon.darts.d": "See Darts in the Sewing documentation", - "jargon.darts.term": "darts", - "jargon.doubleWeltPockets.d": "See Double welt pockets in the Sewing documentation", - "jargon.doubleWeltPockets.term": "double welt pockets", - "jargon.ease.d": "See Ease in the Sewing documentation", - "jargon.ease.term": "ease", - "jargon.fabricGrain.d": "See Fabric grain in the Sewing documentation", - "jargon.fabricGrain.term": "fabric grain", - "jargon.goodSidesTogether.d": "See Good sides together in the Sewing documentation", - "jargon.goodSidesTogether.term": "good sides together", - "jargon.onTheFold.d": "See On the fold in the Sewing documentation", - "jargon.onTheFold.term": "on the fold", - "jargon.hemming.d": "See Hemming in the Sewing documentation", - "jargon.hemming.term": "hemming", - "jargon.jersey.d": "See Jersey in the Sewing documentation", - "jargon.jersey.term": "jersey", - "jargon.knitBinding.d": "See Knit binding in the Sewing documentation", - "jargon.knitBinding.term": "knit binding", - "jargon.knitFabric.d": "See Knit fabric in the Sewing documentation", - "jargon.knitFabric.term": "knit fabric", - "jargon.pinning.d": "See Pinning in the Sewing documentation", - "jargon.pinning.term": "pinning", - "jargon.rayon.d": "See Rayon in the Sewing documentation", - "jargon.rayon.term": "rayon", - "jargon.sa.d": "See Seam allowance in the Sewing documentation", - "jargon.sa.term": "seam allowance", - "jargon.serger.d": "See Serger in the Sewing documentation", - "jargon.serger.term": "serger", - "jargon.topstitching.d": "See Topstitching in the Sewing documentation", - "jargon.topstitching.term": "topstitching", - "jargon.trimming.d": "See Trimming in the Sewing documentation", - "jargon.trimming.term": "trimming", - "jargon.twinNeedle.d": "See Twin needle in the Sewing documentation", - "jargon.twinNeedle.term": "twin needle", - "jargon.zigZag.d": "See Zig-zag stitch in the Sewing documentation", - "jargon.zigZag.term": "zig-zag stitch", - "jargon.freesewing.d": "FreeSewing is an open source platform for made-to-measure sewing patterns", - "jargon.freesewing.term": "freesewing", - "jargon.patternOptions.d": "The pattern options allow you to customize the design of the pattern", - "jargon.patternOptions.term": "pattern options", - "jargon.draftSettings.d": "The draft settings give you control of how a pattern is generated", - "jargon.draftSettings.term": "draft settings", - "jargon.patrons.d": "Patrons support Freesewing financially. They are loyal supporters who ensure a sustainable future for freesewing.org, our code, our patterns, and our community.", - "jargon.patrons.term": "patrons", - "jargon.msf.d": "Médecins Sans Frontières/Doctors Without Borders - See msf.org", - "jargon.msf.term": "msf", - "m.ankle": "Ankle circumference", - "m.biceps": "Biceps circumference", - "m.bustFront": "Bust front", - "m.bustSpan": "Bust span", - "m.chest": "Chest circumference", - "m.crossSeam": "Cross seam", - "m.crossSeamFront": "Cross seam front", - "m.head": "Head circumference", - "m.heel": "Heel circumference", - "m.highBustFront": "High bust front", - "m.highBust": "High bust", - "m.hips": "Hips circumference", - "m.hpsToBust": "HPS to bust", - "m.hpsToWaistBack": "HPS to waist back", - "m.hpsToWaistFront": "HPS to waist front", - "m.inseam": "Inseam", - "m.knee": "Knee circumference", - "m.neck": "Neck circumference", - "m.seat": "Seat circumference", - "m.seatBack": "Seat back", - "m.crotchDepth": "Crotch depth", - "m.shoulderSlope": "Shoulder slope", - "m.shoulderToElbow": "Shoulder to elbow", - "m.shoulderToShoulder": "Shoulder to shoulder", - "m.shoulderToWrist": "Shoulder to wrist", - "m.underbust": "Underbust", - "m.upperLeg": "Upper leg circumference", - "m.waist": "Waist circumference", - "m.waistBack": "Waist back", - "m.waistToFloor": "Waist to floor", - "m.waistToHips": "Waist to hips", - "m.waistToKnee": "Waist to knee", - "m.waistToSeat": "Waist to seat", - "m.waistToUnderbust": "Waist to underbust", - "m.waistToUpperLeg": "Waist to upper leg", - "m.wrist": "Wrist circumference", - "og.advanced": "Advanced", - "og.armhole": "Armhole", - "og.closure": "Closure", - "og.collar": "Collar", - "og.construction": "Construction", - "og.cuffs": "Cuffs", - "og.darts": "Darts", - "og.elastic": "Elastic", - "og.fit": "Fit", - "og.pockets": "Pockets", - "og.preferences": "Preferences", - "og.sleevecap": "Sleevecap", - "og.sleeves": "Sleeves", - "og.style": "Style", - "og.backPockets": "Back pockets", - "og.frontPockets": "Front pockets", - "og.waistband": "Waistband", - "og.fly": "Fly", - "parts.back": "Back", - "parts.backBase": "Back base", - "parts.base": "Base", - "parts.bentBack": "Bent back", - "parts.bentBase": "Bent base", - "parts.bentFront": "Bent front", - "parts.bentSleeve": "Bent sleeve", - "parts.bentTopSleeve": "Bent top sleeve", - "parts.bentUnderSleeve": "Bent under sleeve", - "parts.buttonholePlacket": "Buttonhole placket", - "parts.buttonPlacket": "Button placket", - "parts.collar": "Collar", - "parts.collarStand": "Collar stand", - "parts.cuff": "Cuff", - "parts.fabricTail": "Fabric tail", - "parts.fabricTip": "Fabric tip", - "parts.frontBase": "Front base", - "parts.frontFacing": "Front facing", - "parts.front": "Front", - "parts.frontLeft": "Front left", - "parts.frontLining": "Front lining", - "parts.frontRight": "Front right", - "parts.hoodCenter": "Hood center", - "parts.hood": "Hood", - "parts.hoodSide": "Hood side", - "parts.inset": "Inset", - "parts.interfacingTail": "Interfacing tail", - "parts.interfacingTip": "Interfacing tip", - "parts.liningTail": "Lining tail", - "parts.liningTip": "Lining tip", - "parts.loop": "Loop", - "parts.panel1": "Panel 1", - "parts.panel2": "Panel 2", - "parts.panel3": "Panel 3", - "parts.panel4": "Panel 4", - "parts.panel5": "Panel 5", - "parts.panel6": "Panel 6", - "parts.panels": "Panels", - "parts.pocketBag": "Pocket bag", - "parts.pocketFacing": "Pocket facing", - "parts.pocketInterfacing": "Pocket interfacing", - "parts.pocket": "Pocket", - "parts.pocketWelt": "Pocket welt", - "parts.side": "Side", - "parts.sleeveBase": "Sleeve base", - "parts.sleevecap": "Sleevecap", - "parts.sleevePlacketOverlap": "Sleeve placket overlap", - "parts.sleevePlacketUnderlap": "Sleeve placket underlap", - "parts.sleeve": "Sleeve", - "parts.topSleeve": "Topsleeve", - "parts.top": "Top", - "parts.underCollar": "Under collar", - "parts.underSleeve": "Undersleeve", - "parts.waistband": "Waistband", - "parts.yoke": "Yoke", - "patterns.back": "Back", - "patterns.bottomPanel": "Bottom Panel", - "patterns.buttonholePlacket": "Buttonhole placket", - "patterns.buttonPlacket": "Button placket", - "patterns.collarAndUndercollar": "Collar and Undercollar", - "patterns.collarStand": "Collar stand", - "patterns.cuff": "Cuff", - "patterns.cutOneStripToFinishTheNeckOpening": "Cut one strip to finish the neck opening", - "patterns.cutTwoStripsToFinishTheArmholes": "Cut two strips to finish the armholes", - "patterns.cutUndercollarSlightlySmaller": "Cut undercollar slightly smaller", - "patterns.FrontBackPanel": "Front and Back Panel", - "patterns.front": "Front", - "patterns.frontLeft": "Front left", - "patterns.frontRight": "Front right", - "patterns.fullLengthFromHps": "Full length (from HPS)", - "patterns.handleWidth": "Width of the handles", - "patterns.hello": "Hello", - "patterns.hoodCenter": "Hood center", - "patterns.hoodSide": "Hood side", - "patterns.inset": "Inset", - "patterns.length": "Length", - "patterns.matchHere": "Match fabric along this line", - "patterns.pocketFacing": "Pocket facing", - "patterns.pocket": "Pocket", - "patterns.sideOfTheCollarStand": "Side of the collar stand", - "patterns.sidePanelReinforcement": "Side Reinforcement Panel", - "patterns.sidePanel": "Side Panel", - "patterns.side": "Side", - "patterns.sleevePlacketOverlap": "Sleeve placket overlap", - "patterns.sleevePlacketUnderlap": "Sleeve placket underlap", - "patterns.sleeve": "Sleeve", - "patterns.strap": "Handle", - "patterns.strapLength": "Length of the Handles", - "patterns.vent": "Vent", - "patterns.waistband": "Waistband", - "patterns.width": "Width", - "patterns.yoke": "Yoke", - "patterns.zipperPanel": "Zipper Panel", - "patterns.zipperSize": "Standard zipper size", - "patterns.cut": "Cut", - "patterns.cutOnFoldAndGrainline": "Cut on fold / Grainline", - "patterns.cutOnFold": "Cut on fold", - "patterns.grainline": "Grainline", - "patterns.onFold": "On the fold", - "patterns.supportFreesewingBecomeAPatron": "Support FreeSewing, become a Patron", - "patterns.theBlackOutsideOfThisBoxShouldMeasure": "The outside of this box should measure", - "patterns.theWhiteInsideOfThisBoxShouldMeasure": "The inside of this box should measure", - "settings.advanced.d": "Controls whether or not to display advanced settings and pattern options", - "settings.advanced.t": "Expert mode", - "settings.paperless.d": "Drafts a pattern with all dimensions included so you can transfer it on fabric or another medium without the need to print", - "settings.paperless.t": "Paperless", - "settings.sa.d": "Controls the amount of seam allowance included in your pattern", - "settings.sa.t": "Seam allowance", - "settings.locale.d": "Determines the language used on your pattern", - "settings.locale.t": "Language", - "settings.only.d": "Allows you to control which pattern parts will be included in your pattern", - "settings.only.t": "Contents", - "settings.units.d": "Controls the units used on your pattern", - "settings.units.t": "Units", - "settings.margin.d": "Controls the margin around pattern parts", - "settings.margin.t": "Margin", - "settings.complete.d": "Controls how detailed the pattern is; Either a complete pattern with all details, or a basic outline of the pattern parts", - "settings.complete.t": "Detail", - "settings.layout.d": "Controls how the individual pattern parts are placed on your pattern", - "settings.layout.t": "Layout", - "settings.debug.d": "Enable debug to gain additional info about how your pattern was created", - "settings.debug.t": "Debug", - "becomeAPatron": "Become a patron", - "blog": "Blog", - "collection": "Collection", - "colors": "Colors", - "community": "Community", - "designs": "Designs", - "docs": "Documentation", - "forByMakers": "For/By makers", - "home": "Home", - "inspiration": "Inspiration", - "language": "Language", - "search": "Search", - "showcase": "Showcase", - "support": "Support", - "supportUs": "Support us", - "theme": "Theme", - "makes": "makes", - "onX": "On {{x}}", - "ourX": "Our {{x}}", - "xThis": "{{x}} this", - "yourX": "Your {{x}}", - "note": "Note", - "tip": "Tip", - "warning": "Warning", - "fixme": "Fixme", - "link": "Link", - "related": "Related", - "by": "By", - "developerBlog": "Developer blog", - "made": "Made", - "makerBlog": "Maker blog", - "wrote": "Wrote", - "theme.light": "Light", - "theme.dark": "Dark", - "theme.bureaucrats": "Bureaucrats", - "theme.hax0r": "Hax0r", - "theme.kindergarten": "Kindergarten", - "cutting": "Cutting", - "fabricOptions": "Fabric options", - "instructions": "Instructions", - "patternOptions": "Pattern options", - "requiredMeasurements": "RequiredMeasurements", - "whatYouNeed": "What you need", - "welcome.units": "Select the units you want to use", - "welcome.username": "Pick a username", - "welcome.avatar": "Add a profile picture", - "welcome.bio": "Tell us a little bit about yourself", - "welcome.social": "Let us know where we can follow you", - "welcome.newsletter": "Give us your newsletter preference", - "welcome.letUsSetupYourAccount": "Let us set up your account.", - "welcome.walkYouThrough": "We'll walk you through the following steps:", - "welcome.someOptional": "While all these steps are optional, we recommend you go through them to get the most out of FreeSewing.", - "aaron.armholeDrop.d": "Lower the armhole by this amount. Negative values will raise it.", - "aaron.armholeDrop.t": "Armhole drop", - "aaron.backlineBend.d": "Determines the shape/bend of the back of the armholes.", - "aaron.backlineBend.t": "Back armhole shape", - "aaron.hipsEase.d": "The amount of ease at your hips.", - "aaron.hipsEase.t": "Hips ease", - "aaron.necklineBend.d": "Determines the shape/bend of the neckline at the front.", - "aaron.necklineBend.t": "Neckline shape", - "aaron.necklineDrop.d": "The amount the neck is cutout at the front.", - "aaron.necklineDrop.t": "Neckline drop", - "aaron.shoulderStrapPlacement.d": "Determines whether the shoulder strap is placed closer to the neck (lower numbers) or the shoulder (higher numbers).", - "aaron.shoulderStrapPlacement.t": "Shoulderstrap placement", - "aaron.shoulderStrapWidth.d": "The width of the shoulder straps.", - "aaron.shoulderStrapWidth.t": "Shoulderstrap width", - "aaron.stretchFactor.d": "Determines the horizontal negative ease.", - "aaron.stretchFactor.t": "Stretch", - "albert.backOpening.d": "Controls the opening at the back of the apron", - "albert.backOpening.t": "Back opening", - "albert.chestDepth.d": "Controls the length of the straps", - "albert.chestDepth.t": "Strap length", - "albert.lengthBonus.d": "Controls the length of the apron", - "albert.lengthBonus.t": "Length bonus", - "albert.bibLength.d": "Controls the length of the bib", - "albert.bibLength.t": "Bib length", - "albert.bibWidth.d": "Controls the width of the bib", - "albert.bibWidth.t": "Bib width", - "albert.strapWidth.d": "Controls the width of the strap", - "albert.strapWidth.t": "Strap width", - "bella.chestEase.d": "Controls the amount of ease at the fullest part of your chest", - "bella.chestEase.t": "Chest ease", - "bella.waistEase.d": "Controls the amount of ease at your waist", - "bella.waistEase.t": "Waist ease", - "bella.bustSpanEase.d": "Controls the amount of (horizontal) ease added to your bust span when locating the bust point.", - "bella.bustSpanEase.t": "Bust span ease", - "bella.backDartHeight.d": "Controls the height of the back dart", - "bella.backDartHeight.t": "Back dart height", - "bella.bustDartLength.d": "Controls the length of the bust dart", - "bella.bustDartLength.t": "Bust dart length", - "bella.waistDartLength.d": "Controls the length of the waist dart", - "bella.waistDartLength.t": "Waist dart length", - "bella.bustDartCurve.d": "Controls the curvature of the bust dart", - "bella.bustDartCurve.t": "Bust dart curve", - "bella.armholeDepth.d": "Controls the depth of the armhole", - "bella.armholeDepth.t": "Armhole depth", - "bella.backArmholeSlant.d": "Slightly rotates the armhole around its pitch point", - "bella.backArmholeSlant.t": "Back armhole slant", - "bella.backArmholeCurvature.d": "Controls how deep the armhole is scooped out at the back bottom", - "bella.backArmholeCurvature.t": "Back armhole curvature", - "bella.frontArmholePitchDepth.d": "Tweaks the horizontal placement of the front armhole pitch point", - "bella.frontArmholePitchDepth.t": "Front armhole pitch depth", - "bella.backArmholePitchDepth.d": "Tweaks the horizontal placement of the back armhole pitch point", - "bella.backArmholePitchDepth.t": "Back armhole pitch depth", - "bella.backNeckCutout.d": "Controls how deep the neck opening is scooped out at at the back", - "bella.backNeckCutout.t": "Back neck cutout", - "bella.backHemSlope.d": "Controls the slope of the hem at the back", - "bella.backHemSlope.t": "Back hem slope", - "bella.frontShoulderWidth.d": "Controls the narrowness of the front shoulders relative to the back", - "bella.frontShoulderWidth.t": "Front shoulder width", - "bella.highBustWidth.d": "Allows you to tweak the hight bust width at the front", - "bella.highBustWidth.t": "High bust width", - "benjamin.adjustmentRibbon.d": "Whether or not to include an adjustment ribbon", - "benjamin.adjustmentRibbon.t": "Adjustment ribbon", - "benjamin.bandLength.d": "Length of the band", - "benjamin.bandLength.t": "Band length", - "benjamin.tipWidth.d": "Width of the tips", - "benjamin.tipWidth.t": "Tip width", - "benjamin.knotWidth.d": "Width of the knot", - "benjamin.knotWidth.t": "Knot width", - "benjamin.bowLength.d": "Length of the bow (when knotted)", - "benjamin.bowLength.t": "Bow length", - "benjamin.bowStyle.d": "Style of the bow", - "benjamin.bowStyle.t": "Bow style", - "benjamin.endStyle.d": "Style of the bow ends", - "benjamin.endStyle.t": "End style", - "bent.sleeveBend.d": "Controls the bend of the sleeve at the elbow.", - "bent.sleeveBend.t": "Sleeve bend", - "bent.sleevecapHeight.d": "Controls the height of the sleevecap.", - "bent.sleevecapHeight.t": "Sleevecap height", - "breanna.shoulderDart.d": "Whether or not to inlude a dart at the shoulder to round the back", - "breanna.shoulderDart.t": "Shoulder dart", - "breanna.shoulderDartSize.d": "The size of the shoulder dart", - "breanna.shoulderDartSize.t": "Shoulder dart size", - "breanna.shoulderDartLength.d": "The length of the shoulder dart", - "breanna.shoulderDartLength.t": "Shoulder dart length", - "breanna.waistDart.d": "Whether or not to inlude a dart at the waist to round the back", - "breanna.waistDart.t": "Waist dart", - "breanna.waistDartSize.d": "The size of the waist dart", - "breanna.waistDartSize.t": "Waist dart size", - "breanna.waistDartLength.d": "The length of the waist dart", - "breanna.waistDartLength.t": "Waist dart length", - "breanna.verticalEase.d": "The amount of ease to distribute along the length of the garment", - "breanna.verticalEase.t": "Vertical ease", - "breanna.waistEase.d": "The amount of ease at the waist", - "breanna.waistEase.t": "Waist ease", - "breanna.primaryBustDart.d": "Where to place the bust dart to shape the chest", - "breanna.primaryBustDart.t": "Bust dart", - "breanna.primaryBustDartLength.d": "The length of the bust dart", - "breanna.primaryBustDartLength.t": "Bust dart length", - "breanna.secondaryBustDart.d": "Optionally include a secondary bust dart to distribute the shaping of the chest", - "breanna.secondaryBustDart.t": "Secondary bust dart", - "breanna.secondaryBustDartLength.d": "The length of the secondary bust dart", - "breanna.secondaryBustDartLength.t": "Secondary bust dart length", - "breanna.primaryBustDartShaping.d": "Controls the balance between the main and secondary bust darts", - "breanna.primaryBustDartShaping.t": "Bust darts shaping", - "brian.acrossBackFactor.d": "Controls your across back width as a factor of your shoulder to shoulder measurement.", - "brian.acrossBackFactor.t": "Across back factor", - "brian.armholeDepthFactor.d": "Controls the depth of the armhole. Higher values make a deeper armhole.", - "brian.armholeDepthFactor.t": "Armhole depth factor", - "brian.backNeckCutout.d": "How deep the neck is cut out at the back", - "brian.backNeckCutout.t": "Back neck cutout", - "brian.bicepsEase.d": "The amount of ease at your upper arm. Note that while we try to respect this, fitting the sleeve to the armhole takes precedence over respecting the exact amount of ease.", - "brian.bicepsEase.t": "Biceps ease", - "brian.collarEase.d": "The amount of ease around your neck", - "brian.collarEase.t": "Collar ease", - "brian.chestEase.d": "The amount of ease at your chest.", - "brian.chestEase.t": "Chest ease", - "brian.cuffEase.d": "The amount of ease at your wrist.", - "brian.cuffEase.t": "Cuff ease", - "brian.frontArmholeDeeper.d": "How much do you want the front armhole to be cut out deeper than the back.", - "brian.frontArmholeDeeper.t": "Front armhole extra cutout", - "brian.lengthBonus.d": "The amount to lengthen the garment. A negative value will shorten it.", - "brian.lengthBonus.t": "Length bonus", - "brian.s3Collar.d": "Increase this option to shift the shoulder seam forward on the collar side. Decreasing it shifts it backwards.", - "brian.s3Collar.t": "Shoulder seam shift: collar side", - "brian.s3Armhole.d": "Increase this option to shift the shoulder seam forward on the armhole side. Decreasing it shifts it backwards.", - "brian.s3Armhole.t": "Shoulder seam shift: armhole side", - "brian.shoulderEase.d": "The amount of ease at your shoulder. This increases the shoulder to shoulder distance to accommodate additional layers or thickness.", - "brian.shoulderEase.t": "Shoulder ease", - "brian.shoulderSlopeReduction.d": "The amount by which the shoulder slope is reduced to allow for shoulder padding.", - "brian.shoulderSlopeReduction.t": "Shoulder slope reduction", - "brian.sleeveLengthBonus.d": "The amount to lengthen the sleeve. A negative value will shorten it.", - "brian.sleeveLengthBonus.t": "Sleeve length bonus", - "brian.sleevecapEase.d": "The amount by which the sleevecap seam is longer than the armhole seam.", - "brian.sleevecapEase.t": "Sleevecap ease", - "brian.sleevecapTopFactorX.d": "Controls the horizontal location of the sleevecap top.", - "brian.sleevecapTopFactorX.t": "Sleevecap top X", - "brian.sleevecapTopFactorY.d": "Controls the height of the sleevecap. A higher value results in a higher and more narrow sleevecap.", - "brian.sleevecapTopFactorY.t": "Sleevecap top Y", - "brian.sleevecapBackFactorX.d": "Controls the placement of the sleevecap back pitchpoint on the X-axis (horizontal)", - "brian.sleevecapBackFactorX.t": "Sleevecap back X", - "brian.sleevecapBackFactorY.d": "Controls the placement of the sleevecap back pitchpoint on the Y-axis (vertical)", - "brian.sleevecapBackFactorY.t": "Sleevecap back Y", - "brian.sleevecapFrontFactorX.d": "Controls the placement of the sleevecap front pitchpoint on the X-axis (horizontal)", - "brian.sleevecapFrontFactorX.t": "Sleevecap front X", - "brian.sleevecapFrontFactorY.d": "Controls the placement of the sleevecap front pitchpoint on the Y-axis (vertical)", - "brian.sleevecapFrontFactorY.t": "Sleevecap front Y", - "brian.sleevecapQ1Offset.d": "Controls the curvature of the sleevecap in the first quadrant (front armhole)", - "brian.sleevecapQ1Offset.t": "Sleevecap Q1 offset", - "brian.sleevecapQ2Offset.d": "Controls the curvature of the sleevecap in the second quadrant (front shoulder)", - "brian.sleevecapQ2Offset.t": "Sleevecap Q2 offset", - "brian.sleevecapQ3Offset.d": "Controls the curvature of the sleevecap in the third quadrant (back shoulder)", - "brian.sleevecapQ3Offset.t": "Sleevecap Q3 offset", - "brian.sleevecapQ4Offset.d": "Controls the curvature of the sleevecap in the fourth quadrant (back armhole)", - "brian.sleevecapQ4Offset.t": "Sleevecap Q4 offset", - "brian.sleevecapQ1Spread1.d": "Controls the spread of the sleevecap first quadrant curvature towards the armhole", - "brian.sleevecapQ1Spread1.t": "Sleevecap Q1 downward spread", - "brian.sleevecapQ1Spread2.d": "Controls the spread of the sleevecap first quadrant curvature towards the shoulder", - "brian.sleevecapQ1Spread2.t": "Sleevecap Q1 upward spread", - "brian.sleevecapQ2Spread1.d": "Controls the spread of the sleevecap second quadrant curvature towards the armhole", - "brian.sleevecapQ2Spread1.t": "Sleevecap Q2 downward spread", - "brian.sleevecapQ2Spread2.d": "Controls the spread of the sleevecap second quadrant curvature towards the shoulder", - "brian.sleevecapQ2Spread2.t": "Sleevecap Q2 upward spread", - "brian.sleevecapQ3Spread1.d": "Controls the spread of the sleevecap third quadrant curvature towards the shoulder", - "brian.sleevecapQ3Spread1.t": "Sleevecap Q3 upward spread", - "brian.sleevecapQ3Spread2.d": "Controls the spread of the sleevecap third quadrant curvature towards the armhole", - "brian.sleevecapQ3Spread2.t": "Sleevecap Q3 downward spread", - "brian.sleevecapQ4Spread1.d": "Controls the spread of the sleevecap fourth quadrant curvature towards the shoulder", - "brian.sleevecapQ4Spread1.t": "Sleevecap Q4 upward spread", - "brian.sleevecapQ4Spread2.d": "Controls the spread of the sleevecap fourth quadrant curvature towards the armhole", - "brian.sleevecapQ4Spread2.t": "Sleevecap Q4 downward spread", - "brian.sleeveWidthGuarantee.d": "Controls how much of the sleeve width will be guaranteed. This determines how much we can alter the sleeve width to fit the sleeve in the armhole.", - "brian.sleeveWidthGuarantee.t": "Sleeve width guarantee", - "bruce.bulge.d": "Increase angle to create more room in the front pouch.", - "bruce.bulge.t": "Bulge", - "bruce.legBonus.d": "Extra length to add to the legs.", - "bruce.legBonus.t": "Leg length bonus", - "bruce.rise.d": "Amount to raise the waist. A negative value will lower it.", - "bruce.rise.t": "Rise", - "bruce.stretch.d": "The amount of negative ease.", - "bruce.stretch.t": "Stretch", - "bruce.legStretch.d": "For best results, you want to fit your legs a but more snugly — say no to gaping.", - "bruce.legStretch.t": "Leg stretch", - "bruce.backRise.d": "Percentage by which the waist will be raised at the back.", - "bruce.backRise.t": "Back rise", - "carlita.contour.d": "Controls how sharply the princess seam is contoured.", - "carlita.contour.t": "Contour", - "carlton.seatEase.d": "Amount of ease around your bum", - "carlton.seatEase.t": "Seat ease", - "carlton.pocketPlacementHorizontal.d": "The (horizontal) location of the pockets", - "carlton.pocketPlacementHorizontal.t": "Horizontal pocket placement", - "carlton.pocketPlacementVertical.d": "The (vertical) location of the pockets", - "carlton.pocketPlacementVertical.t": "Vertical pocket placement", - "carlton.collarHeight.d": "Height of the collar", - "carlton.collarHeight.t": "Collar height", - "carlton.length.d": "Total length", - "carlton.length.t": "Length", - "carlton.pocketFlapRadius.d": "The amount by which the pocket flap is rounded", - "carlton.pocketFlapRadius.t": "Pocket flap radius", - "carlton.pocketRadius.d": "The amount by which the pocket is rounded", - "carlton.pocketRadius.t": "Pocket radius", - "carlton.chestPocketHeight.d": "Height of the chest pocket", - "carlton.chestPocketHeight.t": "Chest pocket height", - "carlton.beltWidth.d": "Width of the belt", - "carlton.beltWidth.t": "Belt width", - "carlton.buttonSpacingHorizontal.d": "Horizontal spacing of the buttons, also determines the front closure overlap", - "carlton.buttonSpacingHorizontal.t": "Horizontal button spacing", - "cathrin.panels.d": "The number of panels to draft. More panels are better to fit a curvier model.", - "cathrin.panels.t": "Number of panels", - "cathrin.waistReduction.d": "The amount by which you want the corset to pinch your waist.", - "cathrin.waistReduction.t": "Waist reduction", - "cathrin.backOpening.d": "Opening at the center back closure.", - "cathrin.backOpening.t": "Back opening", - "cathrin.backRise.d": "How much the back panels rise from your arms to your center back.", - "cathrin.backRise.t": "Back rise", - "cathrin.backDrop.d": "How much the back panels lower from your hips towards your center back. Negative values will raise the back.", - "cathrin.backDrop.t": "Back drop", - "cathrin.frontRise.d": "Rise of the front panels at center front, between your breasts. Negative values will lower them.", - "cathrin.frontRise.t": "Front rise", - "cathrin.frontDrop.d": "How much the front panels lower from your hips towards your center front.", - "cathrin.frontDrop.t": "Front drop", - "cathrin.hipRise.d": "How much the side panels rise on your hips.", - "cathrin.hipRise.t": "Hip rise", - "charlie.backPocketHorizontalPlacement.d": "Controls the horizontal placement of the back pocket", - "charlie.backPocketHorizontalPlacement.t": "Back pocket horizontal placement", - "charlie.backPocketVerticalPlacement.d": "Controls the vertical placement of the back pocket", - "charlie.backPocketVerticalPlacement.t": "Back pocket vertical placement", - "charlie.backPocketWidth.d": "Controls the width of the back pocket", - "charlie.backPocketWidth.t": "Back pocket width", - "charlie.backPocketDepth.d": "Controls the depth of the back pocket", - "charlie.backPocketDepth.t": "Back pocket depth", - "charlie.frontPocketSlantDepth.d": "Controls the depth of the (front) pocket slant", - "charlie.frontPocketSlantDepth.t": "Front pocket slant depth", - "charlie.frontPocketSlantWidth.d": "Controls the width of the (front) pocket slant", - "charlie.frontPocketSlantWidth.t": "Front pocket slant width", - "charlie.frontPocketSlantRound.d": "Controls how far from the end of the slant we start rounding into the outseam", - "charlie.frontPocketSlantRound.t": "Front pocket slant round", - "charlie.frontPocketSlantBend.d": "Controls the radius by which we round the pocket slant into the outseam", - "charlie.frontPocketSlantBend.t": "Front pocket slant bend", - "charlie.frontPocketWidth.d": "Controls the width of the front pocket bag", - "charlie.frontPocketWidth.t": "Front pocket width", - "charlie.frontPocketDepth.d": "Controls the depth of the front pocket bag", - "charlie.frontPocketDepth.t": "Front pocket depth", - "charlie.frontPocketFacing.d": "Controls how far the pocket facing extends into the pocket bag", - "charlie.frontPocketFacing.t": "Front pocket facing", - "charlie.beltLoops.d": "Controls the amount of belt loops", - "charlie.beltLoops.t": "Belt loops", - "charlie.flyCurve.d": "Controls the curvature of the fly J-seam", - "charlie.flyCurve.t": "Fly curve", - "charlie.flyLength.d": "Controls the length of the fly", - "charlie.flyLength.t": "Fly length", - "charlie.flyWidth.d": "Controls how far the J-seam of offset from the fly edge", - "charlie.flyWidth.t": "Fly width", - "charlie.waistbandCurve.d": "Controls how curved the waistband is.", - "charlie.waistbandCurve.t": "Waistband Curve", - "cornelius.fullness.d": "Controls the fullness of the breeches", - "cornelius.fullness.t": "Fullness", - "cornelius.waistbandBelowWaist.d": "Percentage to move the waistband below the actual waist", - "cornelius.waistbandBelowWaist.t": "Lower waistband", - "cornelius.waistReduction.d": "Percentage to reduce the waistband", - "cornelius.waistReduction.t": "Waist reduction", - "cornelius.cuffWidth.d": "Width of the leg cuff", - "cornelius.cuffWidth.t": "Cuff width", - "cornelius.cuffStyle.d": "Style of the leg cuff", - "cornelius.cuffStyle.t": "Cuff style", - "cornelius.bandBelowKnee.d": "Controls the cuff distance from the knee", - "cornelius.bandBelowKnee.t": "Cuff below knee", - "cornelius.kneeToBelow.d": "Controls the tightness of the cuff as compared to the knee", - "cornelius.kneeToBelow.t": "Cuff length", - "cornelius.ventLength.d": "Controls the length of the vent between knee and cuff", - "cornelius.ventLength.t": "Vent length", - "diana.shoulderSeamLength.d": "Controls the length of the shoulder seam", - "diana.shoulderSeamLength.t": "Shoulder seam length", - "diana.drapeAngle.d": "Controls the amount of drape", - "diana.drapeAngle.t": "Drape angle", - "florence.height.d": "Controls the height of the face mask", - "florence.height.t": "Height", - "florence.length.d": "Controls the length of the face mask", - "florence.length.t": "Length", - "florence.curve.d": "Controls the curvature of the upper edge of the face mask", - "florence.curve.t": "Curve", - "florent.headEase.d": "The amound of ease around your head", - "florent.headEase.t": "Head ease", - "holmes.lengthRatio.d": "fixme", - "holmes.lengthRatio.t": "Length ratio", - "holmes.goreNumber.d": "The number of gores used to construct the semi-sphere", - "holmes.goreNumber.t": "Number of gores", - "holmes.brimAngle.d": "Controls the curvature of the brim", - "holmes.brimAngle.t": "Brim angle", - "holmes.brimWidth.d": "Controls the width of the brim", - "holmes.brimWidth.t": "Brim width", - "hortensia.size.d": "Controls the overall size of the handbag", - "hortensia.size.t": "Size", - "hortensia.zipperSize.d": "Which size of zipper to use", - "hortensia.zipperSize.t": "Zipper size", - "hortensia.strapLength.d": "Controls the length of the strap", - "hortensia.strapLength.t": "Strap length", - "hortensia.handleWidth.d": "Controls the width of the handle", - "hortensia.handleWidth.t": "Handle width", - "huey.pocket.d": "Whether to include a front pocket or not", - "huey.pocket.t": "Pocket", - "huey.pocketHeight.d": "Controls the height of the pocket", - "huey.pocketHeight.t": "Pocket height", - "huey.hoodHeight.d": "Controls the height of the hood", - "huey.hoodHeight.t": "Hood height", - "huey.hoodCutback.d": "Controls how far the hood opening is cut back", - "huey.hoodCutback.t": "Hood cutback", - "huey.hoodClosure.d": "Controls how much of the hood is part of the front closure", - "huey.hoodClosure.t": "Hood closure", - "huey.hoodDepth.d": "Controls the depth of the hood", - "huey.hoodDepth.t": "Hood depth", - "huey.hoodAngle.d": "Controls the angle at which the hood is attached", - "huey.hoodAngle.t": "Hood angle", - "hugo.hipsEase.d": "The amount of ease at your hips.", - "hugo.hipsEase.t": "Hips ease", - "jaeger.centerBackDart.d": "Dart at the center back of your neck to accommodate a rounded back", - "jaeger.centerBackDart.t": "Center back dart", - "jaeger.sleeveVentLength.d": "Length of the sleeve vent", - "jaeger.sleeveVentLength.t": "Sleeve vent length", - "jaeger.sleeveVentWidth.d": "Width of the sleeve vent", - "jaeger.sleeveVentWidth.t": "Sleeve vent width", - "jaeger.chestShaping.d": "Amount of shaping to accommodate for the chest curve", - "jaeger.chestShaping.t": "Chest shaping", - "jaeger.frontDartPlacement.d": "Location of the front darts", - "jaeger.frontDartPlacement.t": "Front dart placement", - "jaeger.frontOverlap.d": "How far the fabric extends beyond the closing buttons", - "jaeger.frontOverlap.t": "Front overlap", - "jaeger.sideFrontPlacement.d": "The location of the side/front boundary", - "jaeger.sideFrontPlacement.t": "Side/Front placement", - "jaeger.chestPocketDepth.d": "The depth of the chest pocket", - "jaeger.chestPocketDepth.t": "Chest pocket depth", - "jaeger.chestPocketWidth.d": "The width of the chest pocket", - "jaeger.chestPocketWidth.t": "Chest pocket width", - "jaeger.chestPocketPlacement.d": "The location of the chest pocket", - "jaeger.chestPocketPlacement.t": "Chest pocket placement", - "jaeger.chestPocketAngle.d": "The angle under which the chest pocket is placed", - "jaeger.chestPocketAngle.t": "Chest pocket angle", - "jaeger.chestPocketWeltSize.d": "The size of the chest pocket welt", - "jaeger.chestPocketWeltSize.t": "Chest pocket welt size", - "jaeger.frontPocketPlacement.d": "Location of the front pocket", - "jaeger.frontPocketPlacement.t": "Front pocket placement", - "jaeger.frontPocketWidth.d": "The width of the front pocket", - "jaeger.frontPocketWidth.t": "Front pocket width", - "jaeger.frontPocketDepth.d": "The depth of the front pocket", - "jaeger.frontPocketDepth.t": "Front pocket depth", - "jaeger.frontPocketRadius.d": "The radius by which the front pocket is rounded", - "jaeger.frontPocketRadius.t": "Front pocket radius", - "jaeger.innerPocketPlacement.d": "The location of the inner pocket", - "jaeger.innerPocketPlacement.t": "Inner pocket placement", - "jaeger.innerPocketWidth.d": "The width of the inner pocket", - "jaeger.innerPocketWidth.t": "Inner pocket width", - "jaeger.innerPocketDepth.d": "The depth of the inner pocket", - "jaeger.innerPocketDepth.t": "Inner pocket depth", - "jaeger.innerPocketWeltHeight.d": "The height of the inner pocket welt", - "jaeger.innerPocketWeltHeight.t": "Inner pocket welt height", - "jaeger.pocketFoldover.d": "The amount by which the main fabric is folder over into the pocket", - "jaeger.pocketFoldover.t": "Pocket fold-over", - "jaeger.centerFrontHemDrop.d": "The amount by which the hem is lowered towards the center front", - "jaeger.centerFrontHemDrop.t": "Center front hem drop", - "jaeger.backVent.d": "The amount of back vents", - "jaeger.backVent.t": "Back vent", - "jaeger.backVentLength.d": "The length of the back vent(s)", - "jaeger.backVentLength.t": "Back vent length", - "jaeger.buttonLength.d": "The distance over which buttons are spread", - "jaeger.buttonLength.t": "Button length", - "jaeger.frontCutawayAngle.d": "The angle under which the front is cut away towards the hem", - "jaeger.frontCutawayAngle.t": "Front cutaway angle", - "jaeger.frontCutawayStart.d": "The location at which the front starts opening up towards the hem", - "jaeger.frontCutawayStart.t": "Front cutaway start", - "jaeger.frontCutawayEnd.d": "Increasing this will make the front cutaway stay closer to the center front", - "jaeger.frontCutawayEnd.t": "Front cutaway end", - "jaeger.collarSpread.d": "The collar spread controls how the collar drapes over the shoulders", - "jaeger.collarSpread.t": "Collar spread", - "jaeger.lapelStart.d": "Location where the center front goes over into the lapels", - "jaeger.lapelStart.t": "Lapel start", - "jaeger.lapelReduction.d": "How much the tip of the lapels turns inwards", - "jaeger.lapelReduction.t": "Lapel reduction", - "jaeger.collarHeight.d": "Height of the collar", - "jaeger.collarHeight.t": "Collar height", - "jaeger.collarNotchDepth.d": "Depth of the collar notch", - "jaeger.collarNotchDepth.t": "Collar notch depth", - "jaeger.collarNotchAngle.d": "Angle of the collar notch", - "jaeger.collarNotchAngle.t": "Collar notch angle", - "jaeger.collarNotchReturn.d": "How much the collar returns from the notch, in comparison to the lapel", - "jaeger.collarNotchReturn.t": "Collar notch return", - "jaeger.rollLineCollarHeight.d": "How much the roll-line hugs the neck", - "jaeger.rollLineCollarHeight.t": "Roll-line collar height", - "jaeger.hemRadius.d": "The amount by which the hem is rounded", - "jaeger.hemRadius.t": "Hem radius", - "paco.heelEase.d": "The amount of ease at your heel (when stepping into the leg)", - "paco.heelEase.t": "Heel ease", - "paco.frontPockets.d": "Whether or not to add front pockets on the side seam", - "paco.frontPockets.t": "Front pockets", - "paco.backPockets.d": "Whether or not to add welt pockets to the back", - "paco.backPockets.t": "Back pockets", - "paco.elasticatedHem.d": "Whether or not you want an elasticated hem", - "paco.elasticatedHem.t": "Elasticated hem", - "paco.ankleElastic.d": "Width of the (optional) elastic at the ankle/hem", - "paco.ankleElastic.t": "Ankle/Hem elastic width", - "penelope.backDartDepthFactor.d": "How far down does the back dart go from the waistband. This is a factor of the Natural Waist To Seat measurement.", - "penelope.backDartDepthFactor.t": "Back dart depth factor", - "penelope.backVent.d": "Add a vent in the back of the skirt.", - "penelope.backVent.t": "Back vent", - "penelope.backVentLength.d": "Length of the Back Vent as a percentage of the skirt length.", - "penelope.backVentLength.t": "Back vent length", - "penelope.dartToSideSeamFactor.d": "Percentage of how much of the hip to waist reduction has to be taken in by the darts versus the side seam.", - "penelope.dartToSideSeamFactor.t": "Dart to side seam factor", - "penelope.frontDartDepthFactor.d": "How far down does the front dart go from the waistband. This is a factor of the Natural Waist To Seat measurement.", - "penelope.frontDartDepthFactor.t": "Front dart depth factor", - "penelope.hem.d": "The size of the hem. Measurement in absolute values.", - "penelope.hem.t": "Size of the hem", - "penelope.hemBonus.d": "This option will reduce the circumference of the skirt at the hem. Percentage of the Seat measurement.", - "penelope.hemBonus.t": "Hem bonus", - "penelope.lengthBonus.d": "This sets the length of the skirt. Percentage of the Natural Waist to Knee measurement.", - "penelope.lengthBonus.t": "Length bonus", - "penelope.nrOfDarts.d": "The number of darts used in the pattern. Maximum is 2. This option can be reduced by the pattern if the calculations create darts that are too small.", - "penelope.nrOfDarts.t": "Number of darts", - "penelope.seatEase.d": "Amount of ease at the seat level.", - "penelope.seatEase.t": "Seat ease", - "penelope.waistBand.d": "Add a waistband to the pattern.", - "penelope.waistBand.t": "Waist band", - "penelope.waistBandWidth.d": "The width of the waist band.", - "penelope.waistBandWidth.t": "Waist band width", - "penelope.waistEase.d": "Amount of ease at the waist level.", - "penelope.waistEase.t": "Waist ease", - "penelope.zipperLocation.d": "The location of the zipper.", - "penelope.zipperLocation.t": "Zipper location", - "sandy.waistbandWidth.d": "Controls the width of the waistband.", - "sandy.waistbandWidth.t": "Waistband width", - "sandy.waistbandPosition.d": "Controls the position of the waistband.", - "sandy.waistbandPosition.t": "Waistband position", - "sandy.waistbandShape.d": "Whether you want a straight or shaped waistband.", - "sandy.waistbandShape.t": "Waistband shape", - "sandy.circleRatio.d": "The percentage of a circle you want the skirt to be.", - "sandy.circleRatio.t": "Circle ratio", - "sandy.waistbandOverlap.d": "The amount by which the waistband overlaps.", - "sandy.waistbandOverlap.t": "Waistband overlap", - "sandy.gathering.d": "The percent by which the top of the skirt is longer than the bottom of the waistband.", - "sandy.gathering.t": "Gathering", - "sandy.seamlessFullCircle.d": "Enables a seamless full circle skirt.", - "sandy.seamlessFullCircle.t": "Seamless full circle", - "sandy.hemWidth.d": "Width of the hem", - "sandy.hemWidth.t": "Hem width", - "shin.legReduction.d": "Reduces the leg opening to prevent gaping", - "shin.legReduction.t": "Leg reduction", - "simon.backDarts.d": "Whether or not to include back darts", - "simon.backDarts.t": "Back darts", - "simon.backDartShaping.d": "The amount of shaping that is done by the back darts", - "simon.backDartShaping.t": "Back dart shaping", - "simon.barrelCuffNarrowButton.d": "Whether to include a button to tie the cuffs more narrow. This option is only relevant for barrel cuffs.", - "simon.barrelCuffNarrowButton.t": "Cuff narrow button", - "simon.boxPleat.d": "Whether to include a box pleat at the back or not", - "simon.boxPleat.t": "Box pleat", - "simon.boxPleatWidth.d": "The total widh of the box pleat", - "simon.boxPleatWidth.t": "Box pleat width", - "simon.boxPleatFold.d": "The amount by with the box pleat folds inwards", - "simon.boxPleatFold.t": "Box pleat fold", - "simon.buttonPlacketStyle.d": "Style of the button placket.", - "simon.buttonPlacketStyle.t": "Button placket style", - "simon.buttonPlacketWidth.d": "Width of the button placket.", - "simon.buttonPlacketWidth.t": "Button placket width", - "simon.buttonFreeLength.d": "How much of the bottom of the front closure to keep button-free.", - "simon.buttonFreeLength.t": "Button free length", - "simon.buttonholePlacketFoldWidth.d": "Width of the buttonhole placket fold.", - "simon.buttonholePlacketFoldWidth.t": "Buttonhole placket fold width", - "simon.buttonholePlacketStyle.d": "Style of the buttonhole placket.", - "simon.buttonholePlacketStyle.t": "Buttonhole placket style", - "simon.buttonholePlacketWidth.d": "Width of the buttonhole placket.", - "simon.buttonholePlacketWidth.t": "Buttonhole placket width", - "simon.buttons.d": "The number of buttons on the front closure.", - "simon.buttons.t": "Number of buttons", - "simon.collarAngle.d": "The angle of the collar tips.", - "simon.collarAngle.t": "Collar angle", - "simon.collarBend.d": "The bend of the collar.", - "simon.collarBend.t": "Collar bend", - "simon.collarFlare.d": "The flare of the collar tips.", - "simon.collarFlare.t": "Collar flare", - "simon.collarGap.d": "The gap between the the two collar ends.", - "simon.collarGap.t": "Collar gap", - "simon.collarRoll.d": "The amount by which the top collar is larger than the undercollar.", - "simon.collarRoll.t": "Collar roll", - "simon.collarStandBend.d": "The bend of the collar stand.", - "simon.collarStandBend.t": "Collar stand bend", - "simon.collarStandCurve.d": "The curve of the collar stand.", - "simon.collarStandCurve.t": "Collar stand curve", - "simon.collarStandWidth.d": "Width of the collar stand.", - "simon.collarStandWidth.t": "Collar stand width", - "simon.cuffButtonRows.d": "Whether to draft a single or double row of cuff buttons. This option is only relevant for barrel cuffs.", - "simon.cuffButtonRows.t": "Cuff button rows", - "simon.cuffDrape.d": "The amount by which the sleeve is wider than the cuff where the are joined.", - "simon.cuffDrape.t": "Cuff drape", - "simon.cuffLength.d": "The length of the cuffs.", - "simon.cuffLength.t": "Cuff length", - "simon.cuffStyle.d": "The style of the cuffs.", - "simon.cuffStyle.t": "Cuff style", - "simon.extraTopButton.d": "Whether or not to include an extra top button on the front closure.", - "simon.extraTopButton.t": "Extra top button", - "simon.hemCurve.d": "The height of the curve on a curved hem.", - "simon.hemCurve.t": "Hem curve", - "simon.hemStyle.d": "The style of the shirt hem.", - "simon.hemStyle.t": "Hem style", - "simon.roundBack.d": "To fit a round(er) back, this adds length to the center back (at the yoke) that tapers of towards the sides.", - "simon.roundBack.t": "Round back", - "simon.seperateButtonholePlacket.d": "Draft a separate buttonhole placket.", - "simon.seperateButtonholePlacket.t": "Seperate buttonhole placket", - "simon.seperateButtonPlacket.d": "Draft a separate button placket", - "simon.seperateButtonPlacket.t": "Seperate button placket", - "simon.sleevePlacketLength.d": "The length of the sleeve placket.", - "simon.sleevePlacketLength.t": "Sleeve placket length", - "simon.sleevePlacketWidth.d": "The width of the sleeve placket.", - "simon.sleevePlacketWidth.t": "Sleeve placket width", - "simon.splitYoke.d": "Whether to draft a split or regular yoke.", - "simon.splitYoke.t": "Split yoke", - "simon.waistEase.d": "The amount of ease at your (natural) waist.", - "simon.waistEase.t": "Waist ease", - "simon.yokeHeight.d": "Controls the height of the yoke", - "simon.yokeHeight.t": "Yoke height", - "simone.bustDartAngle.d": "Controls the angle by which the (side) bust dart slopes downward", - "simone.bustDartAngle.t": "Bust dart angle", - "simone.bustDartLength.d": "Controls how close the bust dart approaches the bust point", - "simone.bustDartLength.t": "Bust dart length", - "simone.contour.d": "Controls how sharply the extra room for breasts is removed again below the chest", - "simone.contour.t": "Contour", - "simone.frontDarts.d": "Whether to include front darts or not", - "simone.frontDarts.t": "Front darts", - "simone.frontDartLength.d": "Controls how close the front dart approaches the bust point", - "simone.frontDartLength.t": "Front dart length", - "sven.ribbing.d": "Whether to finish the hem and cuffs with ribbing or not.", - "sven.ribbing.t": "Ribbing", - "sven.ribbingHeight.d": "The height of the ribbing on cuffs and hem.", - "sven.ribbingHeight.t": "Ribbing height", - "sven.ribbingStretch.d": "The amount of negative ease to apply to the ribbing used for cuffs and hem.", - "sven.ribbingStretch.t": "Ribbing stretch", - "tamiko.flare.d": "The amount by which the garment flares from your chest downwards", - "tamiko.flare.t": "Flare", - "tamiko.shoulderseamLength.d": "The length of the shoulder seam, as a factor of your shoulder to shoulder measurement", - "tamiko.shoulderseamLength.t": "Shoulder seam length", - "tamiko.shoulderSlope.d": "Controls the angle of the shoulder seams", - "tamiko.shoulderSlope.t": "Shoulder slope", - "teagan.draftForHighBust.d": "Draft the pattern for the high bust measurement (if available) rather than the (full) chest. This will result in a more fitted garment for people with breasts.", - "teagan.draftForHighBust.t": "Draft for high bust", - "teagan.sleeveEase.d": "Amount of ease of your sleeves", - "teagan.sleeveEase.t": "Sleeve ease", - "teagan.sleeveLength.d": "Controls the length of your sleeves", - "teagan.sleeveLength.t": "Sleeve length", - "teagan.necklineBend.d": "Controls the curvature of the neckline.", - "teagan.necklineBend.t": "Neckline curvature", - "teagan.necklineDepth.d": "Controls how deep the neck opening plunges down.", - "teagan.necklineDepth.t": "Neckline depth", - "teagan.necklineWidth.d": "Controls the width of the neck opening.", - "teagan.necklineWidth.t": "Neckline width", - "theo.wedge.d": "Controls the length of the cross seam", - "theo.wedge.t": "Wedge", - "theo.legWidth.d": "Controls the width of the legs", - "theo.legWidth.t": "Leg width", - "titan.kneeEase.d": "Controls the amout of ease at the knee", - "titan.kneeEase.t": "Knee ease", - "titan.waistHeight.d": "Controls the height of the waist, 100% = waist height, 0% = hip height", - "titan.waistHeight.t": "Waist height", - "titan.lengthBonus.d": "Controls the length of the trousers", - "titan.lengthBonus.t": "Length bonus", - "titan.crotchDrop.d": "Lowers the crotch for a more relaxed fit", - "titan.crotchDrop.t": "Crotch drop", - "titan.fitKnee.d": "Fits the legs from based on the knee circumference, rather than seat circumference", - "titan.fitKnee.t": "Fit the knee", - "titan.legBalance.d": "Controls the ratio between front and back panel of the leg", - "titan.legBalance.t": "Leg balance", - "titan.crossSeamCurveStart.d": "Controls how far into the cross seam we start to curve", - "titan.crossSeamCurveStart.t": "Start of the cross seam curve", - "titan.crossSeamCurveBend.d": "Controls the curvature of the cross seam", - "titan.crossSeamCurveBend.t": "Cross seam bend", - "titan.crossSeamCurveAngle.d": "Controls the angle of the cross seam", - "titan.crossSeamCurveAngle.t": "Cross seam angle", - "titan.crotchSeamCurveStart.d": "Controls how far into the crotch seam we start to curve", - "titan.crotchSeamCurveStart.t": "Start of the crotch seam curve", - "titan.crotchSeamCurveBend.d": "Controls the curvature of the crotch seam", - "titan.crotchSeamCurveBend.t": "Crotch seam bend", - "titan.crotchSeamCurveAngle.d": "Controls the angle of the crotch seam", - "titan.crotchSeamCurveAngle.t": "Crotch seam angle", - "titan.waistBalance.d": "Controls the horizontal position of the waist relative to the seat", - "titan.waistBalance.t": "Waist balance", - "titan.waistbandWidth.d": "The width of the waistband", - "titan.waistbandWidth.t": "Waistband width", - "titan.grainlinePosition.d": "Controls the horizontal position of the leg relative to the seat", - "titan.grainlinePosition.t": "Grainline position", - "trayvon.tipWidth.d": "The width of your tie at the tip", - "trayvon.tipWidth.t": "Tip width", - "trayvon.knotWidth.d": "The width of your tie at the knot", - "trayvon.knotWidth.t": "Knot width", - "ursula.fabricStretch.d": "Adjust this for more or less stretchy fabrics", - "ursula.fabricStretch.t": "Fabric stretch", - "ursula.gussetWidth.d": "Controls the width of the gusset", - "ursula.gussetWidth.t": "Gusset width", - "ursula.gussetLength.d": "Controls the length of the gusset", - "ursula.gussetLength.t": "Gusset length", - "ursula.elasticStretch.d": "Adjust this for more or less stretchy elastic", - "ursula.elasticStretch.t": "Elastic stretch", - "ursula.rise.d": "Controls the height of the waist", - "ursula.rise.t": "Rise", - "ursula.legOpening.d": "Controls how high the leg is cut out", - "ursula.legOpening.t": "Leg opening", - "ursula.frontDip.d": "Controls how much the front waist curves (revealing more or less skin)", - "ursula.frontDip.t": "Front waist dip", - "ursula.backDip.d": "Controls how much the back waist curves (revealing more or less skin)", - "ursula.backDip.t": "Back waist dip", - "ursula.taperToGusset.d": "Controls the amount of exposed skin on the front", - "ursula.taperToGusset.t": "Front exposure", - "ursula.backExposure.d": "Controls the amount of exposed skin on the back", - "ursula.backExposure.t": "Back exposure", - "wahid.backScyeDart.d": "The amount to take out in a dart at the back of the armhole.", - "wahid.backScyeDart.t": "Back scye dart", - "wahid.frontScyeDart.d": "The amount to take out in a dart at the front of the armhole.", - "wahid.frontScyeDart.t": "Front scye dart", - "wahid.pocketLocation.d": "Determines the placement of the pocket", - "wahid.pocketLocation.t": "Pocket location", - "wahid.pocketWidth.d": "Determines the width of the pocket", - "wahid.pocketWidth.t": "Pocket width", - "wahid.weltHeight.d": "Determines the height of the welt", - "wahid.weltHeight.t": "Welt height", - "wahid.necklineDrop.d": "Determines how low the neckline drops at the front", - "wahid.necklineDrop.t": "Neckline drop", - "wahid.frontStyle.d": "Style of the neck opening", - "wahid.frontStyle.t": "Neck opening style", - "wahid.hemStyle.d": "Style of the front hem", - "wahid.hemStyle.t": "Hem style", - "wahid.hemRadius.d": "Radius by which the hem is rounded", - "wahid.hemRadius.t": "Hem radius", - "wahid.backInset.d": "How much the back of the armhole is cut inwards", - "wahid.backInset.t": "Back inset", - "wahid.frontInset.d": "How much the front of the armhole is cut inwards", - "wahid.frontInset.t": "Front inset", - "wahid.shoulderInset.d": "How much the shoulder seam is cut inwards at the shoulder", - "wahid.shoulderInset.t": "Shoulder inset", - "wahid.neckInset.d": "How much the shoulder seam is cut inwards at the neck", - "wahid.neckInset.t": "Neck inset", - "wahid.pocketAngle.d": "Angle of the pocket slant", - "wahid.pocketAngle.t": "Pocket angle", - "waralee.backPocket.d": "Whether to include a back pocket or not", - "waralee.backPocket.t": "Back pocket", - "waralee.frontPocket.d": "Whether to include a front pocket or not", - "waralee.frontPocket.t": "Front pocket", - "waralee.hem.d": "Size of the hem at the bottom of the pants", - "waralee.hem.t": "Hem size", - "waralee.waistBand.d": "Size of the waist band", - "waralee.waistBand.t": "Waist Band", - "waralee.waistRaise.d": "How much to raise the waist from the seat depth measurement. This influences the depth of the crotch cut-out.", - "waralee.waistRaise.t": "Waist Raise", - "waralee.crotchBack.d": "The percentage of the seat circumference that the back crotch needs to occupy. This creates more or less space between the side seam and the back.", - "waralee.crotchBack.t": "Crotch Back", - "waralee.crotchFront.d": "The percentage of the seat circumference that the front crotch needs to occupy. This creates more or less space between the side seam and the front.", - "waralee.crotchFront.t": "Crotch Front", - "waralee.crotchFactorBackHor.d": "Used to move the curve of the crotch in the back horizontally", - "waralee.crotchFactorBackHor.t": "Back Crotch Factor Horizontal", - "waralee.crotchFactorBackVer.d": "Used to move the curve of the crotch in the back vertically", - "waralee.crotchFactorBackVer.t": "Back Crotch Factor Vertical", - "waralee.crotchFactorFrontHor.d": "Used to move the curve of the crotch in the front horizontally", - "waralee.crotchFactorFrontHor.t": "Front Crotch Factor Horizontal", - "waralee.crotchFactorFrontVer.d": "Used to move the curve of the crotch in the front vertically", - "waralee.crotchFactorFrontVer.t": "Front Crotch Factor Vertical", - "waralee.waistOverlap.d": "This dicates how much you want the leg flaps to overlap at the waist. A setting of 0 would have them meet at the side seam, and a setting of 100 makes them meet at the front/back.", - "waralee.waistOverlap.t": "Waist Overlap", - "waralee.legShortening.d": "This dictates how long the pants will be. It is a factor of the inseam measurement. The larger the value, the more that will be taken off the length.", - "waralee.legShortening.t": "Leg Shortening", - "waralee.backRaise.d": "This setting raises the waist in the back. Our waist does not sit horizontally, but is angled up at the back. This seting allows you to raise this in the back if you need it for a good fit.", - "waralee.backRaise.t": "Back Raise" -} -export const de = { - "acc.accountRemoved": "Account entfernt", - "acc.accountRestricted": "Account eingeschränkt", - "acc.avatar": "Profilbild", - "acc.avatarInfo": "Dein Avatar oder Profilbild wird auf deiner Profilseite angezeigt.", - "acc.avatarTitle": "Stell dein Profilbild ein", - "acc.bio": "Über mich", - "acc.bioInfo": "Hier kannst du anderen Freesewing-Benutzern etwas über dich erzählen. Dieses Feld unterstützt MarkDown, sodass du auch Links einfügen kannst. Wenn du einen Blog hast, kannst du ihn hier verlinken, damit andere ihn entdecken können.", - "acc.bioTitle": "Schreibe eine kurze Biographie", - "acc.currentPassword": "Derzeitiges Passwort", - "acc.email": "E-Mail-Adresse", - "acc.emailInfo": "Die mit deinem Account verknüpfte E-Mail-Adresse ist wichtig, da sie verwendet wird, um wieder Zugriff auf dein Konto zu erhalten, falls du dein Passwort vergessen solltest. Aus diesem Grund erfordert das Ändern deiner E-Mail-Adresse eine Bestätigung.", - "acc.emailTitle": "Gib die E-Mail-Adresse ein, die du mit diesem Account verknüpfen möchtest", - "acc.exportYourData": "Exportiere deine Daten", - "acc.exportYourDataInfo": "Die Datenschutzgrundverordnung der EU (DSGVO) sichert dein sogenanntes Recht auf Datenportabilität. Dies ist dein Recht darauf, deine Daten zu erhalten und sie für deine eigenen Zwecke oder an anderer Stelle wiederzuverwenden.", - "acc.exportYourDataTitle": "Klicke hier unten, um deine persönlichen Daten herunterzuladen", - "acc.github": "Github", - "acc.githubInfo": "Wenn du deinen GitHub-Benutzernamen angibst, enthält deine Profilseite einen Link zu deinem Github-Konto, sodass Besucher deine Beiträge zum Code entdecken, dich als Favoriten markieren oder dir folgen können.", - "acc.githubTitle": "Gib deinen Github-Benutzernamen ein", - "acc.instagramInfo": "Wenn du deinen Instagram-Benutzernamen angibst, enthält deine Profilseite einen Link zu deinem Instagram-Konto, damit Besucher deine Bilder entdecken und dir folgen können.", - "acc.instagram": "Instagram", - "acc.instagramTitle": "Gib deinen Instagram-Benutzernamen ein", - "acc.languageInfo": "Diese Sprachauswahl bestimmt, in welcher Sprache du E-Mails von Freesewing erhältst. Es bestimmt nicht die Sprache der Website, die auf jeder Seite ausgewählt werden kann.", - "acc.language": "Sprache", - "acc.languageTitle": "Lege die Sprache deiner Wahl fest", - "acc.newPassword": "Neues Passwort", - "acc.newsletter": "Newsletter", - "acc.newsletterTitle": "Würdest du gerne den FreeSewing-Newsletter erhalten?", - "acc.newsletterInfo": "Alle drei Monate versenden wir unseren Newsletter, gefüllt mit ehrlichen und wertvollen Inhalten. Kein Tracking, keine Werbung, kein Nonsens.", - "acc.passwordInfo": "Das Ändern deines Passworts erfordert dein aktuelles Passwort. Gib dieses ein und gib danach auch dein neues Passwort ein.", - "acc.password": "Passwort", - "acc.passwordTitle": "Gib dein aktuelles Passwort und dein neues Passwort ein", - "acc.patronInfo": "Förderer unterstützen Freesewing finanziell. Sie sind treue Unterstützer, die für eine nachhaltige Zukunft für freesewing.org, unseren Code, unsere Schnittmuster und unsere Community sorgen.", - "acc.patron": "Förderer/in", - "acc.removeYourAccountInfo": "Die Datenschutzgrundverordnung (DSGVO) der EU gewährt dir das Recht auf Datenlöschung — das Recht, die Löschung deiner persönlichen Daten zu verlangen.", - "acc.removeYourAccount": "Entferne deinen Account", - "acc.removeYourAccountWarning": "Dies wird deinen Account entfernen, mitsamt Entwürfen, Schnittmustern, Modellen und allen Daten, die wir für dich gespeichert haben. Es gibt keinen Weg zurück.", - "acc.resetPasswordInfo": "Gib dein neues Passwort ein.", - "acc.resetPassword": "Passwort zurücksetzen", - "acc.resetPasswordTitle": "Gib dein neues Passwort ein", - "acc.restrictProcessingOfYourDataInfo": "Die Datenschutzgrundverordnung (DSGVO) der EU gewährleistet dein sogenanntes Recht auf Einschränkung der Verarbeitung - das Recht, die Verarbeitung deiner Daten zu unterbinden.", - "acc.restrictProcessingOfYourData": "Verarbeitung deiner Daten einschränken", - "acc.restrictProcessingWarning": "Es werden zwar keine Daten gelöscht, dies wird dich jedoch abmelden und deinen Account einfrieren. Du kannst dies nicht selber rückgängig machen. Wenn du den Zugriff auf deinen Account reaktivieren möchtest, musst du uns kontaktieren.", - "acc.reviewYourConsent": "Überprüfe deine Einwilligungen", - "acc.socialInfo": "Wenn du deinen GitHub-, Twitter- oder Instagram-Benutzernamen angibst, enthält deine Profilseite Links zu deinen Konten auf diesen Websites. Dadurch können dir Nutzer von FreeSewing dort folgen.
Wir kontaktieren keine dieser Seiten in deinem Namen. Dies ist nur dafür da, damit sich andere Leute ein richtiges Bild machen können und wissen, dass zum Beispiel Benutzer @joost bei FreeSewing dieselbe Person ist wie Benutzer @j__st bei Twitter.", - "acc.social": "Soziale Medien", - "acc.socialTitle": "Lass die Leute dir anderswo folgen", - "acc.twitterInfo": "Wenn du uns deinen Twitter-Benutzernamen angibst, enthält deine Profilseite einen Link zu deinem Twitter-Account, sodass Besucher deine Tweets entdecken und dir folgen können.", - "acc.twitterTitle": "Gib deinen Twitter-Benutzernamen ein", - "acc.twitter": "Twitter", - "acc.unitsInfo": "Freesewing unterstützt sowohl das metrische System als auch imperiale Maßeinheiten.", - "acc.unitsTitle": "Bitte wähle die Maßeinheit aus, mit der du am besten vertraut bist", - "acc.units": "Maßeinheiten", - "acc.usernameInfo": "Jeder beginnt mit einem zufälligen Benutzernamen. Das ist nicht sehr persönlich, also kannst du deinen Benutzernamen in etwas persönlicheres ändern, wie zum Beispiel deinen Namen, oder queenoffarts, oder was auch immer dir gefällt.", - "acc.usernameTitle": "Bitte wähle deinen Benutzernamen", - "acc.username": "Benutzername", - "acc.accountIsInactive": "Dein Account ist inaktiv", - "acc.accountNeedsActivation": "Bevor du dch anmelden kannst, musst du deinen Account aktivieren. Bitte überprüfe deinen Posteingang auf die Registrierungs-E-Mail und klicke auf den enthaltenen Link.", - "acc.reloadAccount": "Account neu laden", - "acc.reloadAccountDescription": "Dies lädt deine Kontodaten neu aus dem Backend. Das hat den gleichen Effekt wie sich einmal ausloggen und dann wieder einloggen.", - "app.100PercentCommunity": "100% Community", - "app.100PercentFree": "100% kostenlos", - "app.100PercentOpenSource": "100% Open Source", - "app.aboutFreesewing": "Über Freesewing", - "app.account": "Account", - "app.accountCreated": "Account erstellt", - "app.actions": "Aktionen", - "app.allDocumentation": "Alle Dokumentationen", - "app.andThatIsAwesome": "Und das ist großartig", - "app.applyThisLayout": "Dieses Layout anwenden", - "app.areYouSureYouWantToContinue": "Bist du sicher, dass du fortfahren möchtest?", - "app.askForHelp": "Nach Hilfe fragen", - "app.automatic": "Automatisch", - "app.averagePeopleDoNotExist": "Durchschnittliche Menschen existieren nicht", - "app.awesome": "Großartig", - "app.back": "Zurück", - "app.becauseThatWouldBeReallyHelpful": "Weil das wirklich hilfreich wäre.", - "app.becomeAPatron": "Förderer/in werden", - "app.blog": "Blog", - "app.browseBlogposts": "Blogeinträge durchsuchen", - "app.browsePatterns": "Schnittmuster durchsuchen", - "app.browseShowcases": "Showcases durchsuchen", - "app.butThatCouldChange": "Das könnte sich aber ändern", - "app.cancel": "Abbrechen", - "app.changePerson": "Person ändern", - "app.changePattern": "Schnittmuster ändern", - "app.chatOnDiscord": "Chatte auf Discord", - "app.checkInboxClickLinkInConfirmationEmail": "Überprüfe nun deinen Posteingang und klicke auf den Link in der Bestätigungs-E-Mail, die wir dir gesendet haben.", - "app.chest": "Brust", - "app.chestInfo": "Brüste erfordern zusätzliche Maße. Falls diese Person keine Brüste hat, werden beim Konfigurieren irrelevante Maße ausgeblendet. Das hat keinen Einfluss darauf, wie Schnittmuster entworfen werden.", - "app.chooseASize": "Wähle eine Größe", - "app.chooseAPerson": "Wähle eine Person", - "app.chooseADesign": "Wähle ein Design", - "app.chooseAPattern": "Wähle ein Schnittmuster", - "app.chooseYourOptions": "Wähle deine Optionen", - "app.close": "Schließen", - "app.community": "Community", - "app.configureLayout": "Layout konfigurieren", - "app.configureYourDraft": "Deinen Entwurf konfigurieren", - "app.contactUs": "Kontaktiere uns", - "app.contentLocaleFallback": "Deshalb wird dir stattdessen die englische Version angezeigt.", - "app.contents": "Inhalte", - "app.continue": "Fortsetzen", - "app.copiedToClipboard": "In die Zwischenablage kopiert", - "app.copy": "Kopieren", - "app.couldYouTranslateThis": "Könntest du dies übersetzen?", - "app.countModelsLackingForPattern": "{count} deiner Personen fehlen die erforderlichen Maße, um {pattern} zu entwerfen", - "app.created": "Erstellt", - "app.custom": "Benutzerdefiniert", - "app.customSeamAllowance": "Benutzerdefinierte Nahtzugabe", - "app.lightMode": "Heller Modus", - "app.data": "Daten", - "app.darkMode": "Dunkler Modus", - "app.default": "Standard", - "app.demo": "Vorschau", - "app.designOptions": "Designoptionen", - "app.designs": "Designs", - "app.docs": "Dokumentation", - "app.docsFooterMsg": "Die Dokumentation ist nie fertig. Hoffentlich konnten wir alle deine Fragen beantworten, aber wenn dies nicht der Fall war, ist immer Hilfe verfügbar.", - "app.docsNotFoundMsg": "Wir konnten diese Dokumentation nicht finden, was normalerweise bedeutet, dass sie noch nicht geschrieben wurde.", - "app.docsNotFoundTitle": "Diese Dokumentation fehlt", - "app.documentationForDevelopers": "Dokumentation für Entwickler", - "app.documentationForEditors": "Dokumentation für Redakteure", - "app.documentationForTranslators": "Dokumentation für Übersetzer", - "app.documentationOverview": "Überblick über die Dokumentation", - "app.download": "Herunterladen", - "app.draft": "Entwurf", - "app.draftPattern": "{pattern} erstellen", - "app.draftPatternForModel": "Entwerfe {pattern} für {model}", - "app.drafts": "Entwürfe", - "app.draftSettings": "Entwurfseinstellungen", - "app.dragAndDropImageHere": "Du kannst das Bild hier per Drag-and-Drop ablegen oder es unten manuell auswählen", - "app.emailAddress": "E-Mail-Adresse", - "app.emailWorksToo": "Falls du deinen Benutzername nicht weißt: deine E-Mail-Adresse funktioniert auch", - "app.enterEmailPickPassword": "Gib deine E-Mail Adresse ein und wähle ein Passwort", - "app.export": "Exportieren", - "app.exportTiledPDF": "Exportieren als paginiertes PDF", - "app.faq": "Häufig gestellte Fragen", - "app.fieldRemoved": "{field} entfernt", - "app.fieldSaved": "{field} gespeichert", - "app.filterByPattern": "Filtern nach Schnittmuster", - "app.filterPatterns": "Schnittmuster filtern", - "app.forgotLoginInstructions": "Wenn du dein Passwort nicht mehr weißt: Benutzername oder E-Mail-Adresse eingeben und den Passwort zurücksetzen Knopf drücken", - "app.freesewing": "Freesewing", - "app.freesewingOnGithub": "Freesewing auf GitHub", - "app.github": "GitHub", - "app.goAheadWeWillWait": "Mach weiter, wir warten.", - "app.goodJob": "Gut gemacht", - "app.goodToSeeYouAgain": "Schön, dich wieder zu sehen, {user}", - "app.handle": "Identifikator", - "app.helpUsTranslate": "Hilf uns beim Übersetzen", - "app.home": "Startseite", - "app.howCanWeHelpYou": "Wie können wir dir helfen?", - "app.howToTakeMeasurements": "Richtig Maßnehmen", - "app.i18n": "Internationalisierung", - "app.imperialUnits": "Imperiale Einheiten (inch)", - "app.instagram": "Instagram", - "app.invalidTldMessage": ".{tld} ist keine gültige TLD", - "app.joinTheChatMsg": "Wir haben auf Discord eine Community mit freundlichen Leuten, mit denen du dich austauschen kannst.", - "app.justAMoment": "Einen Moment bitte", - "app.layout": "Layout", - "app.logIn": "Anmelden", - "app.loginWithProvider": "Mit {provider} anmelden", - "app.logOut": "Abmelden", - "app.manual": "Manuell", - "app.markdownHelp": "Markdown-Hilfe", - "app.measurements": "Maße", - "app.menu": "Menü", - "app.metadata": "Metadaten", - "app.metricUnits": "Metrische Einheiten (cm)", - "app.person": "Person", - "app.people": "Personen", - "app.nameInfo": "Ein Name hilft dabei, Dinge auseinanderzuhalten. Du kannst einen beliebigen Namen auswählen.", - "app.name": "Name", - "app.addThing": "{thing} hinzufügen", - "app.newThing": "{thing} neu erstellen", - "app.newPatternForModel": "{pattern} für {model} neu erstellen", - "app.noChanges": "Keine Änderungen", - "app.no": false, - "app.noPasswordPolicy": "Wir haben keine strikten Passwort-Rictlinien", - "app.noSeamAllowance": "Keine Nahtzugabe", - "app.notAllOfThisContentIsAvailableInLanguage": "Nicht alle Inhalte sind auf Deutsch verfügbar", - "app.notesInfo": "Dies sind deine Notizen. Du kannst hier alles schreiben, was du möchtest.", - "app.notes": "Notizen", - "app.ohNo": "Oh nein!", - "app.oneMoreThing": "Und zum Schluss", - "app.options": "Optionen", - "app.orPayPerYear": "Oder pro Jahr bezahlen", - "app.other": "Andere", - "app.otherThing": "Andere {thing}", - "app.ourPatrons": "Unsere Förderer", - "app.ourRevenuePledge": "Unser Umsatzversprechen", - "app.patron-2": "Pulveraffe", - "app.patron-4": "Steuermann", - "app.patron-8": "Kapitän", - "app.patronHelp": "Solltest du Fragen haben oder deinen Förder/in-Status ändern wollen, kannst du uns gerne kontaktieren", - "app.patron": "Förderer/in", - "app.patronPitch": "Wenn du unsere Arbeit für wertvoll hältst und jeden Monat ein paar Münzen übrig hast, ohne in finanzielle Not zu geraten, unterstütze bitte unsere Arbeit", - "app.patronsKeepUsAfloat": "Freesewing wird durch die finanzielle Unterstützung unserer Förderer ermöglicht. Sie halten dieses Schiff über Wasser.", - "app.patternInstructions": "Anleitungen für das Schnittmuster", - "app.patternOptions": "Schnittmusteroptionen", - "app.pattern": "Schnittmuster", - "app.sewingPatterns": "Schnittmuster", - "app.patterns": "Schnittmuster", - "app.pendingConfirmation": "Bestätigung ausstehend", - "app.perMonth": "pro Monat", - "app.pleaseEnterAValidEmailAddress": "Bitte eine gültige E-Mail-Adresse angeben", - "app.pleaseIncludeTheInformationBelow": "Bitte gib die Informationen unten an", - "app.preview": "Vorschau", - "app.privacyNotice": "Datenschutzerklärung", - "app.proceedWithCaution": "Bitte mit Vorsicht fortfahren", - "app.profile": "Profil", - "app.relatedLinks": "Verwandte Links", - "app.remove": "Entfernen", - "app.removeThing": "{thing} entfernen", - "app.reportThisOnGithub": "Melde dies auf GitHub", - "app.requiredMeasurements": "Erforderliche Maße", - "app.resendActivationEmailMessage": "Trage die E-Mail-Adresse ein, mit der du dich angemeldet hast, und wir senden dir eine neue Bestätigungsnachricht.", - "app.resendActivationEmail": "Aktivierungs-E-Mail erneut senden", - "app.resetPassword": "Passwort zurücksetzen", - "app.reset": "Zurücksetzen", - "app.restoreDefaults": "Standardeinstellungen wiederherstellen", - "app.restoreDesignDefaults": "Designeinstellungen zurücksetzen", - "app.restorePatternDefaults": "Standardwerte für Schnittmuster wiederherstellen", - "app.saveDraftToYourAccount": "Entwurf in deinem Account speichern", - "app.save": "Speichern", - "app.searchLanguageMsg": "Jede Sprache hat ihren eigenen Suchindex. Da nicht alle Inhalte übersetzt sind, findest du möglicherweise mehr Ergebnisse in der Suche auf Englisch.", - "app.searchLanguageTitle": "Nicht das gefunden, wonach du suchst?", - "app.search": "Suche", - "app.selectAPartToMoveMirrorOrRotate": "Wähle ein Teil zum Verschieben, Spiegeln oder Drehen", - "app.selectImage": "Bild auswählen", - "app.sendAnEmail": "Eine E-Mail senden", - "app.settings": "Einstellungen", - "app.sewingHelp": "Nähhilfe", - "app.sewingPatternsForNonAveragePeople": "Schnittmuster für nicht-durchschnittliche Menschen", - "app.share": "Teilen", - "app.shareFreesewing": "Teile FreeSewing", - "app.showcase": "Galerie", - "app.signUpForAFreeAccount": "Registriere dich für einen kostenlosen Account", - "app.signUp": "Registrieren", - "app.signupWithProvider": "Mit {provider} registrieren", - "app.sortByField": "Nach {field} sortieren", - "app.standardSeamAllowance": "Standardnahtzugabe", - "app.startOver": "Von vorn anfangen", - "app.startTranslatingNowOrRead": "{startTranslatingNow}, oder lies zuerst die {documentationForTranslators}.", - "app.startTranslatingNow": "Beginne jetzt mit dem Übersetzen", - "app.subscribe": "Abonnieren", - "app.support": "Unterstützung", - "app.supportFreesewing": "Unterstütze Freesewing", - "app.tellMeMore": "Erzähl mir mehr", - "app.thanksForYourSupport": "Danke für deine Unterstützung", - "app.thisContentIsNotAvailableInLanguage": "Dieser Inhalt ist auf Deutsch nicht verfügbar", - "app.thisFieldSupportsMarkdown": "Dieses Feld unterstützt Markdown", - "app.thisPageRequiresAuthentication": "Diese Seite erfordert eine Authentifizierung", - "app.troubleLoggingIn": "Probleme beim Einloggen?", - "app.twitter": "Twitter", - "app.txt-footer": "Freesewing wird erstellt von einer Gemeinschaft von Mitwirkenden
mit der finanziellen Unterstützung unserer Förderer", - "app.txt-tier2": "Unsere Kategorie mit dem demokratischsten Preis. Es ist vielleicht weniger als der Preis eines Lattes, aber deine Unterstützung bedeutet uns sehr viel.", - "app.txt-tier4": "Wähle diese Stufe, und wir senden dir etwas von unserem heiß begehrten Freesewing-Swag nach Hause. Egal, wo in der Welt das auch sein mag.", - "app.txt-tier8": "Wenn du uns nicht nur unterstützen möchtest, sondern Freesewing zum Gedeihen bringen willst, ist das die Stufe für dich. Außerdem: extra Swag!", - "app.txt-tiers": "FreeSewing wird durch ein freiwilliges Abonnement-Modell unterstützt", - "app.unitsInfo": "Freesewing unterstützt sowohl das metrische System als auch imperiale Einheiten. Wähle einfach aus, was von beiden du hier verwenden möchtest. (Standardmäßig werden die in deinem Account konfigurierten Einheiten verwendet).", - "app.updated": "Aktualisiert", - "app.update": "Aktualisieren", - "app.userHasBeenWithUsSince": "{user} ist seit {since} bei uns", - "app.users": "Benutzer", - "app.weAreValidatingYourConfirmationCode": "Wir prüfen deinen Bestätigungs-Code.", - "app.weCouldNotValidateYourConfirmationCode": "Wir konnten deinen Bestätigungscode nicht validieren", - "app.weEncounteredAProblem": "Wir sind auf ein Problem gestoßen", - "app.weEncourageYouToReportThis": "Wir empfehlen dir, dies zu melden", - "app.welcomeAboard": "Willkommen an Bord", - "app.welcome": "Willkommen", - "app.weNeverShareYourEmail": "Wir werden deine E-Mail-Adresse niemals an andere weitergeben", - "app.whatIsThis": "Was ist das?", - "app.withBreasts": "Mit Brüsten", - "app.withoutBreasts": "Ohne Brüste", - "app.yay": "Juhuu!", - "app.yes": true, - "app.youAreAPatron": "Du bist ein/e Förder/in", - "app.youAreNotAPatron": "Du bist kein/e Förder/in", - "app.youAreNotLoggedIn": "Du bist nicht eingeloggt", - "app.yourRights": "Deine Rechte", - "app.makerDocs": "Erstellerdokumentation", - "app.devDocs": "Entwicklerdokumentation", - "app.slogan": "Eine JavaScript-Bibliothek für maßgeschneiderte Schnittmuster", - "app.getStarted": "Jetzt loslegen", - "app.apiReference": "API-Referenz", - "app.tutorial": "Anleitung", - "app.editThisPage": "Diese Seite bearbeiten", - "app.loginRequiredRedirect": "Du wurdest auf die Login-Seite weitergeleitet, da {page} eine Authentifizierung benötigt", - "app.various": "Verschiedenes", - "app.sewing": "Nähen", - "app.examples": "Beispiele", - "app.by": "von", - "app.years": "Jahre", - "app.pricing": "Preisgestaltung", - "app.createFirst": "Beginne mit dem Erstellen eines neuen Schnittmusters", - "app.noPattern": "Du hast (noch) keine Schnittmuster. Erstelle ein neues Schnittmuster und speichere es dann in deinem Account.", - "app.modelFirst": "Beginne damit, Maße hinzuzufügen", - "app.noModel": "Du hast (noch) keine Maße hinzugefügt. FreeSewing kann maßgeschneiderte Schnittmuster erzeugen. Dafür benötigen wir jedoch Maße.", - "app.noModel2": "Das erste, was du tun solltest, ist, eine Person hinzuzufügen und das Maßband auszupacken.", - "app.noUserBrowsingTitle": "Du kannst nicht einfach alle Benutzer durchsuchen", - "app.noUserBrowsingText": "Wir haben Tausende von ihnen. Sicher gibt es Interessanteres auf unserer Seite zu tun?", - "app.usePatternMeasurements": "Verwende die Maße des Originalschnittmusters", - "app.createReplica": "Duplikat erstellen", - "app.showDetails": "Details anzeigen", - "app.hideDetails": "Details ausblenden", - "app.clickBelowToLogOut": "Klicke unten, um dich abzumelden", - "app.compare": "Vergleichen", - "app.savePattern": "Schnittmuster speichern", - "app.recreate": "Neu erstellen", - "app.recreateThing": "{thing} neu erstellen", - "app.recreateThingForPerson": "{thing} für {person} neu erstellen", - "app.seeYouLaterUser": "Bis später, {user}", - "app.exportForPrinting": "Für den Druck exportieren", - "app.exportForEditing": "Für die Bearbeitung exportieren", - "app.startWithNeckTitle": "Beginne mit dem Halsumfang", - "app.startWithNeckDescription": "Auf Basis deines Halsumfangs können wir dir helfen, Fehler in deinen Maßen zu erkennen.", - "app.whatYouNeed": "Was du brauchst", - "app.fabricOptions": "Stoffauswahl", - "app.cutting": "Zuschnitt", - "app.instructions": "Anleitungen", - "app.hide": "Verbergen", - "app.show": "Anzeigen", - "app.oneMomentPlease": "Einen Moment bitte", - "app.loadingMagic": "Wir sind dabei, die Magie zu laden", - "app.estimate": "Schätzung", - "app.actual": "Tatsächlich", - "app.weEstimateYM2B": "Wir schätzen {measurement} von dir auf etwa:", - "app.exportAsData": "Als Daten exportieren", - "app.availablePatterns": "Verfügbare Schnittmuster", - "app.browseCollection": "Sammlung durchsuchen", - "app.browseYourPatterns": "Deine Schnittmuster durchsuchen", - "app.yourPatterns": "Deine Schnittmuster", - "app.loginNeededToSavePatternsMsg": "Du musst angemeldet sein, um deine Schnittmuster zu speichern", - "app.docsForContributors": "Dokumentation für Mitwirkende", - "app.patternDocs": "Schnittmuster-Dokumentation", - "app.socialMedia": "Soziale Medien", - "app.create": "Erstellen", - "app.browse": "Durchsuchen", - "app.patrons": "Förderer", - "app.scrollToTop": "Zum Seitenanfang", - "app.sitemap": "Seitenübersicht", - "app.contributeToThing": "An {thing} mitwirken", - "app.mtmIsOurJam": "Maßgeschneiderte Schnittmuster sind unser Spezialgebiet", - "app.fitYouDeserve": "Du verpasst wirklich etwas, wenn du standardisierte Größen verwendest.
Also melde dich heute an und erhalte die Passform, die du verdienst.", - "app.supportNag": "FreeSewing ist kostenfrei, aber wir würden es sehr schätzen, wenn du in Betracht ziehen würdest, uns zu unterstützen.", - "app.madeToMeasure": "Maßgeschneidert", - "app.sizes": "Größen", - "app.standardSizes": "Standardgrößen", - "app.accountRequired": "Diese Funktion erfordert einen FreeSewing-Account", - "app.size": "Größe", - "app.switchToThing": "Zu {thing} wechseln", - "app.saveThing": "{thing} speichern", - "app.shareThing": "{thing} teilen", - "app.link": "Link", - "app.cloneThing": "{thing} klonen", - "app.cloneDescription": "Erstelle eine exakte Kopie mit den Maßen des Originalschnittmusters.", - "app.furtherReading": "Weiterführende Informationen", - "app.saveAsNewPattern": "Als neues Schnittmuster speichern", - "app.saveAsNewPattern-txt": "(Eine Kopie von diesem) Schnittmuster in deinem FreeSewing-Account speichern", - "app.exportPattern": "Schnittmuster exportieren", - "app.printPattern": "Schnittmuster drucken", - "app.exportPattern-txt": "Ein für deinen Heimdrucker geeignetes PDF exportieren, oder das Schnittmuster in verschiedenen Formaten herunterladen", - "app.editThing": "{thing} bearbeiten", - "app.editPattern-txt": "Dieses Schnittmuster im Schnittmuster-Editor laden", - "app.featureRequiresAccount": "Diese Funktion erfordert einen FreeSewing-Account", - "app.zoom": "Zoom", - "app.zoomIn": "Vergrößern", - "app.zoomOut": "Verkleinern", - "app.zoom-txt": "Wechselt zwischen Beschränkung der Höhe und der Breite deines Schnittmusters, um es passend auf deinem Bildschirm anzuzeigen", - "app.savePattern-txt": "Dieses Schnittmuster in deinem FreeSewing-Account speichern", - "app.comparePattern": "Schnittmuster vergleichen", - "app.showPattern": "Schnittmuster anzeigen", - "app.comparePattern-txt": "Vergleiche dein Schnittmuster mit einer Reihe von Standardgrößen, um mögliche Probleme mit der Passform zu prüfen", - "app.recreatePattern": "Schnittmuster neu erstellen", - "app.recreatePattern-txt": "Wähle eine andere Person und erstelle dann diesen Schnitt neu für diese Person", - "app.editOwnPatternsOnly": "Du kannst nur deine eigenen Schnittmuster bearbeiten", - "app.editOwnPatternsOnly-txt": "Du kannst dieses Schnittmuster nicht bearbeiten, weil es nicht dir gehört. Aber du kannst es als Grundlage verwenden, um dein eigenes Schnittmuster zu erstellen.", - "app.updateNotes-txt": "Aktualisiere die Notizen, die du zu deinem Schnittmuster führst", - "app.franceWarning": "Warnung für Benutzer/innen in Frankreich", - "app.franceWarning-txt": "Mehrere französische E-Mail-Anbieter – darunter free.fr, laposte.net, orange.fr und sfr.fr – sind dafür bekannt, unsere E-Mails regelmäßig zu entsorgen.", - "app.emailNotReceived": "Wenn du die Aktivierungs-E-Mail nicht erhältst, wende dich bitte an uns, damit wir helfen können.", - "app.error": "Fehler", - "app.info": "Info", - "app.warning": "Warnung", - "app.debug": "Debug", - "app.unsubscribe": "Abmelden", - "app.slogan-come": "Komm für die Schnittmuster", - "app.slogan-stay": "Bleib für die Community", - "cfp.author": "Autor", - "cfp.githubRepo": "GitHub-Repository", - "cfp.packageManager": "Paket-Manager", - "cfp.patternName": "Schnittmuster-Name", - "cfp.patternType": "Schnittmuster-Art", - "cfp.patternCreated": "Dein Schnittmusterskelett wurde erstellt in", - "cfp.runTheseCommands": "Um loszulegen, führe diesen Befehl aus", - "cfp.startRollup": "In einem Terminal startest du den Rollup-Bundler im Beobachtungsmodus", - "cfp.startWebpack": "Dadurch wird der 'example'-Ordner betreten und die Entwicklungsumgebung gestartet.", - "cfp.devDocsAvailableAt": "Entwicklerdokumentation ist verfügbar auf", - "cfp.talkToUs": "Für Fragen, Feedback oder Anregungen trete unserem Discord-Server bei", - "cfp.draftYourPattern": "Zeichne dein Schnittmuster", - "cfp.testYourPattern": "Teste dein Schnittmuster", - "cfp.draftThing": "{thing} erstellen", - "cfp.testThing": "{thing} testen", - "cfp.renderInBrowser": "Klicke unten, um dein Schnittmuster im Browser zu rendern.", - "cfp.weWillReRender": "Wenn du Änderungen vornimmst, werden wir es erneut für dich rendern.", - "cfp.youCan": "Du kannst", - "cfp.enterMeasurements": "Maße von Hand eingeben", - "cfp.preloadMeasurements": "Einen bestehenden Satz an Maßen einlesen", - "cfp.size": "Größe", - "cfp.noRequiredMeasurements": "Dieses Schnittmuster hat keine benötigten Maße", - "cfp.howtoAddMeasurements": "Um Maße als Anforderung zu definieren, füge sie der Sektion measurements in der Konfigurationsdatei des Schnittmusters hinzu.", - "cfp.seeDocsAt": "Dokumentation zu diesem Thema ist verfügbar unter", - "cfp.clearDesignMode": "Designmodus leeren", - "cfp.designMode": "Designmodus", - "cfp.exportMode": "Exportmodus", - "cfp.thingIsEnabled": "{thing} ist aktiviert", - "cfp.thingIsDisabled": "{thing} ist deaktiviert", - "cfp.turnOn": "Aktivieren", - "cfp.turnOff": "Deaktivieren", - "cfp.validNameWarning": "Bitte wähle einen anderen Namen, da dieser Name Probleme verursachen würde.\nWir (wieder-)verwenden den Namen des Schnittmusters als NPM-Paketname.\nPaketnamen müssen in Kleinbuchstaben geschrieben sein und dürfen keine Sonderzeichen enthalten.\nBitte benenne dein Muster also entsprechend, wie in etwa:", - "designs.aaron.d": "Aaron ist ein sportliches Shirt oder Tank Top.", - "designs.aaron.t": "Aaron, das Shirt", - "designs.albert.d": "Albert ist eine Schürze.", - "designs.albert.t": "Albert, die Schürze", - "designs.bella.d": "Bella ist ein Grundschnitt für Personen mit Brüsten.", - "designs.bella.t": "Bella, ein Grundschnitt", - "designs.benjamin.d": "Benjamin ist eine Schleife - oder Fliege - mit vier unterschiedlichen Formvariationen.", - "designs.benjamin.t": "Benjamin, die Fliege", - "designs.bent.d": "Dieser zweiteilige Armschnitt ist die Grundlage für unsere Mäntel- und Jackenschnitte.", - "designs.bent.t": "Bent, ein Grundschnitt", - "designs.breanna.d": "Breanna ist ein Grundschnitt für Personen mit Brüsten.", - "designs.breanna.t": "Breanna, ein Grundschnitt", - "designs.brian.d": "Brian ist ein Grundschnitt für Personen ohne Brüste.", - "designs.brian.t": "Brian, ein Grundschnitt", - "designs.bruce.d": "Bruce sind bequeme und stylische Retroshorts.", - "designs.bruce.t": "Bruce, die Retroshorts", - "designs.carlita.d": "Die Version für Brüste unseres Carlton-Mantels, aka Sherlock Holmes-Mantel.", - "designs.carlita.t": "Carlita, der Mantel", - "designs.carlton.d": "Für Sherlock Holmes-Cosplay, oder nur als wirklich netter Mantel.", - "designs.carlton.t": "Carlton, der Mantel", - "designs.cathrin.d": "Cathrin ist ein Unterbrustkorsett oder Taillentrainer.", - "designs.cathrin.t": "Cathrin, das Korsett", - "designs.charlie.d": "Charlie ist ein Schnittmuster für Chinos.", - "designs.charlie.t": "Charlie, die Chinos", - "designs.cornelius.d": "Cornelius ist eine Kniebundhose zum Fahrradfahren, basierend auf der Entwurfsmethode nach Keystone.", - "designs.cornelius.t": "Cornelius, die Kniebundhose zum Radfahren", - "designs.diana.d": "Diana ist ein Oberteil mit einem drapierten Halsausschnitt.", - "designs.diana.t": "Diana, das drapierte Oberteil", - "designs.florent.d": "Florent ist eine abgerundete Schiebermütze mit einem kleinen festen Schild an der Vorderseite.", - "designs.florent.t": "Florent, die Schiebermütze", - "designs.florence.d": "Florence ist ein Mundschutz", - "designs.florence.t": "Florence, der Mundschutz", - "designs.holmes.d": "Für Sherlock Holmes-Cosplay oder einfach nur als niedlicher Hut", - "designs.holmes.t": "Holmes Deerstalker-Hut", - "designs.hortensia.d": "Hortensia ist eine Handtasche", - "designs.hortensia.t": "Hortensia, die Handtasche", - "designs.huey.d": "Huey ist ein Hoodie mit Reißverschluss und optionalen Taschen auf der Vorderseite.", - "designs.huey.t": "Huey, der Hoodie", - "designs.hugo.d": "Hugo ist ein Kapuzensweatshirt mit Raglanärmeln.", - "designs.hugo.t": "Hugo, der Hoodie", - "designs.jaeger.d": "Jeager ist ein sportliches Sakko mit zwei Knöpfen und aufgesetzten Taschen.", - "designs.jaeger.t": "Jaeger, das Sakko", - "designs.paco.d": "Paco ist eine lässige, aber stilvolle Sommerhose", - "designs.paco.t": "Paco, die Hose", - "designs.penelope.d": "Penelope ist ein Bleistiftrock mit oder ohne Gehschlitz in rückwärtigen Teil.", - "designs.penelope.t": "Penelope, der Bleistiftrock", - "designs.sandy.d": "Sandy ist ein anpassungsfähiges Tellerrockschnittmuster", - "designs.sandy.t": "Sandy, der Tellerrock", - "designs.shin.d": "Shin ist eine sportliche Badehose", - "designs.shin.t": "Shin, die Badehose", - "designs.simon.d": "Simon ist ein sehr anpassbares Hemdenschnittmuster für Personen ohne Brüste.", - "designs.simon.t": "Simon, das Hemd", - "designs.simone.d": "Simone ist Simon, angepasst für Personen mit Brüsten.", - "designs.simone.t": "Simone, das Hemd", - "designs.sven.d": "Sven ist ein einfacher Pullover.", - "designs.sven.t": "Sven, der Pullover", - "designs.tamiko.d": "Tamiko ist ein Zero-Waste Top.", - "designs.tamiko.t": "Tamiko, das Top", - "designs.teagan.d": "Teagan ist ein Schnittmuster für ein passgenaues T-Shirt", - "designs.teagan.t": "Teagan, das T-Shirt", - "designs.theo.d": "Theo ist ein klassisches Hosenschnittmuster.", - "designs.theo.t": "Theo, die Hose", - "designs.titan.d": "Titan ist ein Unisex-Grundschnitt für Hosen ohne Abnäher", - "designs.titan.t": "Titan, ein Hosen-Grundschnitt", - "designs.trayvon.d": "Trayvon ist eine Krawatte, die für ein professionelles Ergebnis an keiner Ecke spart.", - "designs.trayvon.t": "Trayvon, die Krawatte", - "designs.ursula.d": "Ursula ist ein elementares, stark anpassbares Schnittmuster für Unterwäsche", - "designs.ursula.t": "Ursula, die Unterwäsche", - "designs.wahid.d": "Wahid ist eine klassische taillierte Weste.", - "designs.wahid.t": "Wahid, die Weste", - "designs.waralee.d": "Waralee ist eine Wickelhose", - "designs.waralee.t": "Waralee, die Wickelhose", - "email.chatWithUs": "Chatte mit uns", - "email.emailchangeActionText": "Bestätige deine neue E-Mail-Adresse", - "email.emailchangeCopy1": "Du hast um die Änderung der E-Mail-Adresse gebeten, die mit deinem Account unter freesewing.org verknüpft ist.

Bevor du dies tust, musst du deine neue E-Mail-Adresse bestätigen. Bitte klicke auf den folgenden Link, um dies zu tun:", - "email.emailchangeHeaderOpeningLine": "Wir stellen nur sicher, dass wir dich bei Bedarf erreichen können", - "email.emailchangeHiddenIntro": "Lass uns deine neue E-Mail-Adresse bestätigen", - "email.emailchangeSubject": "Bitte bestätige deine neue E-Mail-Adresse", - "email.emailchangeTitle": "Bitte bestätige deine neue E-Mail-Adresse", - "email.emailchangeWhy": "Du hast diese E-Mail erhalten, weil du die mit deinem Konto auf freesewing.org verknüpfte E-Mail-Adresse geändert hast", - "email.footerCredits": "Kreiert von Joost & Mitwirkenden, mit der finanziellen Unterstützung unserer Förderer ❤️ ", - "email.footerSlogan": "Freesewing ist eine Open-Source Plattform für Schnittmuster nach Maß", - "email.goodbyeCopy1": "Wenn du uns mitteilen möchtest, warum du uns verlässt, kannst du gerne auf diese Nachricht antworten.
Von unserer Seite aus werden wir dich nicht weiter stören.", - "email.goodbyeHeaderOpeningLine": "Sei dir nur bewusst, dass du jederzeit wiederkommen kannst", - "email.goodbyeHiddenIntro": "Vielen Dank, dass du Freesewing eine Chance gegeben hast", - "email.goodbyeSubject": "Mach's gut! 👋", - "email.goodbyeTitle": "Vielen Dank, dass du Freesewing eine Chance gegeben hast", - "email.goodbyeWhy": "Du hast diese E-Mail als endgültiges Lebewohl erhalten, nachdem du deinen Account auf freesewing.org entfernt hast", - "email.joostFromFreesewing": "Joost von Freesewing", - "email.passwordresetActionText": "Erhalte erneut Zugang zu deinem Account", - "email.passwordresetCopy1": "Du hast dein Passwort für deinen Account bei freesewing.org vergessen.

Klicke auf den folgenden Link, um dein Passwort zurückzusetzen:", - "email.passwordresetHeaderOpeningLine": "Keine Sorge, solche Dinge passieren uns allen", - "email.passwordresetHiddenIntro": "Erhalte erneut Zugang zu deinem Account", - "email.passwordresetSubject": "Erhalte erneut Zugang zu deinem Account auf freesewing.org", - "email.passwordresetTitle": "Setze dein Passwort zurück und erhalte erneut Zugang zu deinem Account", - "email.passwordresetWhy": "Du hast diese E-Mail erhalten, weil du die Anfrage gestellt hast, dein Passwort von freesewing.org zurückzusetzen", - "email.questionsJustReply": "Wenn du Fragen hast, antworte einfach auf diese E-Mail. Ich bin immer gerne bereit zu helfen. 🙂", - "email.signature": "Liebe Grüße", - "email.signupActionText": "Bestätige deine E-Mail-Adresse", - "email.signupCopy1": "Danke, dass du dich bei freesewing.org angemeldet hast.

Bevor wir beginnen, musst du deine E-Mail-Adresse bestätigen. Bitte klicke auf den folgenden Link, um das zu tun:", - "email.signupHeaderOpeningLine": "Wir freuen uns sehr darüber, dass du ein Teil der Freesewing-Community wirst.", - "email.signupHiddenIntro": "Lass uns deine E-Mail-Adresse bestätigen", - "email.signupSubject": "Willkommen bei freesewing.org", - "email.signupTitle": "Willkommen an Bord", - "email.signupWhy": "Du hast diese E-Mail erhalten, weil du dich gerade auf freesewing.org angemeldet hast", - "errors.404": "Die von dir gesuchte Seite kann nicht gefunden werden", - "errors.confirmationNotFound": "Falls du über den Link in einer Bestätigungs-E-Mail auf dieser Seite gelandet bist, empfehlen wir dir, dieses Problem zu melden.", - "errors.emailExists": "Wir haben bereits einen Benutzer mit dieser E-Mail-Adresse. Möchtest du dich vielleicht stattdessen einloggen?", - "errors.networkError": "Back-End oder Netzwerk scheint nicht verfügbar zu sein", - "errors.notAValidImageFormat": "Kein gültiges Bildformat", - "errors.requestFailedWithStatusCode400": "Anfrage fehlgeschlagen", - "errors.requestFailedWithStatusCode401": "Authentifizierung fehlgeschlagen", - "errors.requestFailedWithStatusCode403": "Verboten", - "errors.requestFailedWithStatusCode500": "Es gab ein unerwartetes Problem. Bitte melde dies.", - "errors.something": "Etwas ist schiefgelaufen", - "gdpr.compliant": "Freesewing.org respektiert deine Privatsphäre und deine Rechte. Wir wenden die Datenschutzgrundverordnung (DSGVO) der Europäischen Union (EU) an.", - "gdpr.consent": "Einwilligungen", - "gdpr.consentForModelData": "Einwilligung für Modelldaten", - "gdpr.consentForProfileData": "Einwilligung für Profildaten", - "gdpr.consentGiven": "Einwilligung erteilt", - "gdpr.consentNotGiven": "Einwilligung nicht erteilt", - "gdpr.consentWhyAnswer": "Die Verarbeitung deiner personenbezogenen Daten benötigt im Rahmen der DSGVO deine Einwilligung, also deine Erlaubnis.", - "gdpr.createMyAccount": "Meinen Account erstellen", - "gdpr.furtherReading": "Weiterführende Informationen", - "gdpr.modelQuestion": "Gibst du deine Einwilligung zur Verarbeitung deiner Modelldaten?", - "gdpr.modelWarning": "Wenn du diese Einwilligung widerrufst, wirst du keinen Zugriff mehr auf deine Modelldaten haben und es werden alle Funktionen deaktiviert, die von diesen abhängen.", - "gdpr.modelWhatAnswer": "Für jedes Modell deren Maße und Brusteinstellungen.", - "gdpr.modelWhatAnswerOptional": "Optional: Ein Modell-Bild und der Name, den du deinem Modell gibst.", - "gdpr.modelWhatQuestion": "Was sind Modelldaten?", - "gdpr.modelWhyAnswer": "Zum Erstellen von maßgeschneiderten Schnittmustern benötigen wir Körpermaße.", - "gdpr.noConsentNoAccount": "Ohne diese Einwilligung können wir deinen Account nicht erstellen", - "gdpr.noConsentNoPatterns": "Ohne diese Einwilligung kannst du keine Schnittmuster erstellen", - "gdpr.noIDoNot": "Nein, mache ich nicht", - "gdpr.openDataInfo": "Diese Daten werden verwendet, um die menschliche Form in all ihren Formen zu studieren und zu verstehen, sodass wir bessere Schnittmuster und besser passende Kleidungsstücke erhalten. Auch wenn diese Daten anonymisiert sind, hast du das Recht, dem zu widersprechen.", - "gdpr.openDataQuestion": "Teile anonymisierte Maße als freie Daten (open data)", - "gdpr.profileQuestion": "Gibst du deine Einwilligung zur Verarbeitung deiner Profildaten?", - "gdpr.profileShareAnswer": "Nein, niemals.", - "gdpr.profileTimingAnswer": "12 Monate nach deinem letzten Login oder bis du deinen Account entfernst oder bis du diese Einwilligung widerrufst.", - "gdpr.profileWarning": "Durch den Widerruf dieser Einwilligung werden alle deine Daten entfernt. Es hat den gleichen Effekt wie das Entfernen deines Accounts.", - "gdpr.profileWhatAnswerOptional": "Optional: ein Profilbild, eine Beschreibung über dich, und Accounts bei sozialen Medien", - "gdpr.profileWhatAnswer": "Deine E-Mail-Adresse, Benutzername und Passwort.", - "gdpr.profileWhatQuestion": "Was sind Profildaten?", - "gdpr.profileWhyAnswer": "Um dich zu authentifizieren, dich zu kontaktieren wenn nötig, und um eine Community aufzubauen.", - "gdpr.readMore": "Weitere Informationen findest du in unserer Datenschutzerklärung.", - "gdpr.readRights": "Lies mehr über deine Rechte für weitere Informationen.", - "gdpr.revokeConsent": "Einwilligung widerrufen", - "gdpr.shareQuestion": "Teilen wir sie mit anderen?", - "gdpr.timingQuestion": "Für wie lange behalten wir sie?", - "gdpr.whatYouNeedToKnow": "Was du wissen musst", - "gdpr.whyQuestion": "Warum brauchen wir sie?", - "gdpr.yesIDoObject": "Ja, ich widerspreche", - "gdpr.yesIDo": "Ja, das mache ich", - "gdpr.openData": "Hinweis: Freesewing veröffentlicht anonymisierte Maße als freie Daten (open data) für wissenschaftliche Forschung. Du hast das Recht, dem zu widersprechen", - "i18n.de": "Deutsch", - "i18n.en": "Englisch", - "i18n.es": "Spanisch", - "i18n.fr": "Französisch", - "i18n.nl": "Niederländisch", - "jargon.basting.d": "Siehe Heften in der Dokumentation zum Nähen", - "jargon.basting.term": "Heften", - "jargon.coverlock.d": "Siehe Coverlock in der Dokumentation zum Nähen", - "jargon.coverlock.term": "Coverlock", - "jargon.cutting.d": "Siehe Zuschnitt in der Dokumentation zum Nähen", - "jargon.cutting.term": "Zuschnitt", - "jargon.darts.d": "Abnäher in der Dokumentation zum Nähen", - "jargon.darts.term": "Abnäher", - "jargon.doubleWeltPockets.d": "Siehe Doppelpaspeltasche in der Dokumentation zum Nähen", - "jargon.doubleWeltPockets.term": "Doppelpaspeltaschen", - "jargon.ease.d": "Siehe Zugabe in der Dokumentation zum Nähen", - "jargon.ease.term": "Zugabe", - "jargon.fabricGrain.d": "Siehe Fadenlauf in der Dokumentation zum Nähen", - "jargon.fabricGrain.term": "Fadenlauf", - "jargon.goodSidesTogether.d": "Siehe rechts auf rechts in der Dokumentation zum Nähen", - "jargon.goodSidesTogether.term": "rechts auf rechts", - "jargon.onTheFold.d": "Siehe Im Stoffbruch in der Dokumentation zum Nähen", - "jargon.onTheFold.term": "im Stoffbruch", - "jargon.hemming.d": "Siehe Säumen in der Dokumentation zum Nähen", - "jargon.hemming.term": "Säumen", - "jargon.jersey.d": "Siehe Jersey in der Dokumentation zum Nähen", - "jargon.jersey.term": "Jersey", - "jargon.knitBinding.d": "Siehe Kantenabschluss mit Maschenware in der Dokumentation zum Nähen", - "jargon.knitBinding.term": "Kantenabschluss mit Maschenware", - "jargon.knitFabric.d": "Siehe Maschenware in der Dokumentation zum Nähen", - "jargon.knitFabric.term": "Maschenware", - "jargon.pinning.d": "Siehe Stecken in der Dokumentation zum Nähen", - "jargon.pinning.term": "Stecken", - "jargon.rayon.d": "Siehe Rayon in der Dokumentation zum Nähen", - "jargon.rayon.term": "Rayon", - "jargon.sa.d": "Siehe Nahtzugabe in der Dokumentation zum Nähen", - "jargon.sa.term": "Nahtzugabe", - "jargon.serger.d": "Siehe Overlock in der Dokumentation zum Nähen", - "jargon.serger.term": "Overlock", - "jargon.topstitching.d": "Siehe Absteppen in der Dokumentation zum Nähen", - "jargon.topstitching.term": "Absteppen", - "jargon.trimming.d": "Siehe Zurückschneiden in der Dokumentation zum Nähen", - "jargon.trimming.term": "Zurückschneiden", - "jargon.twinNeedle.d": "Siehe Zwillingsnadel in der Dokumentation zum Nähen", - "jargon.twinNeedle.term": "Zwillingsnadel", - "jargon.zigZag.d": "Siehe Zickzackstich in der Dokumentation zum Nähen", - "jargon.zigZag.term": "Zickzackstich", - "jargon.freesewing.d": "FreeSewing ist eine Open-Source Plattform für Schnittmuster nach Maß", - "jargon.freesewing.term": "FreeSewing", - "jargon.patternOptions.d": "Die Schnittmusteroptionen erlauben es dir, das Design des Schnittmusters anzupassen", - "jargon.patternOptions.term": "Schnittmusteroptionen", - "jargon.draftSettings.d": "Mit den Entwurfseinstellungen legst du fest, wie ein Schnittmuster erzeugt wird", - "jargon.draftSettings.term": "Entwurfseinstellungen", - "jargon.patrons.d": "Förderer unterstützen Freesewing finanziell. Sie sind treue Unterstützer, die für eine nachhaltige Zukunft für freesewing.org, unseren Code, unsere Schnittmuster und unsere Community sorgen.", - "jargon.patrons.term": "Förderer", - "jargon.msf.d": "Médecins Sans Frontières/Ärzte ohne Grenzen - Siehe msf.org", - "jargon.msf.term": "MSF", - "m.ankle": "Knöchelumfang", - "m.biceps": "Oberarmweite", - "m.bustFront": "Oberweite vorne", - "m.bustSpan": "Brustpunkte Abstand", - "m.chest": "Oberweite", - "m.crossSeam": "Taille-Schritt-Taille", - "m.crossSeamFront": "Taille-Schritt", - "m.head": "Kopfumfang", - "m.heel": "Fersenumfang", - "m.highBustFront": "Oberbrustweite vorne", - "m.highBust": "Oberbrustweite", - "m.hips": "Hüftweite", - "m.hpsToBust": "HPS to bust", - "m.hpsToWaistBack": "HPS to waist back", - "m.hpsToWaistFront": "HPS to waist front", - "m.inseam": "Innere Beinlänge", - "m.knee": "Knieumfang", - "m.neck": "Halsweite", - "m.seat": "Gesäßweite", - "m.seatBack": "Gesäßweite hinten", - "m.crotchDepth": "Schritthöhe", - "m.shoulderSlope": "Schulterneigung", - "m.shoulderToElbow": "Schulter bis Ellenbogen", - "m.shoulderToShoulder": "Schulter zu Schulter", - "m.shoulderToWrist": "Schulter bis Handgelenk", - "m.underbust": "Unterbrustweite", - "m.upperLeg": "Oberschenkelweite", - "m.waist": "Taillenweite", - "m.waistBack": "Taillenweite hinten", - "m.waistToFloor": "Taille bis Boden", - "m.waistToHips": "Taille bis Hüfte", - "m.waistToKnee": "Taille bis Knie", - "m.waistToSeat": "Taille bis Gesäß", - "m.waistToUnderbust": "Taille bis Unterbrustweite", - "m.waistToUpperLeg": "Taille bis Oberschenkel", - "m.wrist": "Handgelenksumfang", - "og.advanced": "Fortgeschritten", - "og.armhole": "Armloch", - "og.closure": "Verschluss", - "og.collar": "Kragen", - "og.construction": "Konstruktion", - "og.cuffs": "Manschetten", - "og.darts": "Abnäher", - "og.elastic": "Gummi", - "og.fit": "Passform", - "og.pockets": "Taschen", - "og.preferences": "Einstellungen", - "og.sleevecap": "Armkugel", - "og.sleeves": "Ärmel", - "og.style": "Stil", - "og.backPockets": "Gesäßtaschen", - "og.frontPockets": "Vordere Taschen", - "og.waistband": "Bund", - "og.fly": "Hosenstall", - "parts.back": "Rückseite", - "parts.backBase": "Rückseite Basis", - "parts.base": "Basis", - "parts.bentBack": "Rückseite Bent", - "parts.bentBase": "Basis Bent", - "parts.bentFront": "Vorderseite Bent", - "parts.bentSleeve": "Ärmel Bent", - "parts.bentTopSleeve": "Oberarmel Bent", - "parts.bentUnderSleeve": "Unterarmel Bent", - "parts.buttonholePlacket": "Knopflochleiste", - "parts.buttonPlacket": "Knopfleiste", - "parts.collar": "Kragen", - "parts.collarStand": "Kragensteg", - "parts.cuff": "Manschette", - "parts.fabricTail": "Stoffschwanz", - "parts.fabricTip": "Stoffspitze", - "parts.frontBase": "Vorderseite Basis", - "parts.frontFacing": "Verkleidung vorderseite", - "parts.front": "Vorderseite", - "parts.frontLeft": "Vorne links", - "parts.frontLining": "Futter vorderseite", - "parts.frontRight": "Vorne rechts", - "parts.hoodCenter": "Mitte der Kapuze", - "parts.hood": "Kapuze", - "parts.hoodSide": "Kapuzenseite", - "parts.inset": "Einsatz", - "parts.interfacingTail": "Einlageschwanz", - "parts.interfacingTip": "Einlagespitze", - "parts.liningTail": "Futterschwanz", - "parts.liningTip": "Futterspitze", - "parts.loop": "Schleife", - "parts.panel1": "Teil 1", - "parts.panel2": "Teil 2", - "parts.panel3": "Teil 3", - "parts.panel4": "Teil 4", - "parts.panel5": "Teil 5", - "parts.panel6": "Teil 6", - "parts.panels": "Teile", - "parts.pocketBag": "Taschenbeutel", - "parts.pocketFacing": "Taschenverkleidung", - "parts.pocketInterfacing": "Tascheneinlage", - "parts.pocket": "Tasche", - "parts.pocketWelt": "Taschenpaspel", - "parts.side": "Seite", - "parts.sleeveBase": "Ärmel Basis", - "parts.sleevecap": "Armkugel", - "parts.sleevePlacketOverlap": "Übertritt der Ärmelleiste", - "parts.sleevePlacketUnderlap": "Untertritt der Ärmelleiste", - "parts.sleeve": "Ärmel", - "parts.topSleeve": "Oberärmel", - "parts.top": "Oben", - "parts.underCollar": "Unterkragen", - "parts.underSleeve": "Unterärmel", - "parts.waistband": "Bund", - "parts.yoke": "Passe", - "patterns.back": "Rückseite", - "patterns.bottomPanel": "Bottom Panel", - "patterns.buttonholePlacket": "Knopflochleiste", - "patterns.buttonPlacket": "Knopfleiste", - "patterns.collarAndUndercollar": "Kragen und Unterkragen", - "patterns.collarStand": "Kragensteg", - "patterns.cuff": "Manschette", - "patterns.cutOneStripToFinishTheNeckOpening": "Schneide einen Streifen aus, um die Halsöffnung zu versäubern", - "patterns.cutTwoStripsToFinishTheArmholes": "Schneide zwei Streifen, um die Armlöcher zu versäubern", - "patterns.cutUndercollarSlightlySmaller": "Unterkragen etwas kleiner schneiden", - "patterns.frontBackPanel": "Front and Back Panel", - "patterns.frontLeft": "Vorne links", - "patterns.frontRight": "Vorne rechts", - "patterns.front": "Vorderseite", - "patterns.fullLengthFromHps": "Volle Länge (vom höchsten Schulterpunkt)", - "patterns.handleWidth": "Breite der Griffe", - "patterns.hello": "Hallo", - "patterns.hoodCenter": "Mitte der Kapuze", - "patterns.hoodSide": "Kapuzenseite", - "patterns.inset": "Einsatz", - "patterns.length": "Länge", - "patterns.matchHere": "Stoffe entlang dieser Linie aufeinander abpassen", - "patterns.pocketFacing": "Taschenbesatz", - "patterns.pocket": "Tasche", - "patterns.sideOfTheCollarStand": "Seite des Kragenstegs", - "patterns.SidePanelReinforcement": "Side Reinforcement Panel", - "patterns.sidePanel": "Side Panel", - "patterns.side": "Seite", - "patterns.sleeve": "Ärmel", - "patterns.sleevePlacketOverlap": "Übertritt der Ärmelleiste", - "patterns.sleevePlacketUnderlap": "Untertritt der Ärmelleiste", - "patterns.strap": "Griff", - "patterns.strapLength": "Länge der Griffe", - "patterns.vent": "Schlitz", - "patterns.waistband": "Bund", - "patterns.width": "Breite", - "patterns.yoke": "Passe", - "patterns.zipperPanel": "Zipper Panel", - "patterns.zipperSize": "Standard Reißverschlussgröße", - "patterns.cutOnFoldAndGrainline": "In Bruch zuschneiden / Fadenlauf", - "patterns.cutOnFold": "Im Bruch zuschneiden", - "patterns.cut": "Schneiden", - "patterns.grainline": "Fadenlauf", - "patterns.onFold": "Im Stoffbruch", - "patterns.supportFreesewingBecomeAPatron": "Unterstütze FreeSewing und werde ein/e Förderer/in", - "patterns.theBlackOutsideOfThisBoxShouldMeasure": "Die Länge der Außenseite dieses Rechtecks sollte sein:", - "patterns.theWhiteInsideOfThisBoxShouldMeasure": "Die Länge der Innenseite dieses Rechtecks sollte sein:", - "settings.advanced.d": "Legt fest, ob erweiterte Einstellungen und Schnittmusteroptionen angezeigt werden sollen oder nicht", - "settings.advanced.t": "Expertenmodus", - "settings.paperless.d": "Zeichnet ein Schnittmuster mit allen benötigten Dimensionen, sodass du es direkt auf den Stoff oder ein anderes Medium transferieren kannst, ohne es ausdrucken zu müssen", - "settings.paperless.t": "Papierlos", - "settings.sa.d": "Steuert die Breite der Nahtzugabe, die in deinem Schnittmuster enthalten ist", - "settings.sa.t": "Nahtzugabe", - "settings.locale.d": "Legt die für deine Schnittmuster verwendete Sprache fest", - "settings.locale.t": "Sprache", - "settings.only.d": "Damit kannst du genau festlegen, welche Teile des Schnittmusters auf deinem Schnittmusterbogen erscheinen", - "settings.only.t": "Inhalte", - "settings.units.d": "Legt die in deinem Schnittmuster verwendete Maßeinheit fest", - "settings.units.t": "Maßeinheiten", - "settings.margin.d": "Legt den freien Rand um die einzelnen Teile des Schnittmusters fest", - "settings.margin.t": "Randabstand", - "settings.complete.d": "Legt fest, wie detailliert das Schnittmuster dargestellt wird; entweder ein vollständiges Schnittmuster mit allen Details oder eine einfache Kontur der Schnittmusterteile", - "settings.complete.t": "Detail", - "settings.layout.d": "Legt fest, wie die einzelnen Schnittmusterteile auf deinem Schnittmusterbogen angeordnet werden", - "settings.layout.t": "Layout", - "settings.debug.d": "Debuggen aktivieren, um zusätzliche Informationen dazu zu erhalten, wie dein Schnittmuster erstellt wurde", - "settings.debug.t": "Debug", - "welcome.units": "Wähle die Einheiten aus, die du verwenden möchtest", - "welcome.username": "Wähle einen Benutzernamen", - "welcome.avatar": "Profilbild hinzufügen", - "welcome.bio": "Erzähle uns ein wenig über dich", - "welcome.social": "Lass uns wissen, wo wir dir folgen können", - "welcome.newsletter": "Teile uns deine Newsletter-Präferenz mit", - "welcome.letUsSetupYourAccount": "Lass uns deinen Account einrichten.", - "welcome.walkYouThrough": "Wir führen dich durch die folgenden Schritte:", - "welcome.someOptional": "Obwohl alle diese Schritte optional sind, empfehlen wir dir sie durchzugehen, um das Beste aus FreeSewing herauszuholen.", - "aaron.armholeDrop.d": "Senkt das Armloch um diesen Wert. Negative Werte erhöhen es.", - "aaron.armholeDrop.t": "Armlochabsenkung", - "aaron.backlineBend.d": "Bestimmt die Form / Krümmung der Rückseite der Armlöcher.", - "aaron.backlineBend.t": "Armlochform hinten", - "aaron.hipsEase.d": "Die Menge an Bequemlichkeitszugabe an deinen Hüften.", - "aaron.hipsEase.t": "Zugabe Hüfte", - "aaron.necklineBend.d": "Bestimmt die Form / Krümmung des Halsausschnitts vorne.", - "aaron.necklineBend.t": "Ausschnittsform", - "aaron.necklineDrop.d": "Wie tief der Ausschnitt vorne geht.", - "aaron.necklineDrop.t": "Ausschnitt Tiefe", - "aaron.shoulderStrapPlacement.d": "Bestimmt, ob der Schulterträger näher am Hals (niedrigere Zahlen), oder näher an der Schulter (höhere Zahlen) liegt.", - "aaron.shoulderStrapPlacement.t": "Platzierung der Schulterträger", - "aaron.shoulderStrapWidth.d": "Die Breite der Schulterträger.", - "aaron.shoulderStrapWidth.t": "Breite der Schulterträger", - "aaron.stretchFactor.d": "Bestimmt die horizontale negative Bewegungszugabe.", - "aaron.stretchFactor.t": "Dehnung", - "albert.backOpening.d": "Steuert die Öffnung an der Rückseite der Schürze", - "albert.backOpening.t": "Hintere Öffnung", - "albert.chestDepth.d": "Steuert die Länge der Riemen", - "albert.chestDepth.t": "Riemenlänge", - "albert.lengthBonus.d": "Steuert die Länge der Schürze", - "albert.lengthBonus.t": "Längenzugabe", - "albert.bibLength.d": "Steuert die Länge des Latzes", - "albert.bibLength.t": "Latzlänge", - "albert.bibWidth.d": "Steuert die Breite des Latzes", - "albert.bibWidth.t": "Latzbreite", - "albert.strapWidth.d": "Steuert die Breite des Riemens", - "albert.strapWidth.t": "Riemenbreite", - "bella.chestEase.d": "Controls the amount of ease at the fullest part of your chest", - "bella.chestEase.t": "Brustzugabe", - "bella.waistEase.d": "Controls the amount of ease at your waist", - "bella.waistEase.t": "Taillenzugabe", - "bella.bustSpanEase.d": "Controls the amount of (horizontal) ease added to your bust span when locating the bust point.", - "bella.bustSpanEase.t": "Bust span ease", - "bella.backDartHeight.d": "Controls the height of the back dart", - "bella.backDartHeight.t": "Back dart height", - "bella.bustDartLength.d": "Controls the length of the bust dart", - "bella.bustDartLength.t": "Länge des Brustabnähers", - "bella.waistDartLength.d": "Controls the length of the waist dart", - "bella.waistDartLength.t": "Länge des Taillenabnähers", - "bella.bustDartCurve.d": "Controls the curvature of the bust dart", - "bella.bustDartCurve.t": "Bust dart curve", - "bella.armholeDepth.d": "Steuert die Tiefe des Armloches", - "bella.armholeDepth.t": "Armlochtiefe", - "bella.backArmholeSlant.d": "Slightly rotates the armhole around its pitch point", - "bella.backArmholeSlant.t": "Back armhole slant", - "bella.backArmholeCurvature.d": "Controls how deep the armhole is scooped out at the back bottom", - "bella.backArmholeCurvature.t": "Back armhole curvature", - "bella.frontArmholePitchDepth.d": "Tweaks the horizontal placement of the front armhole pitch point", - "bella.frontArmholePitchDepth.t": "Front armhole pitch depth", - "bella.backArmholePitchDepth.d": "Tweaks the horizontal placement of the back armhole pitch point", - "bella.backArmholePitchDepth.t": "Back armhole pitch depth", - "bella.backNeckCutout.d": "Controls how deep the neck opening is scooped out at at the back", - "bella.backNeckCutout.t": "Back neck cutout", - "bella.backHemSlope.d": "Controls the slope of the hem at the back", - "bella.backHemSlope.t": "Back hem slope", - "bella.frontShoulderWidth.d": "Controls the narrowness of the front shoulders relative to the back", - "bella.frontShoulderWidth.t": "Vordere Schulterbreite", - "bella.highBustWidth.d": "Allows you to tweak the hight bust width at the front", - "bella.highBustWidth.t": "High bust width", - "benjamin.adjustmentRibbon.d": "Einstellband verwenden oder nicht", - "benjamin.adjustmentRibbon.t": "Einstellband", - "benjamin.bandLength.d": "Lände des Bandes", - "benjamin.bandLength.t": "Bandlänge", - "benjamin.tipWidth.d": "Breite der Spitzen", - "benjamin.tipWidth.t": "Spitzenbreite", - "benjamin.knotWidth.d": "Breite des Knotens", - "benjamin.knotWidth.t": "Knotenbreite", - "benjamin.bowLength.d": "Länge der Fliege (wenn geknotet)", - "benjamin.bowLength.t": "Fliegenlänge", - "benjamin.bowStyle.d": "Stil der Fliege", - "benjamin.bowStyle.t": "Fliegen-Stil", - "benjamin.endStyle.d": "Stil für die Enden der Fliege", - "benjamin.endStyle.t": "Enden-Stil", - "bent.sleeveBend.d": "Steuert die Krümmung des Ärmels am Ellbogen.", - "bent.sleeveBend.t": "Ärmelkrümmung", - "bent.sleevecapHeight.d": "Steuert die Höhe der Armkugel.", - "bent.sleevecapHeight.t": "Armkugel Höhe", - "breanna.shoulderDart.d": "Ob ein Abnäher an der Schulter zur Abrundung des Rückens hinzugefügt werden soll oder nicht", - "breanna.shoulderDart.t": "Schulterabnäher", - "breanna.shoulderDartSize.d": "Größe des Schulterabnähers", - "breanna.shoulderDartSize.t": "Größe der Schulterabnäher", - "breanna.shoulderDartLength.d": "Die Länge des Abnähers an der Schulter", - "breanna.shoulderDartLength.t": "Länge des Schulterabnähers", - "breanna.waistDart.d": "Ob ein Abnäher an der Taille zur Abrundung des Rückens hinzugefügt werden soll oder nicht", - "breanna.waistDart.t": "Taillenabnäher", - "breanna.waistDartSize.d": "Die Größe des Abnähers an der Taille", - "breanna.waistDartSize.t": "Größe des Taillenabnähers", - "breanna.waistDartLength.d": "Die Länge des Abnähers an der Taille", - "breanna.waistDartLength.t": "Länge des Taillenabnähers", - "breanna.verticalEase.d": "Die Menge an Zugabe, die über die Länge des Kleidungsstückes verteilt wird", - "breanna.verticalEase.t": "Vertikale Zugabe", - "breanna.waistEase.d": "Die Menge an Bequemlichkeits-/Bewegungszugabe an der Taille", - "breanna.waistEase.t": "Taillenzugabe", - "breanna.primaryBustDart.d": "Where to place the bust dart to shape the chest", - "breanna.primaryBustDart.t": "Brustabnäher", - "breanna.primaryBustDartLength.d": "Die Länge des Abnähers an der Brust", - "breanna.primaryBustDartLength.t": "Länge des Brustabnähers", - "breanna.secondaryBustDart.d": "Optionally include a secondary bust dart to distribute the shaping of the chest", - "breanna.secondaryBustDart.t": "Sekundärer Brustabnäher", - "breanna.secondaryBustDartLength.d": "Die Länge des sekundären Abnähers an der Brust", - "breanna.secondaryBustDartLength.t": "Länge des sekundären Brustabnähers", - "breanna.primaryBustDartShaping.d": "Steuert die Balance zwischen den sekundären und den Hauptbrustabnähern", - "breanna.primaryBustDartShaping.t": "Formgebung der Brustabnäher", - "brian.acrossBackFactor.d": "Beeinflusst das Verhältnis zwischen Rücken- und Schulterweite measurement.", - "brian.acrossBackFactor.t": "Rückenweitenverhältnis", - "brian.armholeDepthFactor.d": "Steuert die Tiefe des Armloches. Höhere Werte ergeben ein tieferes Armloch.", - "brian.armholeDepthFactor.t": "Tiefenfaktor des Armloches", - "brian.backNeckCutout.d": "Wie tief der Hals am Rücken ausgeschnitten ist", - "brian.backNeckCutout.t": "Ausschnitt im Nacken", - "brian.bicepsEase.d": "Die Menge an Bewegungszugabe am Oberarm. Während wir versuchen, dies zu respektieren, hat das genaue Anbringen des Ärmels am Armloch Vorrang vor der Einhaltung der genauen Zugabe.", - "brian.bicepsEase.t": "Bizeps Zugabe", - "brian.collarEase.d": "Die Menge an Bequemlichkeits-/Bewegungszugabe um deinen Hals herum", - "brian.collarEase.t": "Kragen Zugabe", - "brian.chestEase.d": "Die Menge an Bewegungs-/Bequemlichkeitszugabe an deiner Brust.", - "brian.chestEase.t": "Brust Zugabe", - "brian.cuffEase.d": "Die Bequemlichkeits-/Bewegungszugabe am Handgelenk.", - "brian.cuffEase.t": "Manschette Zugabe", - "brian.frontArmholeDeeper.d": "Um wie viel das vordere Armloch tiefer ausgeschnitten ist als im Rücken.", - "brian.frontArmholeDeeper.t": "Zusätzlicher Ausschnitt am vorderen Armloch", - "brian.lengthBonus.d": "Der Betrag, um den das Kleidungsstück verlängert wird. Ein negativer Wert verkürzt es.", - "brian.lengthBonus.t": "Längenzugabe", - "brian.s3Collar.d": "Increase this option to shift the shoulder seam forward on the collar side. Decreasing it shifts it backwards.", - "brian.s3Collar.t": "Schulternahtverschiebung: Kragenseite", - "brian.s3Armhole.d": "Increase this option to shift the shoulder seam forward on the armhole side. Decreasing it shifts it backwards.", - "brian.s3Armhole.t": "Schulternahtverschiebung: Armlochseite", - "brian.shoulderEase.d": "Die Menge an Bequemlichkeits-/Bewegungszugabe an der Schulter. Dies erhöht den Schulterabstand, um zusätzliche Lagen oder die Dicke des Stoffes zu beherbergen.", - "brian.shoulderEase.t": "Schulter Zugabe", - "brian.shoulderSlopeReduction.d": "Der Betrag, um den die Schulterneigung reduziert wird, um eine Schulterpolsterung zu ermöglichen.", - "brian.shoulderSlopeReduction.t": "Verringerung der Schulterneigung", - "brian.sleeveLengthBonus.d": "Der Betrag, um den der Ärmel verlängert wird. Ein negativer Wert verkürzt ihn.", - "brian.sleeveLengthBonus.t": "Ärmel Längenzugabe", - "brian.sleevecapEase.d": "Der Betrag, um den die Armkugelnaht länger ist als die Armlochnaht.", - "brian.sleevecapEase.t": "Armkugel Zugabe", - "brian.sleevecapTopFactorX.d": "Steuert die horizontale Position der Armkugel oben.", - "brian.sleevecapTopFactorX.t": "Armkugel Oben X", - "brian.sleevecapTopFactorY.d": "Steuert die Höhe der Armkugel. Ein höherer Wert führt zu einer höheren und schmaleren Armkugel.", - "brian.sleevecapTopFactorY.t": "Armkugel Oben Y", - "brian.sleevecapBackFactorX.d": "Steuert die Platzierung des hinteren Neigungspunkts der Armkugel auf der X-Achse (horizontal)", - "brian.sleevecapBackFactorX.t": "Armkugel Hinten X", - "brian.sleevecapBackFactorY.d": "Steuert die Platzierung des hinteren Neigungspunkts der Armkugel auf der Y-Achse (vertikal)", - "brian.sleevecapBackFactorY.t": "Armkugel Hinten Y", - "brian.sleevecapFrontFactorX.d": "Steuert die Platzierung des vorderen Neigungspunkts der Armkugel auf der X-Achse (horizontal)", - "brian.sleevecapFrontFactorX.t": "Armkugel Vorne X", - "brian.sleevecapFrontFactorY.d": "Steuert die Platzierung des vorderen Neigungspunkts der Armkugel auf der Y-Achse (vertikal)", - "brian.sleevecapFrontFactorY.t": "Armkugel Vorne Y", - "brian.sleevecapQ1Offset.d": "Steuert die Krümmung der Armkugel im ersten Quadranten (vorderes Armloch)", - "brian.sleevecapQ1Offset.t": "Offset der Armkugel Q1", - "brian.sleevecapQ2Offset.d": "Steuert die Krümmung der Armkugel im zweiten Quadranten (vordere Schulter)", - "brian.sleevecapQ2Offset.t": "Offset der Armkugel Q2", - "brian.sleevecapQ3Offset.d": "Steuert die Krümmung der Armkugel im dritten Quadranten (hintere Schulter)", - "brian.sleevecapQ3Offset.t": "Offset der Armkugel Q3", - "brian.sleevecapQ4Offset.d": "Steuert die Krümmung der Armkugel im vierten Quadranten (hinteres Armloch)", - "brian.sleevecapQ4Offset.t": "Offset der Armkugel Q4", - "brian.sleevecapQ1Spread1.d": "Steuert die Spreizung der Armkugel im ersten Quadranten in Richtung des Armlochs", - "brian.sleevecapQ1Spread1.t": "Armkugel Q1 Spreizung nach unten", - "brian.sleevecapQ1Spread2.d": "Steuert die Spreizung der Armkugel im ersten Quadranten in Richtung der Schulter", - "brian.sleevecapQ1Spread2.t": "Armkugel Q1 Spreizung nach oben", - "brian.sleevecapQ2Spread1.d": "Steuert die Spreizung der Armkugel im zweiten Quadranten in Richtung des Armlochs", - "brian.sleevecapQ2Spread1.t": "Armkugel Q2 Spreizung nach unten", - "brian.sleevecapQ2Spread2.d": "Steuert die Spreizung der Armkugel im zweiten Quadranten in Richtung der Schulter", - "brian.sleevecapQ2Spread2.t": "Armkugel Q2 Spreizung nach oben", - "brian.sleevecapQ3Spread1.d": "Steuert die Spreizung der Armkugel im dritten Quadranten in Richtung der Schulter", - "brian.sleevecapQ3Spread1.t": "Armkugel Q3 Spreizung nach oben", - "brian.sleevecapQ3Spread2.d": "Steuert die Spreizung der Armkugel im dritten Quadranten in Richtung des Armlochs", - "brian.sleevecapQ3Spread2.t": "Armkugel Q3 Spreizung nach unten", - "brian.sleevecapQ4Spread1.d": "Steuert die Spreizung der Armkugel im vierten Quadranten in Richtung der Schulter", - "brian.sleevecapQ4Spread1.t": "Armkugel Q4 Spreizung nach oben", - "brian.sleevecapQ4Spread2.d": "Steuert die Spreizung der Armkugel im vierten Quadranten in Richtung des Armlochs", - "brian.sleevecapQ4Spread2.t": "Armkugel Q4 Spreizung nach unten", - "brian.sleeveWidthGuarantee.d": "Steuert, wie viel von der Ärmelbreite garantiert wird. Dies bestimmt, um wie viel wir die Ärmelbreite verändern können, um die Ärmel in das Armloch einzupassen.", - "brian.sleeveWidthGuarantee.t": "Garantie der Ärmelbreite", - "bruce.bulge.d": "Vergrößert den Winkel, um mehr Platz in der vorderen Tasche zu schaffen.", - "bruce.bulge.t": "Wölbung", - "bruce.legBonus.d": "Zusätzliche Länge für die Beine.", - "bruce.legBonus.t": "Beinlängen-Bonus", - "bruce.rise.d": "Betrag, um den die Taille angehoben wird. Ein negativer Wert senkt sie ab.", - "bruce.rise.t": "Anstieg", - "bruce.stretch.d": "Die Menge an negativer Bewegungszugabe.", - "bruce.stretch.t": "Dehnung", - "bruce.legStretch.d": "Das beste Ergebnis erzielst du, wenn du den Sitz der Beine etwas enger machst — Sag Nein zu klaffenden Lücken.", - "bruce.legStretch.t": "Bein Dehnung", - "bruce.backRise.d": "Prozentsatz, um den die Taille am Rücken angehoben wird.", - "bruce.backRise.t": "Anstieg hinten", - "carlita.contour.d": "Legt fest, wie stark figurbetont die Wiener Nähte sind.", - "carlita.contour.t": "Kontur", - "carlton.seatEase.d": "Menge an Bequemlichkeits-/Bewegungszugabe an deinem Hintern", - "carlton.seatEase.t": "Zugabe Gesäß", - "carlton.pocketPlacementHorizontal.d": "Die (horizontale) Position der Taschen", - "carlton.pocketPlacementHorizontal.t": "Horizontale Taschenplatzierung", - "carlton.pocketPlacementVertical.d": "Die (vertikale) Position der Taschen", - "carlton.pocketPlacementVertical.t": "Vertikale Taschenplatzierung", - "carlton.collarHeight.d": "Höhe des Kragens", - "carlton.collarHeight.t": "Kragenhöhe", - "carlton.length.d": "Gesamtlänge", - "carlton.length.t": "Länge", - "carlton.pocketFlapRadius.d": "Der Betrag, um den die Taschenlasche abgerundet ist", - "carlton.pocketFlapRadius.t": "Taschenlaschenradius", - "carlton.pocketRadius.d": "Der Betrag, um den die Tasche abgerundet ist", - "carlton.pocketRadius.t": "Taschenradius", - "carlton.chestPocketHeight.d": "Höhe der Brusttasche", - "carlton.chestPocketHeight.t": "Brusttaschenhöhe", - "carlton.beltWidth.d": "Breite des Gürtels", - "carlton.beltWidth.t": "Gürteilbreite", - "carlton.buttonSpacingHorizontal.d": "Horizontaler Abstand der Knöpfe, bestimmt auch den Übertritt des vorderen Verschlusses", - "carlton.buttonSpacingHorizontal.t": "Horizontaler Knopfabstand", - "cathrin.panels.d": "Die Anzahl der zu erstellenden Schnittteile. Mehr Schnittteile passen kurvenreicheren Modellen besser.", - "cathrin.panels.t": "Anzahl der Schnittteile", - "cathrin.waistReduction.d": "Der Betrag, um den das Korsett deine Taille einschnüren soll.", - "cathrin.waistReduction.t": "Taillenreduzierung", - "cathrin.backOpening.d": "Öffnung in der hinteren Mitte", - "cathrin.backOpening.t": "Hintere Öffnung", - "cathrin.backRise.d": "Wie stark sich die hinteren Schnittteile von den Armen bis zur hinteren Mitte erstrecken.", - "cathrin.backRise.t": "Hintere Anstieg", - "cathrin.backDrop.d": "Wie weit sich die hinteren Schnittteile von den Hüften in Richtung Rückenmitte absenken. Negative Werte heben den Rücken an.", - "cathrin.backDrop.t": "Rückenabsenkung", - "cathrin.frontRise.d": "Aufstieg der Frontteile in der Mitte zwischen den Brüsten. Negative Werte verringern sie.", - "cathrin.frontRise.t": "Frontanstieg", - "cathrin.frontDrop.d": "Wie weit sich die Frontteile von Ihrer Hüfte in Richtung Ihrer Mittelfront absenken.", - "cathrin.frontDrop.t": "Frontabsenkung", - "cathrin.hipRise.d": "Wie stark die Seitenteile auf den Hüften stehen.", - "cathrin.hipRise.t": "Hüftanstieg", - "charlie.backPocketHorizontalPlacement.d": "Steuert die horizontale Platzierung der hinteren Tasche", - "charlie.backPocketHorizontalPlacement.t": "Horizontale Platzierung der hinteren Tasche", - "charlie.backPocketVerticalPlacement.d": "Steuert die vertikale Platzierung der hinteren Tasche", - "charlie.backPocketVerticalPlacement.t": "Vertikale Platzierung der hinteren Tasche", - "charlie.backPocketWidth.d": "Steuert die Breite der hinteren Tasche", - "charlie.backPocketWidth.t": "Breite der hinteren Tasche", - "charlie.backPocketDepth.d": "Steuert die Tiefe der hinteren Tasche", - "charlie.backPocketDepth.t": "Tiefe der hinteren Tasche", - "charlie.frontPocketSlantDepth.d": "Controls the depth of the (front) pocket slant", - "charlie.frontPocketSlantDepth.t": "Front pocket slant depth", - "charlie.frontPocketSlantWidth.d": "Controls the width of the (front) pocket slant", - "charlie.frontPocketSlantWidth.t": "Front pocket slant width", - "charlie.frontPocketSlantRound.d": "Controls how far from the end of the slant we start rounding into the outseam", - "charlie.frontPocketSlantRound.t": "Front pocket slant round", - "charlie.frontPocketSlantBend.d": "Controls the radius by which we round the pocket slant into the outseam", - "charlie.frontPocketSlantBend.t": "Front pocket slant bend", - "charlie.frontPocketWidth.d": "Steuert die Breite der Vordertasche", - "charlie.frontPocketWidth.t": "Breite der Vordertasche", - "charlie.frontPocketDepth.d": "Controls the depth of the front pocket bag", - "charlie.frontPocketDepth.t": "Tiefe der Vordertasche", - "charlie.frontPocketFacing.d": "Controls how far the pocket facing extends into the pocket bag", - "charlie.frontPocketFacing.t": "Front pocket facing", - "charlie.beltLoops.d": "Steuert die Anzahl der Gürtelschlaufen", - "charlie.beltLoops.t": "Gürtelschlaufen", - "charlie.flyCurve.d": "Controls the curvature of the fly J-seam", - "charlie.flyCurve.t": "Fly curve", - "charlie.flyLength.d": "Controls the length of the fly", - "charlie.flyLength.t": "Fly length", - "charlie.flyWidth.d": "Controls how far the J-seam of offset from the fly edge", - "charlie.flyWidth.t": "Fly width", - "charlie.waistbandCurve.d": "Controls how curved the waistband is.", - "charlie.waistbandCurve.t": "Waistband Curve", - "cornelius.fullness.d": "Steuert die Fülle der Hosen", - "cornelius.fullness.t": "Fülle", - "cornelius.waistbandBelowWaist.d": "Percentage to move the waistband below the actual waist", - "cornelius.waistbandBelowWaist.t": "Lower waistband", - "cornelius.waistReduction.d": "Percentage to reduce the waistband", - "cornelius.waistReduction.t": "Waist reduction", - "cornelius.cuffWidth.d": "Width of the leg cuff", - "cornelius.cuffWidth.t": "Cuff width", - "cornelius.cuffStyle.d": "Style of the leg cuff", - "cornelius.cuffStyle.t": "Cuff style", - "cornelius.bandBelowKnee.d": "Controls the cuff distance from the knee", - "cornelius.bandBelowKnee.t": "Cuff below knee", - "cornelius.kneeToBelow.d": "Controls the tightness of the cuff as compared to the knee", - "cornelius.kneeToBelow.t": "Cuff length", - "cornelius.ventLength.d": "Controls the length of the vent between knee and cuff", - "cornelius.ventLength.t": "Vent length", - "diana.shoulderSeamLength.d": "Steuert die Länge der Schulternaht", - "diana.shoulderSeamLength.t": "Schulternahtlänge", - "diana.drapeAngle.d": "Steuert die Stärke des Fallwinkels", - "diana.drapeAngle.t": "Fallwinkel", - "florence.height.d": "Steuert die Höhe der Gesichtsmaske", - "florence.height.t": "Höhe", - "florence.length.d": "Steuert die Länge der Gesichtsmaske", - "florence.length.t": "Länge", - "florence.curve.d": "Steuert die Krümmung der oberen Kante der Gesichtsmaske", - "florence.curve.t": "Krümmung", - "florent.headEase.d": "Bequemlichkeits-/Bewegungszugabe zum Umfang deines Kopfes", - "florent.headEase.t": "Kopfumfangszugabe", - "holmes.lengthRatio.d": "fixme", - "holmes.lengthRatio.t": "Längenverhältnis", - "holmes.goreNumber.d": "Die Anzahl der zur Konstruktion der Halbkugel verwendeten Keile", - "holmes.goreNumber.t": "Anzahl Keile", - "holmes.brimAngle.d": "Steuert die Krümmung der Krempe", - "holmes.brimAngle.t": "Winkel der Krempe", - "holmes.brimWidth.d": "Steuert die Breite der Krempe", - "holmes.brimWidth.t": "Breite der Krempe", - "hortensia.size.d": "Steuert die Gesamtgröße der Handtasche", - "hortensia.size.t": "Größe", - "hortensia.zipperSize.d": "Welche Reißverschlussgröße verwendet werden soll", - "hortensia.zipperSize.t": "Größe des Reißverschlusses", - "hortensia.strapLength.d": "Steuert die Riemenlänge", - "hortensia.strapLength.t": "Länge des Riemens", - "hortensia.handleWidth.d": "Steuert die Breite des Griffes", - "hortensia.handleWidth.t": "Breite des Griffes", - "huey.pocket.d": "Ob eine Fronttasche hinzugefügt werden soll oder nicht", - "huey.pocket.t": "Tasche", - "huey.pocketHeight.d": "Steuert die Höhe der Tasche", - "huey.pocketHeight.t": "Taschenhöhe", - "huey.hoodHeight.d": "Steuert die Höhe der Kapuze", - "huey.hoodHeight.t": "Kapuzenhöhe", - "huey.hoodCutback.d": "Leg fest, wie weit die Öffnung der Kapuze zurückgeschnitten wird", - "huey.hoodCutback.t": "Kapuzenausschnitt", - "huey.hoodClosure.d": "Legt fest, wie viel von der der Kapuze zum vorderen Verschluss gehört", - "huey.hoodClosure.t": "Kapuzenverschluss", - "huey.hoodDepth.d": "Steuert die Tiefe der Kapuze", - "huey.hoodDepth.t": "Kapuzentiefe", - "huey.hoodAngle.d": "Steuert den Winkel, mit welchem die Kapuze angebracht wird", - "huey.hoodAngle.t": "Winkel der Kapuze", - "hugo.hipsEase.d": "Die Menge an Bequemlichkeits-/Bewegungszugabe an deinen Hüften.", - "hugo.hipsEase.t": "Bequemlichkeitszugabe Hüfte", - "jaeger.centerBackDart.d": "Abnäher in der hinteren Mitte, um einen abgerundeten Rücken unterzubringen", - "jaeger.centerBackDart.t": "Abnäher in der hinteren Mitte", - "jaeger.sleeveVentLength.d": "Länge der Ärmelöffnung", - "jaeger.sleeveVentLength.t": "Ärmellüftungslänge", - "jaeger.sleeveVentWidth.d": "Breite der Ärmelöffnung", - "jaeger.sleeveVentWidth.t": "Ärmelschlitzbreite", - "jaeger.chestShaping.d": "Amount of shaping to accommodate for the chest curve", - "jaeger.chestShaping.t": "Brustformung", - "jaeger.frontDartPlacement.d": "Position der vorderen Abnäher", - "jaeger.frontDartPlacement.t": "Platzierung des vorderen Abnähers", - "jaeger.frontOverlap.d": "Wie weit der Stoff über die Schließknöpfe hinausragt", - "jaeger.frontOverlap.t": "Übertritt vorne", - "jaeger.sideFrontPlacement.d": "Die Position der Seiten- / Frontgrenze", - "jaeger.sideFrontPlacement.t": "Seitliche / vordere Platzierung", - "jaeger.chestPocketDepth.d": "Die Tiefe der Brusttasche", - "jaeger.chestPocketDepth.t": "Brusttasche Tiefe", - "jaeger.chestPocketWidth.d": "Die Breite der Brusttasche", - "jaeger.chestPocketWidth.t": "Brusttaschenbreite", - "jaeger.chestPocketPlacement.d": "Die Position der Brusttasche", - "jaeger.chestPocketPlacement.t": "Platzierung der Brusttasche", - "jaeger.chestPocketAngle.d": "Der Winkel, unter dem die Brusttasche platziert wird", - "jaeger.chestPocketAngle.t": "Brusttaschenwinkel", - "jaeger.chestPocketWeltSize.d": "Die Größe der Brusttasche", - "jaeger.chestPocketWeltSize.t": "Brusttasche Rahmengröße", - "jaeger.frontPocketPlacement.d": "Position der Fronttasche", - "jaeger.frontPocketPlacement.t": "Fronttaschenplatzierung", - "jaeger.frontPocketWidth.d": "Die Breite der Fronttasche", - "jaeger.frontPocketWidth.t": "Breite der Fronttasche", - "jaeger.frontPocketDepth.d": "Die Tiefe der Fronttasche", - "jaeger.frontPocketDepth.t": "Tiefe der Vordertasche", - "jaeger.frontPocketRadius.d": "Der Radius, um den die Fronttasche gerundet ist", - "jaeger.frontPocketRadius.t": "Radius der Vordertasche", - "jaeger.innerPocketPlacement.d": "Die Position der Innentasche", - "jaeger.innerPocketPlacement.t": "Innentaschenplatzierung", - "jaeger.innerPocketWidth.d": "Die Breite der Innentasche", - "jaeger.innerPocketWidth.t": "Innentaschenbreite", - "jaeger.innerPocketDepth.d": "Die Tiefe der Innentasche", - "jaeger.innerPocketDepth.t": "Innentaschentiefe", - "jaeger.innerPocketWeltHeight.d": "Die Höhe der Innentasche", - "jaeger.innerPocketWeltHeight.t": "Innentasche Rahmenhöhe", - "jaeger.pocketFoldover.d": "Der Betrag, um den sich der Hauptstoff in der Tasche befindet", - "jaeger.pocketFoldover.t": "Taschenfalte", - "jaeger.centerFrontHemDrop.d": "Der Betrag, um den der Saum zur vorderen Mitte hin abgesenkt wird", - "jaeger.centerFrontHemDrop.t": "Saumabfall in der Mitte", - "jaeger.backVent.d": "Die Anzahl der hinteren Öffnungen", - "jaeger.backVent.t": "Hinterlüftung", - "jaeger.backVentLength.d": "Die Länge der Hinterlüftung(en)", - "jaeger.backVentLength.t": "Rückenlüftungslänge", - "jaeger.buttonLength.d": "Die Strecke, über die Knöpfe verteilt werden", - "jaeger.buttonLength.t": "Knopflänge", - "jaeger.frontCutawayAngle.d": "Der Winkel, unter dem die Vorderseite zum Saum hin abgeschnitten wird", - "jaeger.frontCutawayAngle.t": "Frontschnittwinkel", - "jaeger.frontCutawayStart.d": "Die Stelle, an der sich die Vorderseite zum Saum hin öffnet", - "jaeger.frontCutawayStart.t": "Stern vorne", - "jaeger.frontCutawayEnd.d": "Wenn Sie diesen Wert erhöhen, bleibt der vordere Schnitt näher an der vorderen Mitte", - "jaeger.frontCutawayEnd.t": "Vorderes Cutaway-Ende", - "jaeger.collarSpread.d": "Der Kragenausschnitt steuert, wie der Kragen über die Schultern drapiert", - "jaeger.collarSpread.t": "Kragen ausgebreitet", - "jaeger.lapelStart.d": "Position, wo die Mittelfront in das Revers geht", - "jaeger.lapelStart.t": "Revers Beginn", - "jaeger.lapelReduction.d": "Wie weit ist die Spitze der Revers nach innen gedreht?", - "jaeger.lapelReduction.t": "Reversverkleinerung", - "jaeger.collarHeight.d": "Höhe des Kragens", - "jaeger.collarHeight.t": "Kragenhöhe", - "jaeger.collarNotchDepth.d": "Tiefe der Kragenkerbe", - "jaeger.collarNotchDepth.t": "Kragentiefe", - "jaeger.collarNotchAngle.d": "Winkel der Kragenkerbe", - "jaeger.collarNotchAngle.t": "Kragenwinkel", - "jaeger.collarNotchReturn.d": "Wie viel Kragen kommt von der Kerbe im Vergleich zum Revers zurück?", - "jaeger.collarNotchReturn.t": "Kragenrückkehr", - "jaeger.rollLineCollarHeight.d": "Wie sehr die Rollschnur den Hals umarmt", - "jaeger.rollLineCollarHeight.t": "Rollkragenhöhe", - "jaeger.hemRadius.d": "Der Betrag, um den der Saum gerundet ist", - "jaeger.hemRadius.t": "Saumradius", - "paco.heelEase.d": "Größe der Bequemlichkeitszugabe an der Ferse (wenn man in das Hosenbein hineinsteigt)", - "paco.heelEase.t": "Bequemlichkeitszugabe Ferse", - "paco.frontPockets.d": "Ob vordere Taschen an der Seitennaht hinzugefügt werden sollen oder nicht", - "paco.frontPockets.t": "Vordere Taschen", - "paco.backPockets.d": "Hinzufügen einer Kedertasche zur Rückseite oder nicht", - "paco.backPockets.t": "Gesäßtaschen", - "paco.elasticatedHem.d": "Ob ein elastischer Saum gewünscht ist oder nicht", - "paco.elasticatedHem.t": "Elastischer Saum", - "paco.ankleElastic.d": "Breite des (optionalen) Gummizugs am Knöchel/Saum", - "paco.ankleElastic.t": "Knöchel/Saum Gummizugbreite", - "penelope.backDartDepthFactor.d": "Wie weit der rückwärtige Abnäher vom Taillenbund nach unten geht. Dies ist ein Faktor des Abstandes von der natürlichen Taille bis zum Gesäßumfang.", - "penelope.backDartDepthFactor.t": "Zurück zum Abnäherinhalttiefenfaktor", - "penelope.backVent.d": "Fügt einen Bewegungschlitz hinten am Rock hinzu.", - "penelope.backVent.t": "Hinterer Gehschlitz", - "penelope.backVentLength.d": "Die Länge des Bewegungschlitzes hinten als ein Prozentsatz der Gesamtrocklänge.", - "penelope.backVentLength.t": "Hinterer Gehschlitz Länge", - "penelope.dartToSideSeamFactor.d": "Prozentuales Verhältnis wieviel der Reduktion von der Hüftweite zur Taille über die Abnäher und wieviel über die Seitennäht erzielt wurde.", - "penelope.dartToSideSeamFactor.t": "Abnäher zu Seitennaht Faktor", - "penelope.frontDartDepthFactor.d": "Wie weit nach unten der vordere Abnäher von der Taillenlinie geht. Dies ist ein Faktor des Maßes von der natürlichen Taille zum Gesäßumfang.", - "penelope.frontDartDepthFactor.t": "Vorderer Abnäherinhälttiefenfaktor", - "penelope.hem.d": "Breite des Saumes. Maß in absoluten Werten angeben.", - "penelope.hem.t": "Höhe des Saumes", - "penelope.hemBonus.d": "Diese Option reduziert die Saumweite. Sie ist ein prozentualer Anteil des Gesäßumfangs.", - "penelope.hemBonus.t": "Saumzugabe", - "penelope.lengthBonus.d": "Dies legt Länge des Rockes fest. Es ist einem Prozentsatz des Abstands natürliche Taille zu Knie definiert.", - "penelope.lengthBonus.t": "Längenzugabe", - "penelope.nrOfDarts.d": "Die Anzahl der Abnäher, die in dem Schnittmuster verwendet werden. Das Maximum ist 2. Dies kann reduziert werden, wenn das Schnittmuster zu kleine Abnäher erstellt.", - "penelope.nrOfDarts.t": "Anzahl Abnäher", - "penelope.seatEase.d": "Zugegebene Weite auf Höhe des Gesäßs.", - "penelope.seatEase.t": "Hüftzugabe", - "penelope.waistBand.d": "Füge einen Taillenbund zum Schnittmuster hinzu.", - "penelope.waistBand.t": "Taillenbund", - "penelope.waistBandWidth.d": "Die Breite des Taillenbundes.", - "penelope.waistBandWidth.t": "Breite des Taillenbundes", - "penelope.waistEase.d": "Zugegebene Weite auf Taillenhöhe.", - "penelope.waistEase.t": "Taillenzugabe", - "penelope.zipperLocation.d": "Platzierung des Reißverschlusses.", - "penelope.zipperLocation.t": "Platzierung Reißverschluss", - "sandy.waistbandWidth.d": "Kontrolliert die Weite des Taillenbundes.", - "sandy.waistbandWidth.t": "Taillenbundweite", - "sandy.waistbandPosition.d": "Legt die Position des Taillenbundes fest.", - "sandy.waistbandPosition.t": "Position des Taillenbundes", - "sandy.waistbandShape.d": "Hier stellen Sie ein, on sie einen geraden oder einen körpergeformten Bund wollen.", - "sandy.waistbandShape.t": "Taillenbundform", - "sandy.circleRatio.d": "Die Prozente eines Kreises aus dem Sie den Rock erstellen möchten.", - "sandy.circleRatio.t": "Kreisverhältnis", - "sandy.waistbandOverlap.d": "Der Betrag, mit dem sich der Taillenbund überlappt.", - "sandy.waistbandOverlap.t": "Überlappung des Taillenbundes", - "sandy.gathering.d": "Der Prozentsatz um welcher die Oberkante des Rockteils länger ist als die Unterkante des Bundes.", - "sandy.gathering.t": "Kräuseln", - "sandy.seamlessFullCircle.d": "Aktiviert einen nahtlosen Vollkreis für das Rockteil.", - "sandy.seamlessFullCircle.t": "Nahtloser Vollkreis", - "sandy.hemWidth.d": "Breite des Saumes", - "sandy.hemWidth.t": "Saumbreite", - "shin.legReduction.d": "Reduziert die Hosenbeinöffnung um Anstehen zu verhindern", - "shin.legReduction.t": "Verjüngung am Bein", - "simon.backDarts.d": "Ob Abnäher am Rücken eingefügt werden sollen oder nicht", - "simon.backDarts.t": "Hintere Abnäher", - "simon.backDartShaping.d": "Wie stark die hinteren Abnäher die Figur betonen", - "simon.backDartShaping.t": "Formgebung der hinteren Abnäher", - "simon.barrelCuffNarrowButton.d": "Gibt an, ob ein Knopf hinzugefügt wird, um die Manschetten enger zu binden. Diese Option ist nur für Einfachmanschetten relevant.", - "simon.barrelCuffNarrowButton.t": "Manschette schmaler Knopf", - "simon.boxPleat.d": "Ob eine Kellerfalte am Rückenteil eingefügt wird oder nicht", - "simon.boxPleat.t": "Kellerfalte", - "simon.boxPleatWidth.d": "Gesamtbreite der Kellerfalte", - "simon.boxPleatWidth.t": "Kellerfaltenweite", - "simon.boxPleatFold.d": "Der Betrag, um den die Kellerfalte nach innen gefaltet wird", - "simon.boxPleatFold.t": "Kellerfalte Falz", - "simon.buttonPlacketStyle.d": "Stil der Knopfleiste.", - "simon.buttonPlacketStyle.t": "Knopfleiste Stil", - "simon.buttonPlacketWidth.d": "Breite der Knopfleiste.", - "simon.buttonPlacketWidth.t": "Knopfleiste Breite", - "simon.buttonFreeLength.d": "Wie viel am unteren Ende der Verschlussleiste knopf-frei bleiben soll.", - "simon.buttonFreeLength.t": "Freie Länge Knopf", - "simon.buttonholePlacketFoldWidth.d": "Breite der Falz der Knopflochleiste.", - "simon.buttonholePlacketFoldWidth.t": "Knopflochleiste Falzbreite", - "simon.buttonholePlacketStyle.d": "Stil der Knoplochfleiste.", - "simon.buttonholePlacketStyle.t": "Knopflochleiste Stil", - "simon.buttonholePlacketWidth.d": "Breite der Knopflochleiste.", - "simon.buttonholePlacketWidth.t": "Knopflochleiste Breite", - "simon.buttons.d": "Die Anzahl der Knöpfe am vorderen Verschluss.", - "simon.buttons.t": "Anzahl der Knöpfe", - "simon.collarAngle.d": "Der Winkel der Kragenspitzen.", - "simon.collarAngle.t": "Kragenwinkel", - "simon.collarBend.d": "Die Krümmung des Kragens.", - "simon.collarBend.t": "Kragenkrümmung", - "simon.collarFlare.d": "Wie weit die Kragenspitzen ausgestellt sind.", - "simon.collarFlare.t": "Kragenausstellung", - "simon.collarGap.d": "Der Spalt zwischen den beiden Kragenenden.", - "simon.collarGap.t": "Kragenlücke", - "simon.collarRoll.d": "Der Betrag, um den der Oberkragen größer ist als der Unterkragen.", - "simon.collarRoll.t": "Kragenrolle", - "simon.collarStandBend.d": "Die Biegung des Kragensstegs.", - "simon.collarStandBend.t": "Kragenstegbiegung", - "simon.collarStandCurve.d": "Die Krümmung des Kragensstegs.", - "simon.collarStandCurve.t": "Kragenstegkrümmung", - "simon.collarStandWidth.d": "Breite des Kragenstegs.", - "simon.collarStandWidth.t": "Kragenstegbreite", - "simon.cuffButtonRows.d": "Gibt an, ob eine einzelne oder doppelte Reihe von Manschettenknöpfen erstellt werden soll. Diese Option ist nur für Einfachmanschetten relevant.", - "simon.cuffButtonRows.t": "Manschettenknopfreihen", - "simon.cuffDrape.d": "Der Betrag, um den der Ärmel breiter ist als die Manschette, an der Stelle wo sie zusammengefügt werden.", - "simon.cuffDrape.t": "Manschette drapieren", - "simon.cuffLength.d": "Die Länge der Manschetten.", - "simon.cuffLength.t": "Manschettenlänge", - "simon.cuffStyle.d": "Der Stil der Manschetten.", - "simon.cuffStyle.t": "Manschettenstil", - "simon.extraTopButton.d": "Gibt an, ob am vorderen Verschluss ein zusätzlicher oberer Knopf hinzugefügt werden soll.", - "simon.extraTopButton.t": "Zusätzlicher oberer Knopf", - "simon.hemCurve.d": "Die Höhe der Kurve an einem abgerundeten Saum.", - "simon.hemCurve.t": "Saumkurve", - "simon.hemStyle.d": "Der Stil des Hemdsaumes.", - "simon.hemStyle.t": "Saumstil", - "simon.roundBack.d": "Damit die Passform für einen runde(re)n Rücken besser ist, fügt diese Option etwas Länge in der hinteren Mitte (an der Passe) hinzu, die sich zu den Seiten hin verjüngt.", - "simon.roundBack.t": "Runder Rücken", - "simon.seperateButtonholePlacket.d": "Eine separate Knopflochleiste entwerfen.", - "simon.seperateButtonholePlacket.t": "Separate Knopflochleiste", - "simon.seperateButtonPlacket.d": "Eine separate Knopfleiste entwerfen", - "simon.seperateButtonPlacket.t": "Separate Knopfleiste", - "simon.sleevePlacketLength.d": "Die Länge der Ärmelleiste.", - "simon.sleevePlacketLength.t": "Ärmelleistenlänge", - "simon.sleevePlacketWidth.d": "Die Breite der Ärmelleiste.", - "simon.sleevePlacketWidth.t": "Ärmelleiste Breite", - "simon.splitYoke.d": "Ob eine geteilte oder normale Passe erstellt werden soll.", - "simon.splitYoke.t": "Geteilte Passe", - "simon.waistEase.d": "Der Betrag, der an deiner (natürlichen) Taille als Bequemlichkeits-/Bewegslichkeitszugabe zugegeben wird.", - "simon.waistEase.t": "Taillenzugabe", - "simon.yokeHeight.d": "Steuert die Höhe der Passe", - "simon.yokeHeight.t": "Passenhöhe", - "simone.bustDartAngle.d": "Kontrolliert den Winkel, in welchem der (seitliche) Brustabnäher sich nach unten neigt", - "simone.bustDartAngle.t": "Winkel des Brustabnähers", - "simone.bustDartLength.d": "Regelt, wie nahe der Brustabnäher an den Brustpunkt kommt", - "simone.bustDartLength.t": "Länge des Brustabnähers", - "simone.contour.d": "Legt fest, wie eng anliegend der Schnitt unterhalb der Brust gestaltet wird", - "simone.contour.t": "Kontur", - "simone.frontDarts.d": "Legt fest, ob vordere Abnäher im Schnitt eingearbeitet werden sollen", - "simone.frontDarts.t": "Vordere Abnäher", - "simone.frontDartLength.d": "Legt fest, wie nahe die vorderen Abnäher an den Brustpunkt heranreichen", - "simone.frontDartLength.t": "Länge der vorderen Abnäher", - "sven.ribbing.d": "Ob Saum und Manschetten mit Bündchen abschließen oder nicht.", - "sven.ribbing.t": "Bündchen", - "sven.ribbingHeight.d": "Die Höhe der Bündchen", - "sven.ribbingHeight.t": "Bündchen-Höhe", - "sven.ribbingStretch.d": "Die Menge an negativer Zugabe für die an Manschetten und Saum verwendeten Bündchen.", - "sven.ribbingStretch.t": "Bündchen-Elastizität", - "tamiko.flare.d": "Die Menge, um die sich das Kleidungsstück von der Brust nach unten ausgestellt wird", - "tamiko.flare.t": "Ausstellen", - "tamiko.shoulderseamLength.d": "Die Länge der Schulternaht als Faktor deines Schulter-zu-Schulter-Maßes", - "tamiko.shoulderseamLength.t": "Schulternahtlänge", - "tamiko.shoulderSlope.d": "Steuert den Winkel der Schulternähte", - "tamiko.shoulderSlope.t": "Schulterneigung", - "teagan.draftForHighBust.d": "Draft the pattern for the high bust measurement (if available) rather than the (full) chest. This will result in a more fitted garment for people with breasts.", - "teagan.draftForHighBust.t": "Draft for high bust", - "teagan.sleeveEase.d": "Größe der Bequemlichkeitszugabe an den Ärmeln", - "teagan.sleeveEase.t": "Bequemlichkeitszugabe Ärmel", - "teagan.sleeveLength.d": "Steuert die Länge deiner Ärmel", - "teagan.sleeveLength.t": "Ärmellänge", - "teagan.necklineBend.d": "Steuert die Krümmung des Halsausschnitts.", - "teagan.necklineBend.t": "Krümmung Halsausschnitt", - "teagan.necklineDepth.d": "Steuert, wie tief der Halsausschnitt fällt.", - "teagan.necklineDepth.t": "Ausschnitttiefe", - "teagan.necklineWidth.d": "Steuert die Breite des Halsausschnitts.", - "teagan.necklineWidth.t": "Ausschnittbreite", - "theo.wedge.d": "Controls the length of the cross seam", - "theo.wedge.t": "Keil", - "theo.legWidth.d": "Legt die Weite des Hosenbeins fest", - "theo.legWidth.t": "Beinweite", - "titan.kneeEase.d": "Kontrolliert die Zugabe am Knie", - "titan.kneeEase.t": "Knie-Zugabe", - "titan.waistHeight.d": "Steuert die Höhe des Taillenbundes, 100% = Taillenhöhe, 0% = Hüfthöhe", - "titan.waistHeight.t": "Taillenhöhe", - "titan.lengthBonus.d": "Steuert die Länge der Hose", - "titan.lengthBonus.t": "Längenzugabe", - "titan.crotchDrop.d": "Senkt die Schrittiefe für mehr Tragekomfort", - "titan.crotchDrop.t": "Schritt-Tiefe", - "titan.fitKnee.d": "Legt die Bein-Passform auf Grundlage des Knieumfangst statt des Gesäßumfangs fest", - "titan.fitKnee.t": "Am Knie anliegend", - "titan.legBalance.d": "Steuert das Verhältnis zwischen Vorder- und Hinterteil des Beins", - "titan.legBalance.t": "Bein-Balance", - "titan.crossSeamCurveStart.d": "Controls how far into the cross seam we start to curve", - "titan.crossSeamCurveStart.t": "Start of the cross seam curve", - "titan.crossSeamCurveBend.d": "Controls the curvature of the cross seam", - "titan.crossSeamCurveBend.t": "Cross seam bend", - "titan.crossSeamCurveAngle.d": "Controls the angle of the cross seam", - "titan.crossSeamCurveAngle.t": "Cross seam angle", - "titan.crotchSeamCurveStart.d": "Controls how far into the crotch seam we start to curve", - "titan.crotchSeamCurveStart.t": "Start of the crotch seam curve", - "titan.crotchSeamCurveBend.d": "Controls the curvature of the crotch seam", - "titan.crotchSeamCurveBend.t": "Crotch seam bend", - "titan.crotchSeamCurveAngle.d": "Controls the angle of the crotch seam", - "titan.crotchSeamCurveAngle.t": "Crotch seam angle", - "titan.waistBalance.d": "Controls the horizontal position of the waist relative to the seat", - "titan.waistBalance.t": "Waist balance", - "titan.waistbandWidth.d": "Die Breite des Taillenbundes", - "titan.waistbandWidth.t": "Taillenbundweite", - "titan.grainlinePosition.d": "Controls the horizontal position of the leg relative to the seat", - "titan.grainlinePosition.t": "Position Fadenlauf", - "trayvon.tipWidth.d": "Die Breite deiner Krawatte an der Spitze", - "trayvon.tipWidth.t": "Spitzenbreite", - "trayvon.knotWidth.d": "Die Breite deiner Krawatte am Knoten", - "trayvon.knotWidth.t": "Knotenbreite", - "ursula.fabricStretch.d": "Adjust this for more or less stretchy fabrics", - "ursula.fabricStretch.t": "Stoffdehnbarkeit", - "ursula.gussetWidth.d": "Steuert die Breite des Zwickels", - "ursula.gussetWidth.t": "Zwickelbreite", - "ursula.gussetLength.d": "Steuert die Länge des Zwickels", - "ursula.gussetLength.t": "Zwickellänge", - "ursula.elasticStretch.d": "Adjust this for more or less stretchy elastic", - "ursula.elasticStretch.t": "Elastic stretch", - "ursula.rise.d": "Steuert die Höhe der Taille", - "ursula.legOpening.d": "Controls how high the leg is cut out", - "ursula.legOpening.t": "Beinöffnung", - "ursula.frontDip.d": "Controls how much the front waist curves (revealing more or less skin)", - "ursula.frontDip.t": "Front waist dip", - "ursula.backDip.d": "Controls how much the back waist curves (revealing more or less skin)", - "ursula.backDip.t": "Back waist dip", - "ursula.taperToGusset.d": "Steuert die Menge an freigelegter Haut auf der vorderen Seite", - "ursula.taperToGusset.t": "Vordere Freilegung", - "ursula.backExposure.d": "Steuert die Menge an freigelegter Haut auf der hinteren Seite", - "ursula.backExposure.t": "Hintere Freilegung", - "wahid.backScyeDart.d": "Die Menge, die in einem Abnäher hinten am Armloch entnommen werden muss.", - "wahid.backScyeDart.t": "Rückwärtige Armlochabnäher", - "wahid.frontScyeDart.d": "Die Menge, die in einem Abnäher an der Vorderseite des Armlochs entnommen werden muss.", - "wahid.frontScyeDart.t": "Vorderer Armlochabnäher", - "wahid.pocketLocation.d": "Bestimmt die Platzierung der Tasche", - "wahid.pocketLocation.t": "Taschenplatzierung", - "wahid.pocketWidth.d": "Bestimmt die Breite der Tasche", - "wahid.pocketWidth.t": "Taschenbreite", - "wahid.weltHeight.d": "Bestimmt die Höhe der Paspel", - "wahid.weltHeight.t": "Paspelhöhe", - "wahid.necklineDrop.d": "Legt fest, wie tief der Ausschnitt vorne ausgeschnitten ist", - "wahid.necklineDrop.t": "Ausschnitt Tiefe", - "wahid.frontStyle.d": "Stil des Ausschnitts", - "wahid.frontStyle.t": "Ausschnittstil", - "wahid.hemStyle.d": "Art des vorderen Saums", - "wahid.hemStyle.t": "Saumart", - "wahid.hemRadius.d": "Rundungsradius des Saumes", - "wahid.hemRadius.t": "Saumradius", - "wahid.backInset.d": "Wie viel die Rückseite des Armlochs nach innen verschoben ist", - "wahid.backInset.t": "Rückseite Ausschnitt", - "wahid.frontInset.d": "Wieviel das Armloch an der Vorderseite nach innen verschoben wird", - "wahid.frontInset.t": "Vorderseite Ausschnitt", - "wahid.shoulderInset.d": "Wieviel die Schulternaht nach innen Richtung Schulter versetzt wird", - "wahid.shoulderInset.t": "Schulterversatz nach innen", - "wahid.neckInset.d": "Wieviel die Schulternaht am Nacken nach innen versetzt wird", - "wahid.neckInset.t": "Nackenauschnitt", - "wahid.pocketAngle.d": "Winkel der Taschenneigung", - "wahid.pocketAngle.t": "Winkel der Tasche", - "waralee.backPocket.d": "Definiert ob rückwärtige Taschen integriert werden", - "waralee.backPocket.t": "Rückwärtige Tasche", - "waralee.frontPocket.d": "Legt fest, ob vordere Taschen integriert werden oder nicht", - "waralee.frontPocket.t": "Vordere Taschen", - "waralee.hem.d": "Höhe des Saums am unteren Rand der Hose", - "waralee.hem.t": "Größe des Saums", - "waralee.waistBand.d": "Größe des Taillenbundes", - "waralee.waistBand.t": "Taillenbund", - "waralee.waistRaise.d": "Wie hoch soll die Taille über dem Gesäßumfang angelegt werden? Dies beeinflusst die Tiefe des Schrittauschnittes.", - "waralee.waistRaise.t": "Taillenhöhe", - "waralee.crotchBack.d": "Prozentsatz des Gesäßumfangs, den der hintere Teil des Schrittes benötigt. Dies ergibt mehr oder weniger Abstand zwischen der Seitennaht und der hinteren Mitte.", - "waralee.crotchBack.t": "Hinterer Schritt", - "waralee.crotchFront.d": "Prozentsatz des Gesäßumfangs, den der vordere Teil des Schrittes benötigt. Dies beeinflusst den Abstand zwischen Seitennaht und vorderer Mittelnaht.", - "waralee.crotchFront.t": "Vorderer Schritt", - "waralee.crotchFactorBackHor.d": "Wird benutzt um die Kurze des hinteren Schritts horizontal zu verschieben", - "waralee.crotchFactorBackHor.t": "Horizontaler hinterer Schritt Faktor", - "waralee.crotchFactorBackVer.d": "Wird benutzt um die Kurve des hinteren Schritts vertikal zu verschieben", - "waralee.crotchFactorBackVer.t": "Vertikaler hinterer Schritt Faktor", - "waralee.crotchFactorFrontHor.d": "Wird verwendet um die Kurve des vorderen Schritts horizontal zu verschieben", - "waralee.crotchFactorFrontHor.t": "Horizontaler vorderer Schritt Faktor", - "waralee.crotchFactorFrontVer.d": "Wird benutzt um die Kurve des vorderen Schritts vertikal zu verschieben", - "waralee.crotchFactorFrontVer.t": "Vertikaler vorderer Schritt Faktor", - "waralee.waistOverlap.d": "Dieser Wert legt fest, wie starken Übertritt Sie auf Taillenhöhe an der Seite haben möchten. Beim Wert 0 treffen sich die Teile auf der Linie der Seitennaht. Beim Wert 100 überlappen die Teile soweit, dass sie jeweils zur vorderen und hinteren Mitte reichen.", - "waralee.waistOverlap.t": "Übertritt an der Taille", - "waralee.legShortening.d": "Dieser Wert legt fest wie lange die Hosen sind. Es ist ein Faktor der Innenbeinnahtlänge. Je höher der Wert, desto mehr wird die Länge gekürzt.", - "waralee.legShortening.t": "Verkürzung des Hosenbeins", - "waralee.backRaise.d": "Diese Einstellung erhöht den Taillenlinie im Rücken. Unsere Taille sitzt nicht horizontal, sondern ist auf der Rückseite angehoben. Diese Einstellung erlaubt es Ihnen, dies im Rücken zu erhöhen, wenn Sie es für eine gute Passform benötigen.", - "waralee.backRaise.t": "Hintere Anstieg" -} -export const es = { - "acc.accountRemoved": "Cuenta eliminada", - "acc.accountRestricted": "Cuenta restringida", - "acc.avatar": "Avatar", - "acc.avatarInfo": "Tu avatar o foto de perfil se mostrarán en tu página de perfil.", - "acc.avatarTitle": "Establece tu foto de perfil", - "acc.bio": "Bio", - "acc.bioInfo": "Aquí es donde puede contarle a otros usuarios un poco sobre usted. Este campo admite MarkDown, por lo que también puede incluir enlaces. Si tienes un blog, aquí es donde te vinculas para que otros puedan descubrirlo.", - "acc.bioTitle": "Escribe una breve biografía", - "acc.currentPassword": "Contraseña actual", - "acc.email": "Dirección de correo electrónico", - "acc.emailInfo": "La dirección de correo electrónico vinculada a su cuenta es importante, ya que se utilizará para recuperar el acceso a su cuenta si olvida su contraseña. Debido a esto, cambiar su dirección de correo electrónico requiere confirmación.", - "acc.emailTitle": "Ingrese la dirección de correo electrónico que desea vincular a esta cuenta", - "acc.exportYourData": "Exporta tus datos", - "acc.exportYourDataInfo": "La Protección de datos general (GDPR) de la UE garantiza su así llamado derecho a la portabilidad de datos.", - "acc.exportYourDataTitle": "Haga clic abajo para descargar sus datos personales.", - "acc.github": "Github", - "acc.githubInfo": "Si proporciona su nombre de usuario de GitHub, su página de perfil contendrá un enlace a su cuenta de Github, de modo que los visitantes puedan descubrir sus contribuciones de código, protagonizarlo o seguirlo.", - "acc.githubTitle": "Rellene su nombre de usuario Github", - "acc.instagramInfo": "Si proporciona su nombre de usuario de Instagram, su página de perfil contendrá un enlace a su cuenta de Instagram, para que los visitantes puedan descubrir sus imágenes y seguirlo.", - "acc.instagram": "Instagram", - "acc.instagramTitle": "Rellene su nombre de usuario Instagram", - "acc.languageInfo": "Esta opción de idioma determina en qué idioma recibirá los correos electrónicos de freesewing. No determina el idioma del sitio web, que se puede elegir en cada página", - "acc.language": "Idioma", - "acc.languageTitle": "Seleccione el idioma de su elección", - "acc.newPassword": "Nueva contraseña", - "acc.newsletter": "Newsletter", - "acc.newsletterTitle": "Would you like to receive the FreeSewing newsletter?", - "acc.newsletterInfo": "Once every 3 months, we send out our newsletter with honest wholesome content. No tracking, no ads, no nonsense.", - "acc.passwordInfo": "Cambiar tu contraseña requiere tu contraseña actual. Rellene eso, luego complete su nueva contraseña también.", - "acc.password": "Contraseña", - "acc.passwordTitle": "Ingrese su contraseña actual y su nueva contraseña", - "acc.patronInfo": "Los patrocinadores apoyan a Freesewing financieramente. Son partidarios leales que aseguran un futuro sostenible para freesewing.org, nuestro código, nuestros patrones y nuestra comunidad.", - "acc.patron": "Patrocinador", - "acc.removeYourAccountInfo": "Esto eliminará su cuenta, sus borradores, sus modelos y todos los datos que tenemos almacenados para usted. No hay vuelta atrás, así que proceda con precaución.", - "acc.removeYourAccount": "Elimina tu cuenta", - "acc.removeYourAccountWarning": "Esto eliminará su cuenta, sus borradores, sus modelos y todos los datos que hemos almacenado para usted. No hay vuelta atrás de esto.", - "acc.resetPasswordInfo": "Ingrese una nueva contraseña.", - "acc.resetPassword": "Restablecer contraseña", - "acc.resetPasswordTitle": "Ingrese su nueva contraseña", - "acc.restrictProcessingOfYourDataInfo": "La Protección de datos general (GDPR) de la UE garantiza su llamado derecho a restringir el procesamiento : el derecho a detener el procesamiento de sus datos.", - "acc.restrictProcessingOfYourData": "Restringir el procesamiento de sus datos", - "acc.restrictProcessingWarning": "Si bien no se eliminarán los datos, esto lo desconectará y congelará su cuenta. Además, puede interesarle su propio negocio, pero deberá comunicarse con nosotros cuando desee restaurar el acceso a su cuenta.", - "acc.reviewYourConsent": "Revisa tu consentimiento", - "acc.socialInfo": "Si proporciona su nombre de usuario de GitHub, Twitter o Instagram, su página de perfil contendrá enlaces a sus cuentas en estos sitios. Esto permite que los usuarios libres lo sigan allí.
No estamos contactando a ninguno de estos sitios en su nombre. Esto es solo para que las personas puedan conectar los puntos y saber que, por ejemplo, el usuario @joost en freesewing es la misma persona que el usuario @j__st en twitter.", - "acc.social": "Social", - "acc.socialTitle": "Deja que la gente te siga a otra parte", - "acc.twitterInfo": "Si proporciona su nombre de usuario de Twitter, su página de perfil contendrá un enlace a su cuenta de Twitter, para que los visitantes puedan descubrir sus tweets y seguirlo.", - "acc.twitterTitle": "Rellene su nombre de usuario Twitter", - "acc.twitter": "Twitter", - "acc.unitsInfo": "Freesewing admite tanto el sistema métrico como las medidas imperiales.", - "acc.unitsTitle": "Seleccione el sistema de unidad con el que esté más familiarizado", - "acc.units": "Unidades", - "acc.usernameInfo": "Actualmente tienes un nombre de usuario generado aleatoriamente. Eso no es muy personal, por lo que puedes cambiar tu nombre de usuario a algo más para ti. Me gusta tu nombre, o reinadepedos o lo que sea.", - "acc.usernameTitle": "Por favor, elija su nombre de usuario", - "acc.username": "Nombre de usuario", - "acc.accountIsInactive": "Tu cuenta está inactiva", - "acc.accountNeedsActivation": "Antes de poder iniciar sesión, necesitas activar tu cuenta. Por favor, revisa tu bandeja de entrada para ver el correo electrónico de registro y haz clic en el enlace en él.", - "acc.reloadAccount": "Reload account", - "acc.reloadAccountDescription": "This will reload your account data from the backend. It has the same effect as logging out, and then logging in again.", - "app.100PercentCommunity": "100% comunidad", - "app.100PercentFree": "100% gratis", - "app.100PercentOpenSource": "100% código abierto", - "app.aboutFreesewing": "Acerca de Freesewing", - "app.account": "Cuenta", - "app.accountCreated": "cuenta creada", - "app.actions": "Acciones", - "app.allDocumentation": "Toda la documentación", - "app.andThatIsAwesome": "Y eso es genial", - "app.applyThisLayout": "Aplicar este diseño", - "app.areYouSureYouWantToContinue": "Estás seguro de que quieres continuar?", - "app.askForHelp": "Pide ayuda", - "app.automatic": "Automático", - "app.averagePeopleDoNotExist": "La gente promedio no existe", - "app.awesome": "Genial", - "app.back": "atras", - "app.becauseThatWouldBeReallyHelpful": "Porque eso sería realmente útil.", - "app.becomeAPatron": "Conviértete en un mecenas", - "app.blog": "Blog", - "app.browseBlogposts": "Navegar por les publicaciones del blog", - "app.browsePatterns": "Navegar por les patrones", - "app.browseShowcases": "Navegar por las escaparates", - "app.butThatCouldChange": "Pero eso podría cambiar", - "app.cancel": "Cancelar", - "app.changePerson": "Cambiar persona", - "app.changePattern": "Cambiar patrón", - "app.chatOnDiscord": "Chat on Discord", - "app.checkInboxClickLinkInConfirmationEmail": "Ahora revise su bandeja de entrada y haga clic en el enlace en el correo electrónico de confirmación que le hemos enviado.", - "app.chest": "Pecho", - "app.chestInfo": "Los senos requieren medidas adicionales. Si esta persona no tiene senos, se ocultarán las medidas irrelevantes al configurar el modelo. Esto no tiene ningún impacto en cómo se redactan los patrones.", - "app.chooseASize": "Elige un tamaño", - "app.chooseAPerson": "Elige una persona", - "app.chooseADesign": "Choose a design", - "app.chooseAPattern": "Elige un patrón", - "app.chooseYourOptions": "Elige tus opciones", - "app.close": "Cerrar", - "app.community": "Comunidad", - "app.configureLayout": "Configurar diseño", - "app.configureYourDraft": "Configurar su boceto", - "app.contactUs": "Contactáctanos", - "app.contentLocaleFallback": "Por eso te estamos enseñando la versión en inglés en su lugar.", - "app.contents": "Contenidos", - "app.continue": "Continuar", - "app.copiedToClipboard": "Copiado al portapapeles", - "app.copy": "Dupdo", - "app.couldYouTranslateThis": "¿Podrías traducir esto?", - "app.countModelsLackingForPattern": "Tiene {count} modelos que carecen de las medidas necesarias para dibujar {pattern}", - "app.created": "Creado", - "app.custom": "personalizado", - "app.customSeamAllowance": "Margen de costura personalizada", - "app.lightMode": "Light mode", - "app.data": "Data", - "app.darkMode": "Modo oscuro", - "app.default": "Defecto", - "app.demo": "Demostración", - "app.designOptions": "Opciones de diseño", - "app.designs": "Diseños", - "app.docs": "Documentación", - "app.docsFooterMsg": "La documentación nunca se termina. Ojalá pudiéramos responder a todas sus preguntas, pero si ese no es el caso, hay ayuda disponible.", - "app.docsNotFoundMsg": "No pudimos encontrar esta documentación, lo que generalmente significa que aún no se ha escrito.", - "app.docsNotFoundTitle": "Esta documentación falta", - "app.documentationForDevelopers": "Documentación para desarrolladores", - "app.documentationForEditors": "Documentación para editores", - "app.documentationForTranslators": "Documentación para traductores", - "app.documentationOverview": "Documentation general", - "app.download": "Descargar", - "app.draft": "Boceto", - "app.draftPattern": "Trazar {pattern} ", - "app.draftPatternForModel": "Trazar {pattern} para {model} ", - "app.drafts": "Bocetos", - "app.draftSettings": "Ajustes del boceto", - "app.dragAndDropImageHere": "Drag and drop an image here, or select one manually with the button below", - "app.emailAddress": "Dirección de correo electrónico", - "app.emailWorksToo": "Si no conoces tu nombre de usuario, tu dirección de correo electrónico también funcionará", - "app.enterEmailPickPassword": "Introduce tu dirección de email y elige una contraseña", - "app.export": "Exportar", - "app.exportTiledPDF": "Exportar PDF paginado", - "app.faq": "Preguntas frecuentes", - "app.fieldRemoved": "{field} eliminado", - "app.fieldSaved": "{field} guardado", - "app.filterByPattern": "Filtrar por patrón", - "app.filterPatterns": "Filtrar los patrones", - "app.forgotLoginInstructions": "Entra tu nombre de usuario o correo electrónico debajo y pulsa el botón de Restablecer contraseña", - "app.freesewing": "Freesewing", - "app.freesewingOnGithub": "Freesewing en GitHub", - "app.github": "GitHub", - "app.goAheadWeWillWait": "Adelante, esperaremos.", - "app.goodJob": "Buen trabajo", - "app.goodToSeeYouAgain": "Bueno verte de nuevo {user}", - "app.handle": "Referencia", - "app.helpUsTranslate": "Ayúdanos a traducir", - "app.home": "Página principal", - "app.howCanWeHelpYou": "¿Cómo podemos ayudarte?", - "app.howToTakeMeasurements": "Cómo tomar medidas", - "app.i18n": "Internacionalización", - "app.imperialUnits": "Unidades imperiales (pulgadas)", - "app.instagram": "Instagram", - "app.invalidTldMessage": ".{tld} no es un TLD válido", - "app.joinTheChatMsg": "We have a community on Discord with friendly people you can chat to.", - "app.justAMoment": "Un momento", - "app.layout": "Diseño", - "app.logIn": "Iniciar sesión", - "app.loginWithProvider": "Log in with {provider}", - "app.logOut": "cerrar sesión", - "app.manual": "A mano", - "app.markdownHelp": "Markdown ayuda", - "app.measurements": "Medidas", - "app.menu": "Menú", - "app.metadata": "Metadatos", - "app.metricUnits": "Unidades métricas (cm)", - "app.person": "Persona", - "app.people": "Personas", - "app.nameInfo": "Un nombre ayuda a mantener las cosas separadas. Puedes elegir el nombre que quieras.", - "app.name": "Nombre", - "app.addThing": "Añadir {thing}", - "app.newThing": "Nuevo {thing}", - "app.newPatternForModel": "Nuevo {pattern} para {model}", - "app.noChanges": "No hay cambios", - "app.no": false, - "app.noPasswordPolicy": "No aplicamos una política de contraseña", - "app.noSeamAllowance": "Sin margen de costura", - "app.notAllOfThisContentIsAvailableInLanguage": "No todo este contenido está disponible en español.", - "app.notesInfo": "Estas son tus notas. Puedes escribir lo que quieras aquí.", - "app.notes": "Notas", - "app.ohNo": "¡Oh no!", - "app.oneMoreThing": "Una cosa más", - "app.options": "Opciones", - "app.orPayPerYear": "O pagar por año", - "app.other": "Otro", - "app.otherThing": "Otras {thing}", - "app.ourPatrons": "Nuestros mecenas", - "app.ourRevenuePledge": "Our revenue pledge", - "app.patron-2": "Chico de la pólvora", - "app.patron-4": "Primer oficial", - "app.patron-8": "Capitán", - "app.patronHelp": "If you have any questions, or would like to make changes to your Patron status, please contact us", - "app.patron": "Mecenas", - "app.patronPitch": "If you think what we do is worthwhile, and if you can spare a few coins each month without hardship, please support our work", - "app.patronsKeepUsAfloat": "El apoyo financiero de nuestros mecenas posibilita la liberación gratuita. Mantienen este barco a flote.", - "app.patternInstructions": "Intrucciones de los patrones", - "app.patternOptions": "Opciones del patrón", - "app.pattern": "Patrón", - "app.sewingPatterns": "Sewing patterns", - "app.patterns": "Patrones", - "app.pendingConfirmation": "Confirmación pendiente", - "app.perMonth": "por mes", - "app.pleaseEnterAValidEmailAddress": "Por favor, entra una dirección de E-mail válida", - "app.pleaseIncludeTheInformationBelow": "Por favor incluya la siguiente información", - "app.preview": "vista previa", - "app.privacyNotice": "Aviso de Privacidad", - "app.proceedWithCaution": "Proceder con cautela", - "app.profile": "Perfil", - "app.relatedLinks": "Enlaces relacionados", - "app.remove": "Eliminar", - "app.removeThing": "Eliminar {thing}", - "app.reportThisOnGithub": "Notifícalo en GitHub", - "app.requiredMeasurements": "Medidas requeridas", - "app.resendActivationEmailMessage": "Fill in the E-mail address you signed up with, and we'll send you a new confirmation message.", - "app.resendActivationEmail": "Reenviar email de activación", - "app.resetPassword": "Restablecer contraseña", - "app.reset": "Reiniciar", - "app.restoreDefaults": "Restaurar valores por defecto", - "app.restoreDesignDefaults": "Restore design defaults", - "app.restorePatternDefaults": "Restore pattern defaults", - "app.saveDraftToYourAccount": "Guarda el boceto en tu cuenta", - "app.save": "Guardar", - "app.searchLanguageMsg": "Cada idioma tiene su propio índice de búsqueda. Dado que no todo nuestro contenido está traducido, puede encontrar más resultados en la búsqueda en inglés.", - "app.searchLanguageTitle": "¿No encuentras lo que buscas?", - "app.search": "Buscar", - "app.selectAPartToMoveMirrorOrRotate": "Seleccione una parte para mover, reflejar o rotar", - "app.selectImage": "Seleccionar imagen", - "app.sendAnEmail": "Enviar un correo electrónico", - "app.settings": "Ajustes", - "app.sewingHelp": "Ayuda de costura", - "app.sewingPatternsForNonAveragePeople": "Patrones de costura para personas no promedio", - "app.share": "Compartir", - "app.shareFreesewing": "Share FreeSewing", - "app.showcase": "Escaparate", - "app.signUpForAFreeAccount": "Regístrate para una cuenta gratuíta", - "app.signUp": "Registrarse", - "app.signupWithProvider": "Sign up with {provider}", - "app.sortByField": "Ordenar por {field}", - "app.standardSeamAllowance": "Margen de costura estándar", - "app.startOver": "Comenzar de nuevo", - "app.startTranslatingNowOrRead": "{startTranslatingNow}, o lea primero la {documentationForTranslators}.", - "app.startTranslatingNow": "Empezar a traducir ahora", - "app.subscribe": "Suscribir", - "app.support": "Soporte", - "app.supportFreesewing": "Apoyo de freesewing", - "app.tellMeMore": "Dime más", - "app.thanksForYourSupport": "Gracias por su apoyo", - "app.thisContentIsNotAvailableInLanguage": "Este contenido no está disponible en Español.", - "app.thisFieldSupportsMarkdown": "Este campo admite Markdown", - "app.thisPageRequiresAuthentication": "esta página requiere autenticación", - "app.troubleLoggingIn": "¿Problemas para acceder?", - "app.twitter": "Twitter", - "app.txt-footer": "Freesewing is made by a community of contributors
with the financial support of our Patrons", - "app.txt-tier2": "Nuestro nivel más democrático de precios. Puede ser menor que el precio de un café con leche, pero su apoyo significa mucho para nosotros.", - "app.txt-tier4": "Suscríbase a este nivel y le enviaremos parte de nuestro codiciado botín de diseño gratuito a su hogar en cualquier parte del mundo.", - "app.txt-tier8": "Si no solo desea apoyarnos, sino que quiere ver prosperar en la libertad, este es el nivel para usted. También: botín extra!", - "app.txt-tiers": "FreeSewing is fuelled by a voluntary subscription model", - "app.unitsInfo": "La liberación es compatible con el sistema métrico y las unidades imperiales. Simplemente elige el que te gustaría usar aquí. (El valor predeterminado es utilizar las unidades configuradas en su cuenta).", - "app.updated": "Actualizado", - "app.update": "Actualizar", - "app.userHasBeenWithUsSince": "{user} ha estado con nosotros desde {since}", - "app.users": "Userios", - "app.weAreValidatingYourConfirmationCode": "Estamos validando tu código de confirmación", - "app.weCouldNotValidateYourConfirmationCode": "No pudimos validar su código de confirmación", - "app.weEncounteredAProblem": "Nos encontramos con un problema", - "app.weEncourageYouToReportThis": "Le animamos a informar de esto", - "app.welcomeAboard": "Bienvenido a bordo", - "app.welcome": "Bienvenido", - "app.weNeverShareYourEmail": "Nunca compartiremos esto con nadie", - "app.whatIsThis": "Que es esto", - "app.withBreasts": "Con pechos", - "app.withoutBreasts": "Sin pechos", - "app.yay": "¡Hurra!", - "app.yes": true, - "app.youAreAPatron": "Eres un mecenas", - "app.youAreNotAPatron": "Tu no eres un mecenas", - "app.youAreNotLoggedIn": "No has iniciado sesión", - "app.yourRights": "Tus derechos", - "app.makerDocs": "Documentación para diseñadores", - "app.devDocs": "Documentación para desarrolladores", - "app.slogan": "Una librería JavaScript para patrones de costura a medida", - "app.getStarted": "Empieza", - "app.apiReference": "Referencia de la API", - "app.tutorial": "Tutorial", - "app.editThisPage": "Edita esta página", - "app.loginRequiredRedirect": "Has sido redirigido a la página de inicio de sesión porque {page} requiere autenticación", - "app.various": "Varios", - "app.sewing": "Costura", - "app.examples": "Ejemplos", - "app.by": "por", - "app.years": "Años", - "app.pricing": "Precios", - "app.createFirst": "Start by creating a new pattern", - "app.noPattern": "You don't have any patterns (yet). Create a new pattern, then save it to your account.", - "app.modelFirst": "Start by adding measurements", - "app.noModel": "You haven't added any measurements (yet). FreeSewing can generate made-to-measure sewing patterns. But for that, we need measurements.", - "app.noModel2": "So the first thing you should do is add a person, and crack out your measuring tape.", - "app.noUserBrowsingTitle": "You can't just browse all users", - "app.noUserBrowsingText": "We've got thousands of them. Surely you have better things to do?", - "app.usePatternMeasurements": "Use the measurements of the original pattern", - "app.createReplica": "Create a replica", - "app.showDetails": "Show details", - "app.hideDetails": "Hide details", - "app.clickBelowToLogOut": "Click below to log out", - "app.compare": "Compare", - "app.savePattern": "Save pattern", - "app.recreate": "Recreate", - "app.recreateThing": "Recreate {thing}", - "app.recreateThingForPerson": "Recreate {thing} for {person}", - "app.seeYouLaterUser": "See you later {user}", - "app.exportForPrinting": "Export for printing", - "app.exportForEditing": "Export for editing", - "app.startWithNeckTitle": "Start with the neck circumference", - "app.startWithNeckDescription": "Based on your neck circumference, we can help you spot mistakes in your measurements.", - "app.whatYouNeed": "What you need", - "app.fabricOptions": "Fabric options", - "app.cutting": "Cutting", - "app.instructions": "Instructions", - "app.hide": "Hide", - "app.show": "Show", - "app.oneMomentPlease": "One moment please", - "app.loadingMagic": "We are loading the magic", - "app.estimate": "Estimate", - "app.actual": "Actual", - "app.weEstimateYM2B": "We estimate your {measurement} to be around:", - "app.exportAsData": "Export as data", - "app.availablePatterns": "Available patterns", - "app.browseCollection": "Browse collection", - "app.browseYourPatterns": "Browse your patterns", - "app.yourPatterns": "Your patterns", - "app.loginNeededToSavePatternsMsg": "You need to be logged in to save your patterns", - "app.docsForContributors": "Documentation for contributors", - "app.patternDocs": "Pattern documentation", - "app.socialMedia": "Social media", - "app.create": "Create", - "app.browse": "Browse", - "app.patrons": "Patrons", - "app.scrollToTop": "Scroll to top", - "app.sitemap": "Sitemap", - "app.contributeToThing": "Contribute to {thing}", - "app.mtmIsOurJam": "Made-to-measure sewing patterns is what we specialize in", - "app.fitYouDeserve": "You're really missing out if you go for standardized sizes.
So sign up today, and get the fit you deserve.", - "app.supportNag": "FreeSewing is free, but we'd appreciate if you would consider supporting us.", - "app.madeToMeasure": "Made-to-measure", - "app.sizes": "Sizes", - "app.standardSizes": "Standard sizes", - "app.accountRequired": "This feature requires a FreeSewing account", - "app.size": "Size", - "app.switchToThing": "Switch to {thing}", - "app.saveThing": "Save {thing}", - "app.shareThing": "Share {thing}", - "app.link": "Link", - "app.cloneThing": "Clone {thing}", - "app.cloneDescription": "Recreate an exact copy, using the measurements of the original pattern.", - "app.furtherReading": "Further reading", - "app.saveAsNewPattern": "Save As New Pattern", - "app.saveAsNewPattern-txt": "Store (a copy of) this pattern in your FreeSewing account", - "app.exportPattern": "Export pattern", - "app.printPattern": "Print pattern", - "app.exportPattern-txt": "Export a PDF suitable for your printer, or download this pattern in a variety of formats", - "app.editThing": "Edit {thing}", - "app.editPattern-txt": "Load this pattern in the pattern editor", - "app.featureRequiresAccount": "This feature requires a FreeSewing account", - "app.zoom": "Zoom", - "app.zoomIn": "Zoom in", - "app.zoomOut": "Zoom out", - "app.zoom-txt": "Switches between constraining the height or the width of the pattern to fit on your screen", - "app.savePattern-txt": "Store this pattern in your FreeSewing account", - "app.comparePattern": "Compare pattern", - "app.showPattern": "Show pattern", - "app.comparePattern-txt": "Compare your pattern to a range a standard sizes to review possible fitting issues", - "app.recreatePattern": "Recreate pattern", - "app.recreatePattern-txt": "Choose a different person, then recreate this pattern for that person", - "app.editOwnPatternsOnly": "You can only edit your own patterns", - "app.editOwnPatternsOnly-txt": "You cannot edit this pattern because it isn't yours. But you can use it as a baseline to create your own pattern.", - "app.updateNotes-txt": "Update the notes you keep along your pattern", - "app.franceWarning": "Beware users in France", - "app.franceWarning-txt": "Several French E-mail providers — including, free.fr, laposte.net, orange.fr, and sfr.fr — are known to routinely discard our E-mails.", - "app.emailNotReceived": "If you do not receive the activation email, please reach out so we can help you.", - "app.error": "Error", - "app.info": "Información", - "app.warning": "Warning", - "app.debug": "Debug", - "app.unsubscribe": "Unsubscribe", - "app.slogan-come": "Come for the sewing patterns", - "app.slogan-stay": "Stay for the community", - "cfp.author": "Autor", - "cfp.githubRepo": "Repositorio GitHub", - "cfp.packageManager": "Gestor de paquetes", - "cfp.patternName": "Nombre del patrón", - "cfp.patternType": "Tipo de patrón", - "cfp.patternCreated": "Tu esqueleto de patrón ha sido creado en", - "cfp.runTheseCommands": "To get started, run this command", - "cfp.startRollup": "En una terminal, inicia el paquete de rollup en modo reloj", - "cfp.startWebpack": "It will enter the 'example' folder, and start the development environment.", - "cfp.devDocsAvailableAt": "Documentación para desarrolladores está disponible en", - "cfp.talkToUs": "For questions, feedback or suggestions, join our Discord server", - "cfp.draftYourPattern": "Traza tu patrón", - "cfp.testYourPattern": "Prueba tu patrón", - "cfp.draftThing": "Draft {thing}", - "cfp.testThing": "Test {thing}", - "cfp.renderInBrowser": "Haz clic abajo para mostrar el patrón en el navegador.", - "cfp.weWillReRender": "Cuando realices cambios, lo volveremos a trazar para ti.", - "cfp.youCan": "Puedes", - "cfp.enterMeasurements": "Introducir medidas a mano", - "cfp.preloadMeasurements": "Precarga un conjunto de medidas", - "cfp.size": "Tamaño", - "cfp.noRequiredMeasurements": "Este patrón no requiere tiene medidas", - "cfp.howtoAddMeasurements": "To require measurements, add them to the measurements section of the pattern's configuration file.", - "cfp.seeDocsAt": "Documentation on this topic is available at", - "cfp.clearDesignMode": "Clear design mode", - "cfp.designMode": "Design mode", - "cfp.exportMode": "Export mode", - "cfp.thingIsEnabled": "{thing} is enabled", - "cfp.thingIsDisabled": "{thing} is disabled", - "cfp.turnOn": "Turn on", - "cfp.turnOff": "Turn off", - "cfp.validNameWarning": "Please pick a different name as this name would cause problems.\nWe (re-)use the pattern name as the NPM package name.\nPackage names must be lowercase and cannot contain special characters.\nSo please name your pattern accordingly, like:", - "designs.aaron.d": "Aaron es una camiseta deportiva sin mangas.", - "designs.aaron.t": "Camiseta Aaron", - "designs.albert.d": "Albert is an apron.", - "designs.albert.t": "Albert apron", - "designs.bella.d": "Bella is a basic body block for people with breasts.", - "designs.bella.t": "Bella body block", - "designs.benjamin.d": "Benjamin es un patrón de pajarita con cuatro estilos diferentes.", - "designs.benjamin.t": "Benjamin bow tie", - "designs.bent.d": "Este patrón con manga sastre es la base del molde de nuestro abrigo y de nuestra chaqueta.", - "designs.bent.t": "Bent body Block", - "designs.breanna.d": "Breanna is a basic body block for people with breasts.", - "designs.breanna.t": "Breanna body block", - "designs.brian.d": "Brian is a basic body block for people without breasts.", - "designs.brian.t": "Brian body block", - "designs.bruce.d": "Bruce es un bóxer cerrado cómodo y elegante.", - "designs.bruce.t": "Bruce boxer briefs", - "designs.carlita.d": "The version for breasts of our Carlton coat, aka Sherlock Holmes coat.", - "designs.carlita.t": "Carlita coat", - "designs.carlton.d": "Para disfrazarse de Sherlock Holmes o tener un abrigo muy elegante.", - "designs.carlton.t": "Carlton coat", - "designs.cathrin.d": "Cathrin es un corsé bajo pecho o reductor de la cintura.", - "designs.cathrin.t": "Cathrin corset", - "designs.charlie.d": "Charlie is a chino trouser pattern.", - "designs.charlie.t": "Charlie chinos", - "designs.cornelius.d": "Cornelius are cycling breeches based on the Keystone drafting method.", - "designs.cornelius.t": "Cornelius cycling breeches", - "designs.diana.d": "Diana es un top con un escote drapeado.", - "designs.diana.t": "Diana draped top", - "designs.florent.d": "Florent es una boina plana, de forma redondeada y con una pequeña visera rígida.", - "designs.florent.t": "Florent flat cap", - "designs.florence.d": "Florence is a face mask", - "designs.florence.t": "Florence face mask", - "designs.holmes.d": "For Sherlock Holmes cosplay or just a cute hat", - "designs.holmes.t": "Holmes deerstalker hat", - "designs.hortensia.d": "Hortensia is a handbag", - "designs.hortensia.t": "Hortensia handbag", - "designs.huey.d": "Huey es una sudadera con capucha, cremallera y bolsillos delanteros opcionales.", - "designs.huey.t": "Huey hoodie", - "designs.hugo.d": "Hugo es una sudadera con capucha y manga ranglán.", - "designs.hugo.t": "Hugo hoodie", - "designs.jaeger.d": "Jeager es una blazer informal con dos botones y bolsillos estilo parche.", - "designs.jaeger.t": "Jaeger jacket", - "designs.paco.d": "Paco are casual yet stylish summer pants", - "designs.paco.t": "Paco pants", - "designs.penelope.d": "Penelope is a pencil skirt with or without a vent in the back.", - "designs.penelope.t": "Penelope pencil skirt", - "designs.sandy.d": "Sandy is an adaptable circle skirt pattern", - "designs.sandy.t": "Sandy circle skirt", - "designs.shin.d": "Shin are athletic swim trunks", - "designs.shin.t": "Shin swim trunks", - "designs.simon.d": "Simon is a highly adaptable shirt pattern for people without breasts.", - "designs.simon.t": "Simon shirt", - "designs.simone.d": "Simone is simon, adapted for breasts.", - "designs.simone.t": "Simone shirt", - "designs.sven.d": "Sven es una sudadera de líneas sencillas.", - "designs.sven.t": "Sven sweatshirt", - "designs.tamiko.d": "Tamiko es un top cero residuos.", - "designs.tamiko.t": "Tamiko top", - "designs.teagan.d": "Teagan is a fitted T-shirt pattern", - "designs.teagan.t": "Teagan T-shirt", - "designs.theo.d": "Theo is a classic trouser pattern.", - "designs.theo.t": "Pantalones Theo", - "designs.titan.d": "Titan is a dartless unisex trouser block", - "designs.titan.t": "Titan trouser block", - "designs.trayvon.d": "Trayvon es una corbata que no toma atajos para un resultado profesional.", - "designs.trayvon.t": "Trayvon tie", - "designs.ursula.d": "Ursula is a basic, highly-customizable underwear pattern", - "designs.ursula.t": "Ursula undies", - "designs.wahid.d": "Wahid es el clásico chaleco entallado.", - "designs.wahid.t": "Wahid waistcoat", - "designs.waralee.d": "Waralee are wrap pants", - "designs.waralee.t": "Waralee wrap pants", - "email.chatWithUs": "Habla con nosotros", - "email.emailchangeActionText": "Confirme su nueva dirección de correo electrónico", - "email.emailchangeCopy1": "Solicitó cambiar la dirección de correo electrónico vinculada a su cuenta en freesewing.org .

Antes de hacerlo, debe confirmar su nueva dirección de correo electrónico. Por favor haga clic en el enlace de abajo para hacer eso:", - "email.emailchangeHeaderOpeningLine": "Solo asegurándonos de que podamos contactarlo cuando sea necesario", - "email.emailchangeHiddenIntro": "Confirmemos tu nueva dirección de correo electrónico", - "email.emailchangeSubject": "Por favor confirme su nueva dirección de correo electrónico", - "email.emailchangeTitle": "Por favor confirme su nueva dirección de correo electrónico", - "email.emailchangeWhy": "You received this E-mail because you changed the E-mail address linked to your account on freesewing.org", - "email.footerCredits": "Made by joost & contributors with the financial support of our patrons ❤️ ", - "email.footerSlogan": "Freesewing es una plataforma open source para patrones de costura a medida", - "email.goodbyeCopy1": "Si desea compartir por qué se va, puede responder a este mensaje.
Por nuestra parte, no volveremos a molestarlo.", - "email.goodbyeHeaderOpeningLine": "Solo se sabe que siempre se puede volver.", - "email.goodbyeHiddenIntro": "Gracias por darle una oportunidad a freesewing", - "email.goodbyeSubject": "Despedida 👋", - "email.goodbyeTitle": "Gracias por darle una oportunidad a freesewing", - "email.goodbyeWhy": "Recibió este correo electrónico como último adiós después de eliminar su cuenta en freesewing.org", - "email.joostFromFreesewing": "Joost de Freesewing", - "email.passwordresetActionText": "Recupere el acceso a su cuenta", - "email.passwordresetCopy1": "Olvidó su contraseña para su cuenta en freesewing.org .

Haga clic en el enlace de abajo para restablecer su contraseña:", - "email.passwordresetHeaderOpeningLine": "No te preocupes, estas cosas nos pasan a todos.", - "email.passwordresetHiddenIntro": "Recupere el acceso a su cuenta", - "email.passwordresetSubject": "Recupere el acceso a su cuenta en freesewing.org", - "email.passwordresetTitle": "Restablece tu contraseña y vuelve a obtener acceso a tu cuenta", - "email.passwordresetWhy": "Recibió este correo electrónico porque solicitó restablecer su contraseña en freesewing.org", - "email.questionsJustReply": "Si tiene alguna pregunta, simplemente responda a este correo electrónico. Siempre feliz de ayudar. 🙂", - "email.signature": "Con amor,", - "email.signupActionText": "Confirme su dirección de correo electrónico", - "email.signupCopy1": "Gracias por registrarse en freesewing.org.

Antes de comenzar, debe confirmar su dirección de correo electrónico. Por favor haga clic en el enlace de abajo para hacer eso:", - "email.signupHeaderOpeningLine": "Estamos muy contentos de que te unas a la comunidad de freesewing.", - "email.signupHiddenIntro": "Confirmemos tu dirección de correo electrónico", - "email.signupSubject": "Bienvenido a freesewing.org", - "email.signupTitle": "Bienvenido a bordo", - "email.signupWhy": "Recibió este correo electrónico porque acaba de registrarse para una cuenta en freesewing.org", - "errors.404": "La página que estás buscando no se encuentra", - "errors.confirmationNotFound": "Si llegó a esta página a través del enlace en un correo electrónico de confirmación, le recomendamos que informe de este problema.", - "errors.emailExists": "Ya tenemos un usuario con esa dirección de correo electrónico. Tal vez le gustaría iniciar sesión en su lugar?", - "errors.networkError": "El backend o la red parecen estar apagados", - "errors.notAValidImageFormat": "No es un formato de imagen válido", - "errors.requestFailedWithStatusCode400": "Solicitud fallida", - "errors.requestFailedWithStatusCode401": "Autenticación fallida", - "errors.requestFailedWithStatusCode403": "Prohibido", - "errors.requestFailedWithStatusCode500": "Hubo un problema inesperado. Por favor informe de esto.", - "errors.something": "Something went wrong", - "gdpr.compliant": "Freesewing.org respeta tu privacidad y tus derechos. Aplicamos la Regulación General de Protección de Datos (RGPD) de la Unión Europea (UE).", - "gdpr.consent": "Consentimiento", - "gdpr.consentForModelData": "Consentimiento para datos modelo", - "gdpr.consentForProfileData": "Consentimiento para datos de perfil", - "gdpr.consentGiven": "Consentimiento dado", - "gdpr.consentNotGiven": "Consentimiento no dado", - "gdpr.consentWhyAnswer": "Bajo el RGPD, el procesamiento de sus datos personales requiere su consentimiento; en otras palabras, su permiso.", - "gdpr.createMyAccount": "Crea mi cuenta", - "gdpr.furtherReading": "Lectura adicional", - "gdpr.modelQuestion": "¿Usted da su consentimiento para procesar los datos de su modelo?", - "gdpr.modelWarning": "Revocar este consentimiento lo bloqueará de todos los datos de su modelo, así como desactivará la funcionalidad que depende de ello.", - "gdpr.modelWhatAnswer": "Para cada modelo sus medidas y configuración de senos .", - "gdpr.modelWhatAnswerOptional": "Opcional: una imagen y el nombre que le das a tu modelo.", - "gdpr.modelWhatQuestion": "¿Qué son los datos del modelo?", - "gdpr.modelWhyAnswer": "Para redactar patrones de costura hechos a medida , necesitamos medidas corporales .", - "gdpr.noConsentNoAccount": "Without this consent, we cannot create your account", - "gdpr.noConsentNoPatterns": "Without this consent, you cannot create any patterns", - "gdpr.noIDoNot": "No, no lo hago", - "gdpr.openDataInfo": "Estos datos se utilizan para estudiar y comprender la forma humana en todas sus formas, para que podamos obtener mejores patrones de costura y que se ajusten mejor a las prendas. Aunque esta información es anónima, tiene derecho a objetar esto.", - "gdpr.openDataQuestion": "Compartir mediciones anonimizadas como datos abiertos.", - "gdpr.profileQuestion": "¿Das tu consentimiento para procesar los datos de tu perfil?", - "gdpr.profileShareAnswer": "No, nunca.", - "gdpr.profileTimingAnswer": "12 meses después de su último inicio de sesión, o hasta que elimine su cuenta o revoque este consentimiento.", - "gdpr.profileWarning": "La revocación de este consentimiento activará la eliminación de todos sus datos. Tiene exactamente el mismo efecto que la eliminación de su cuenta.", - "gdpr.profileWhatAnswerOptional": "Optional: A profile picture, bio, and social media accounts", - "gdpr.profileWhatAnswer": "Su dirección de correo electrónico , nombre de usuario y contraseña .", - "gdpr.profileWhatQuestion": "¿Qué son los datos de perfil?", - "gdpr.profileWhyAnswer": "Para autenticar usted, contactarse con usted cuando sea necesario y crear una comunidad .", - "gdpr.readMore": "Para más información, lea nuestro aviso de privacidad.", - "gdpr.readRights": "Para obtener más información, lea más sobre sus derechos.", - "gdpr.revokeConsent": "Revocar consentimiento", - "gdpr.shareQuestion": "¿Lo compartimos con otros?", - "gdpr.timingQuestion": "¿Cuánto tiempo lo mantenemos?", - "gdpr.whatYouNeedToKnow": "Lo que necesitas saber", - "gdpr.whyQuestion": "¿Por qué la necesitamos?", - "gdpr.yesIDoObject": "Sí, me opongo", - "gdpr.yesIDo": "Sí, lo hago", - "gdpr.openData": "Note: Freesewing publishes anonymized measurements as open data for scientific research. You have the right to object to this", - "i18n.de": "Alemán", - "i18n.en": "Inglés", - "i18n.es": "Español", - "i18n.fr": "Francés", - "i18n.nl": "Holandés", - "jargon.basting.d": "See Basting in the Sewing documentation", - "jargon.basting.term": "basting", - "jargon.coverlock.d": "See Coverlock in the Sewing documentation", - "jargon.coverlock.term": "coverlock", - "jargon.cutting.d": "See Cutting in the Sewing documentation", - "jargon.cutting.term": "cutting", - "jargon.darts.d": "See Darts in the Sewing documentation", - "jargon.darts.term": "darts", - "jargon.doubleWeltPockets.d": "See Double welt pockets in the Sewing documentation", - "jargon.doubleWeltPockets.term": "double welt pockets", - "jargon.ease.d": "See Ease in the Sewing documentation", - "jargon.ease.term": "ease", - "jargon.fabricGrain.d": "See Fabric grain in the Sewing documentation", - "jargon.fabricGrain.term": "fabric grain", - "jargon.goodSidesTogether.d": "See Good sides together in the Sewing documentation", - "jargon.goodSidesTogether.term": "good sides together", - "jargon.onTheFold.d": "See On the fold in the Sewing documentation", - "jargon.onTheFold.term": "on the fold", - "jargon.hemming.d": "See Hemming in the Sewing documentation", - "jargon.hemming.term": "hemming", - "jargon.jersey.d": "See Jersey in the Sewing documentation", - "jargon.jersey.term": "jersey", - "jargon.knitBinding.d": "See Knit binding in the Sewing documentation", - "jargon.knitBinding.term": "knit binding", - "jargon.knitFabric.d": "See Knit fabric in the Sewing documentation", - "jargon.knitFabric.term": "knit fabric", - "jargon.pinning.d": "See Pinning in the Sewing documentation", - "jargon.pinning.term": "pinning", - "jargon.rayon.d": "See Rayon in the Sewing documentation", - "jargon.rayon.term": "rayon", - "jargon.sa.d": "See Seam allowance in the Sewing documentation", - "jargon.sa.term": "seam allowance", - "jargon.serger.d": "See Serger in the Sewing documentation", - "jargon.serger.term": "serger", - "jargon.topstitching.d": "See Topstitching in the Sewing documentation", - "jargon.topstitching.term": "topstitching", - "jargon.trimming.d": "See Trimming in the Sewing documentation", - "jargon.trimming.term": "trimming", - "jargon.twinNeedle.d": "See Twin needle in the Sewing documentation", - "jargon.twinNeedle.term": "twin needle", - "jargon.zigZag.d": "See Zig-zag stitch in the Sewing documentation", - "jargon.zigZag.term": "zig-zag stitch", - "jargon.freesewing.d": "FreeSewing is an open source platform for made-to-measure sewing patterns", - "jargon.freesewing.term": "freesewing", - "jargon.patternOptions.d": "The pattern options allow you to customize the design of the pattern", - "jargon.patternOptions.term": "pattern options", - "jargon.draftSettings.d": "The draft settings give you control of how a pattern is generated", - "jargon.draftSettings.term": "draft settings", - "jargon.patrons.d": "Patrons support Freesewing financially. They are loyal supporters who ensure a sustainable future for freesewing.org, our code, our patterns, and our community.", - "jargon.patrons.term": "patrons", - "jargon.msf.d": "Médecins Sans Frontières/Doctors Without Borders - See msf.org", - "jargon.msf.term": "msf", - "m.ankle": "Ankle circumference", - "m.biceps": "Biceps circumference", - "m.bustFront": "Bust front", - "m.bustSpan": "Distancia entre pechos", - "m.chest": "Chest circumference", - "m.crossSeam": "Cross seam", - "m.crossSeamFront": "Cross seam front", - "m.head": "Head circumference", - "m.heel": "Heel circumference", - "m.highBustFront": "High bust front", - "m.highBust": "Contorno de alto pecho", - "m.hips": "Hips circumference", - "m.hpsToBust": "HPS to bust", - "m.hpsToWaistBack": "HPS to waist back", - "m.hpsToWaistFront": "HPS to waist front", - "m.inseam": "Tiro", - "m.knee": "Knee circumference", - "m.neck": "Neck circumference", - "m.seat": "Seat circumference", - "m.seatBack": "Seat back", - "m.crotchDepth": "Crotch depth", - "m.shoulderSlope": "Inclinación de hombro", - "m.shoulderToElbow": "Hombro a codo", - "m.shoulderToShoulder": "Distancia entre hombros", - "m.shoulderToWrist": "Codo a muñeca", - "m.underbust": "Bajo pecho", - "m.upperLeg": "Upper leg circumference", - "m.waist": "Waist circumference", - "m.waistBack": "Waist back", - "m.waistToFloor": "Waist to floor", - "m.waistToHips": "Waist to hips", - "m.waistToKnee": "Waist to knee", - "m.waistToSeat": "Waist to seat", - "m.waistToUnderbust": "Waist to underbust", - "m.waistToUpperLeg": "Waist to upper leg", - "m.wrist": "Wrist circumference", - "og.advanced": "Avanzado", - "og.armhole": "Armhole", - "og.closure": "Cierre", - "og.collar": "Collar", - "og.construction": "Construction", - "og.cuffs": "Puños", - "og.darts": "Darts", - "og.elastic": "Elastic", - "og.fit": "Ajuste", - "og.pockets": "Bolsillos", - "og.preferences": "Preferencias", - "og.sleevecap": "Funda de manga", - "og.sleeves": "Mangas", - "og.style": "Estilo", - "og.backPockets": "Back pockets", - "og.frontPockets": "Front pockets", - "og.waistband": "Waistband", - "og.fly": "Fly", - "parts.back": "Trasero", - "parts.backBase": "Base trasera", - "parts.base": "Base", - "parts.bentBack": "Trasero Bent", - "parts.bentBase": "Base Bent", - "parts.bentFront": "Frente Bent", - "parts.bentSleeve": "Manga Bent", - "parts.bentTopSleeve": "Manga superior Bent", - "parts.bentUnderSleeve": "Manga debajo Bent", - "parts.buttonholePlacket": "Tapeta de ojal", - "parts.buttonPlacket": "Tapeta de botones", - "parts.collar": "Cuello", - "parts.collarStand": "Base del cuello", - "parts.cuff": "Puño", - "parts.fabricTail": "Cola de tela", - "parts.fabricTip": "Punta de tela", - "parts.frontBase": "Base delantera", - "parts.frontFacing": "Delantero mirando hacia", - "parts.front": "Frente", - "parts.frontLeft": "Delantero izquierdo", - "parts.frontLining": "Delantero revestimiento", - "parts.frontRight": "Delantero derecha", - "parts.hoodCenter": "Centro de la capucha", - "parts.hood": "Capucha", - "parts.hoodSide": "Lado de la capucha", - "parts.inset": "Encarte", - "parts.interfacingTail": "Cola de entretela", - "parts.interfacingTip": "Punta de entretela", - "parts.liningTail": "Cola de revestimiento", - "parts.liningTip": "Punta de revestimiento", - "parts.loop": "Lazo", - "parts.panel1": "Panel 1", - "parts.panel2": "Panel 2", - "parts.panel3": "Panel 3", - "parts.panel4": "Panel 4", - "parts.panel5": "Panel 5", - "parts.panel6": "Panel 6", - "parts.panels": "Paneles", - "parts.pocketBag": "Bolsa de bolsillo", - "parts.pocketFacing": "Mirando hacia el bolsillo", - "parts.pocketInterfacing": "Entretela de bolsillo", - "parts.pocket": "Bolsillo", - "parts.pocketWelt": "Ribete de bolsillo", - "parts.side": "Lado", - "parts.sleeveBase": "Base de la manga", - "parts.sleevecap": "Manga corta", - "parts.sleevePlacketOverlap": "Vista de la manga superior", - "parts.sleevePlacketUnderlap": "Vista de la manga fondo", - "parts.sleeve": "Manga", - "parts.topSleeve": "Manga superior", - "parts.top": "Top", - "parts.underCollar": "Debajo del cuello", - "parts.underSleeve": "Manga debajo", - "parts.waistband": "Pretina", - "parts.yoke": "Canesú", - "patterns.back": "Atrás", - "patterns.bottomPanel": "Bottom Panel", - "patterns.buttonholePlacket": "Tapeta de ojal", - "patterns.buttonPlacket": "Tapeta de botones", - "patterns.collarAndUndercollar": "Collar y Undercollar", - "patterns.collarStand": "Soporte de collar", - "patterns.cuff": "Cuffnl", - "patterns.cutOneStripToFinishTheNeckOpening": "Corta una tira para terminar la abertura del cuello.", - "patterns.cutTwoStripsToFinishTheArmholes": "Corta dos tiras para terminar las sisas.", - "patterns.cutUndercollarSlightlySmaller": "Corte undercollar ligeramente más pequeño", - "patterns.frontBackPanel": "Front and Back Panel", - "patterns.front": "Frente", - "patterns.frontLeft": "Delantero izquierdo", - "patterns.frontRight": "Frente derecho", - "patterns.fullLengthFromHps": "Full length (from HPS)", - "patterns.handleWidth": "Width of the handles", - "patterns.hello": "Hola", - "patterns.hoodCenter": "Centro de la capucha", - "patterns.hoodSide": "Lado de la capucha", - "patterns.inset": "Recuadro", - "patterns.length": "Longitud", - "patterns.matchHere": "Match fabric along this line", - "patterns.pocket": "Bolsillo", - "patterns.pocketFacing": "Cara de bolsillo", - "patterns.side": "Lado", - "patterns.sideOfTheCollarStand": "Lado del soporte del collar", - "patterns.sidePanelReinforcement": "Side Reinforcement Panel", - "patterns.sidePanel": "Side Panel", - "patterns.sleeve": "Manga", - "patterns.sleevePlacketOverlap": "Top de manga tapeta", - "patterns.sleevePlacketUnderlap": "Parte inferior de la tapeta de la manga", - "patterns.strap": "Handle", - "patterns.strapLength": "Length of the Handles", - "patterns.vent": "Vent", - "patterns.waistband": "Pretina", - "patterns.width": "Anchura", - "patterns.yoke": "Yugo", - "patterns.zipperPanel": "Zipper Panel", - "patterns.zipperSize": "Standard zipper size", - "patterns.cut": "Cut", - "patterns.cutOnFoldAndGrainline": "Cortar en pliegue / Linea de grano", - "patterns.cutOnFold": "Cortar en pliegue", - "patterns.grainline": "Linea de grano", - "patterns.onFold": "On the fold", - "patterns.supportFreesewingBecomeAPatron": "Support FreeSewing, become a Patron", - "patterns.theBlackOutsideOfThisBoxShouldMeasure": "El exterior de este cuadro debe medir", - "patterns.theWhiteInsideOfThisBoxShouldMeasure": "El interior de este cuadro debe medir", - "settings.advanced.d": "Controla si mostrar o no la configuración avanzada y las opciones de patrón", - "settings.advanced.t": "Modo experto", - "settings.paperless.d": "Dibuja un patrón con todas las dimensiones incluidas para que puedas transferirlo sobre tela u otro medio sin la necesidad de imprimir", - "settings.paperless.t": "Sin papel", - "settings.sa.d": "Controla la cantidad de margen de costura incluido en tu patrón", - "settings.sa.t": "Margen de costura", - "settings.locale.d": "Determina el lenguaje utilizado en tu patrón", - "settings.locale.t": "Idioma", - "settings.only.d": "Le permite controlar qué partes del patrón se incluirán en su patrón", - "settings.only.t": "Contenido", - "settings.units.d": "Controla las unidades utilizadas en tu patrón", - "settings.units.t": "Unidades", - "settings.margin.d": "Controla el margen alrededor de las partes del patrón", - "settings.margin.t": "Margen", - "settings.complete.d": "Controla qué tan detallado es el patrón. Ya sea un patrón completo con todos los detalles, o un esquema básico de las partes del patrón", - "settings.complete.t": "Detalle", - "settings.layout.d": "Controla cómo se colocan las partes individuales del patrón en tu patrón", - "settings.layout.t": "Diseño", - "settings.debug.d": "Enable debug to gain additional info about how your pattern was created", - "settings.debug.t": "Debug", - "welcome.units": "Selecciona las unidades que deseas utilizar", - "welcome.username": "Elige un nombre de usuario", - "welcome.avatar": "Añade una foto de perfil", - "welcome.bio": "Cuéntanos un poco acerca de ti", - "welcome.social": "Háganos saber dónde podemos seguirle", - "welcome.newsletter": "Give us your newsletter preference", - "welcome.letUsSetupYourAccount": "Permítanos establecer su cuenta.", - "welcome.walkYouThrough": "Te guiaremos a través de los siguientes pasos:", - "welcome.someOptional": "Aunque todos estos pasos son opcionales, te recomendamos que los recorras para sacar el máximo provecho de FreeSewing.", - "aaron.armholeDrop.d": "Baja la sisa esta cantidad. Valores negativos la elevan.", - "aaron.armholeDrop.t": "Caída de la sisa", - "aaron.backlineBend.d": "Determina la forma/curva de la parte posterior de la sisa.", - "aaron.backlineBend.t": "Forma posterior de la sisa", - "aaron.hipsEase.d": "La cantidad de holgura en la cadera.", - "aaron.hipsEase.t": "Holgura de cadera", - "aaron.necklineBend.d": "Determina la forma/curva del cuello en el frente.", - "aaron.necklineBend.t": "Forma del cuello", - "aaron.necklineDrop.d": "La cantidad de cuello que se corta en el frente.", - "aaron.necklineDrop.t": "Caída del cuello", - "aaron.shoulderStrapPlacement.d": "Determina si los tirantes se colocan cerca del cuello (números más bajos) o del hombro (números más altos).", - "aaron.shoulderStrapPlacement.t": "Posición de los tirantes", - "aaron.shoulderStrapWidth.d": "La anchura de los tirantes.", - "aaron.shoulderStrapWidth.t": "Anchura de los tirantes", - "aaron.stretchFactor.d": "Determina la holgura negativa horizontal.", - "aaron.stretchFactor.t": "Extensión", - "albert.backOpening.d": "Controls the opening at the back of the apron", - "albert.backOpening.t": "Back opening", - "albert.chestDepth.d": "Controls the length of the straps", - "albert.chestDepth.t": "Strap length", - "albert.lengthBonus.d": "Controls the length of the apron", - "albert.lengthBonus.t": "Length bonus", - "albert.bibLength.d": "Controls the length of the bib", - "albert.bibLength.t": "Bib length", - "albert.bibWidth.d": "Controls the width of the bib", - "albert.bibWidth.t": "Bib width", - "albert.strapWidth.d": "Controls the width of the strap", - "albert.strapWidth.t": "Strap width", - "bella.chestEase.d": "Controls the amount of ease at the fullest part of your chest", - "bella.chestEase.t": "Chest ease", - "bella.waistEase.d": "Controls the amount of ease at your waist", - "bella.waistEase.t": "Waist ease", - "bella.bustSpanEase.d": "Controls the amount of (horizontal) ease added to your bust span when locating the bust point.", - "bella.bustSpanEase.t": "Bust span ease", - "bella.backDartHeight.d": "Controls the height of the back dart", - "bella.backDartHeight.t": "Back dart height", - "bella.bustDartLength.d": "Controls the length of the bust dart", - "bella.bustDartLength.t": "Bust dart length", - "bella.waistDartLength.d": "Controls the length of the waist dart", - "bella.waistDartLength.t": "Waist dart length", - "bella.bustDartCurve.d": "Controls the curvature of the bust dart", - "bella.bustDartCurve.t": "Bust dart curve", - "bella.armholeDepth.d": "Controls the depth of the armhole", - "bella.armholeDepth.t": "Armhole depth", - "bella.backArmholeSlant.d": "Slightly rotates the armhole around its pitch point", - "bella.backArmholeSlant.t": "Back armhole slant", - "bella.backArmholeCurvature.d": "Controls how deep the armhole is scooped out at the back bottom", - "bella.backArmholeCurvature.t": "Back armhole curvature", - "bella.frontArmholePitchDepth.d": "Tweaks the horizontal placement of the front armhole pitch point", - "bella.frontArmholePitchDepth.t": "Front armhole pitch depth", - "bella.backArmholePitchDepth.d": "Tweaks the horizontal placement of the back armhole pitch point", - "bella.backArmholePitchDepth.t": "Back armhole pitch depth", - "bella.backNeckCutout.d": "Controls how deep the neck opening is scooped out at at the back", - "bella.backNeckCutout.t": "Back neck cutout", - "bella.backHemSlope.d": "Controls the slope of the hem at the back", - "bella.backHemSlope.t": "Back hem slope", - "bella.frontShoulderWidth.d": "Controls the narrowness of the front shoulders relative to the back", - "bella.frontShoulderWidth.t": "Front shoulder width", - "bella.highBustWidth.d": "Allows you to tweak the hight bust width at the front", - "bella.highBustWidth.t": "High bust width", - "benjamin.adjustmentRibbon.d": "Incluir o no una cinta de ajuste", - "benjamin.adjustmentRibbon.t": "Cinta de ajuste", - "benjamin.bandLength.d": "Longitud de la banda", - "benjamin.bandLength.t": "Longitud de la banda", - "benjamin.tipWidth.d": "Ancho de las puntas", - "benjamin.tipWidth.t": "Ancho de la punta", - "benjamin.knotWidth.d": "Ancho del nudo", - "benjamin.knotWidth.t": "Ancho de nudo", - "benjamin.bowLength.d": "Longitud del lazo (cuando está anudado)", - "benjamin.bowLength.t": "Longitud del lazo", - "benjamin.bowStyle.d": "Estilo del lazo", - "benjamin.bowStyle.t": "Estilo del lazo", - "benjamin.endStyle.d": "Estilo de las puntas del lazo", - "benjamin.endStyle.t": "Estilo de las puntas", - "bent.sleeveBend.d": "Curva de la manga en el codo.", - "bent.sleeveBend.t": "Manga doblada", - "bent.sleevecapHeight.d": "Controla la altura de la manga.", - "bent.sleevecapHeight.t": "Altura de la manga", - "breanna.shoulderDart.d": "Whether or not to inlude a dart at the shoulder to round the back", - "breanna.shoulderDart.t": "Shoulder dart", - "breanna.shoulderDartSize.d": "The size of the shoulder dart", - "breanna.shoulderDartSize.t": "Shoulder dart size", - "breanna.shoulderDartLength.d": "The length of the shoulder dart", - "breanna.shoulderDartLength.t": "Shoulder dart length", - "breanna.waistDart.d": "Whether or not to inlude a dart at the waist to round the back", - "breanna.waistDart.t": "Waist dart", - "breanna.waistDartSize.d": "The size of the waist dart", - "breanna.waistDartSize.t": "Waist dart size", - "breanna.waistDartLength.d": "The length of the waist dart", - "breanna.waistDartLength.t": "Waist dart length", - "breanna.verticalEase.d": "The amount of ease to distribute along the length of the garment", - "breanna.verticalEase.t": "Vertical ease", - "breanna.waistEase.d": "The amount of ease at the waist", - "breanna.waistEase.t": "Waist ease", - "breanna.primaryBustDart.d": "Where to place the bust dart to shape the chest", - "breanna.primaryBustDart.t": "Bust dart", - "breanna.primaryBustDartLength.d": "The length of the bust dart", - "breanna.primaryBustDartLength.t": "Bust dart length", - "breanna.secondaryBustDart.d": "Optionally include a secondary bust dart to distribute the shaping of the chest", - "breanna.secondaryBustDart.t": "Secondary bust dart", - "breanna.secondaryBustDartLength.d": "The length of the secondary bust dart", - "breanna.secondaryBustDartLength.t": "Secondary bust dart length", - "breanna.primaryBustDartShaping.d": "Controls the balance between the main and secondary bust darts", - "breanna.primaryBustDartShaping.t": "Bust darts shaping", - "brian.acrossBackFactor.d": "Controla el ancho de espalda como un factor de la medida de hombro a hombro.", - "brian.acrossBackFactor.t": "Factor de ancho de espalda", - "brian.armholeDepthFactor.d": "Controla la profundidad de la sisa. Valores más altos producen sisas más profundas.", - "brian.armholeDepthFactor.t": "Factor de profundidad de la sisa", - "brian.backNeckCutout.d": "Cómo de profundo es el cuello por detrás", - "brian.backNeckCutout.t": "Corte trasero del cuello", - "brian.bicepsEase.d": "La cantidad de holgura en la parte superior del brazo. Ten en cuenta que, aunque intentamos repetar esto, ajustar la manga a la sisa toma preferencia sobre respetar la cantidad exacta de holgura.", - "brian.bicepsEase.t": "Holgura del bíceps", - "brian.collarEase.d": "La cantidad de facilidad alrededor de tu cuello.", - "brian.collarEase.t": "Facilidad de cuello", - "brian.chestEase.d": "La cantidad de holgura en el pecho", - "brian.chestEase.t": "Holgura de pecho", - "brian.cuffEase.d": "La cantidad de holgura en la muñeca.", - "brian.cuffEase.t": "Holgura de muñeca", - "brian.frontArmholeDeeper.d": "¿Cuánto quieres que se corte la sisa delantera más allá de la espalda?", - "brian.frontArmholeDeeper.t": "Sujetador delantero extra recorte", - "brian.lengthBonus.d": "La cantidad a elongar. Valores negativos lo acortan.", - "brian.lengthBonus.t": "Extra de longitud", - "brian.s3Collar.d": "Increase this option to shift the shoulder seam forward on the collar side. Decreasing it shifts it backwards.", - "brian.s3Collar.t": "Shoulder seam shift: collar side", - "brian.s3Armhole.d": "Increase this option to shift the shoulder seam forward on the armhole side. Decreasing it shifts it backwards.", - "brian.s3Armhole.t": "Shoulder seam shift: armhole side", - "brian.shoulderEase.d": "La cantidad de holgura en los hombros. Esto incrementa la distancia de hombro a hombro para dejar espacio para la ropa que lleves debajo.", - "brian.shoulderEase.t": "Holgura de hombro", - "brian.shoulderSlopeReduction.d": "La cantidad en la que la caída del hombro se reduce para añadir hombreras.", - "brian.shoulderSlopeReduction.t": "Reducción de caída del hombro", - "brian.sleeveLengthBonus.d": "La cantidad a alargar la manga. Un valor negativo la acorta.", - "brian.sleeveLengthBonus.t": "Longitud extra de manga", - "brian.sleevecapEase.d": "La cantidad en la que la parte superior de la manga es más larga que la sisa", - "brian.sleevecapEase.t": "Holgura de la parte superior de la manga", - "brian.sleevecapTopFactorX.d": "Controla la ubicación horizontal de la parte superior de la funda", - "brian.sleevecapTopFactorX.t": "Funda tapa X", - "brian.sleevecapTopFactorY.d": "Controla la altura de la manga. Un valor más alto hace que la parte superior de la manga sea más alta y estrecha.", - "brian.sleevecapTopFactorY.t": "Funda tapa Y", - "brian.sleevecapBackFactorX.d": "Controla la colocación del punto de inflexión posterior de la funda en el eje X (horizontal)", - "brian.sleevecapBackFactorX.t": "Funda atrás X", - "brian.sleevecapBackFactorY.d": "Controla la colocación del punto de inflexión posterior de la funda en el eje Y (vertical)", - "brian.sleevecapBackFactorY.t": "Funda atrás X", - "brian.sleevecapFrontFactorX.d": "Controla la colocación del punto de inflexión frontal de la funda en el eje X (horizontal)", - "brian.sleevecapFrontFactorX.t": "Funda frontal X", - "brian.sleevecapFrontFactorY.d": "Controla la colocación del punto de inflexión frontal de la funda en el eje Y (vertical)", - "brian.sleevecapFrontFactorY.t": "Funda frontal Y", - "brian.sleevecapQ1Offset.d": "Controla la curvatura de la funda en el primer cuadrante (sisa frontal)", - "brian.sleevecapQ1Offset.t": "Funda Q1 offset", - "brian.sleevecapQ2Offset.d": "Controla la curvatura de la funda en el segundo cuadrante (hombro delantero)", - "brian.sleevecapQ2Offset.t": "Funda Q2 offset", - "brian.sleevecapQ3Offset.d": "Controla la curvatura de la funda en el tercer cuadrante (hombro posterior)", - "brian.sleevecapQ3Offset.t": "Funda Q3 offset", - "brian.sleevecapQ4Offset.d": "Controla la curvatura de la funda en el cuarto cuadrante (sisa trasera)", - "brian.sleevecapQ4Offset.t": "Funda Q4 offset", - "brian.sleevecapQ1Spread1.d": "Controla la propagación de la curvatura del primer cuadrante de la manga hacia la sisa.", - "brian.sleevecapQ1Spread1.t": "Funda Q1 propagación a la baja", - "brian.sleevecapQ1Spread2.d": "Controla la propagación de la curvatura del primer cuadrante de manga hacia el hombro", - "brian.sleevecapQ1Spread2.t": "Funda Q1 propagación hacia arriba", - "brian.sleevecapQ2Spread1.d": "Controla la propagación de la curvatura del segundo cuadrante del manguito hacia la sisa.", - "brian.sleevecapQ2Spread1.t": "Funda Q2 propagación a la baja", - "brian.sleevecapQ2Spread2.d": "Controla la propagación de la curvatura del segundo cuadrante de manga hacia el hombro", - "brian.sleevecapQ2Spread2.t": "Funda Q2 extendido hacia arriba", - "brian.sleevecapQ3Spread1.d": "Controla la propagación de la curvatura del tercer cuadrante de manga hacia el hombro", - "brian.sleevecapQ3Spread1.t": "Funda Q3 extendido hacia arriba", - "brian.sleevecapQ3Spread2.d": "Controla la propagación de la curvatura del tercer cuadrante de la manga hacia la sisa.", - "brian.sleevecapQ3Spread2.t": "Funda Q3 propagación a la baja", - "brian.sleevecapQ4Spread1.d": "Controla la propagación de la curvatura del cuarto cuadrante de manga hacia el hombro", - "brian.sleevecapQ4Spread1.t": "Funda Q4 extendido hacia arriba", - "brian.sleevecapQ4Spread2.d": "Controla la propagación de la curvatura del cuarto cuadrante de manga hacia la sisa.", - "brian.sleevecapQ4Spread2.t": "Funda Q4 propagación a la baja", - "brian.sleeveWidthGuarantee.d": "Controla cuánto del ancho de la manga se garantizará. Esto determina cuánto podemos alterar el ancho de la manga para que se ajuste a la manga en la sisa.", - "brian.sleeveWidthGuarantee.t": "Garantía de anchura de la manga", - "bruce.bulge.d": "Incrementar el ángulo para crear más espacio en el bolsillo delantero.", - "bruce.bulge.t": "Bulto", - "bruce.legBonus.d": "La longitud extra a añadir a las perneras.", - "bruce.legBonus.t": "Extra de longitud de pierna", - "bruce.rise.d": "La cantidad a elevar la cintura. Valores negativos la bajan.", - "bruce.rise.t": "Elevación de la cintura", - "bruce.stretch.d": "La cantidad de holgura negativa.", - "bruce.stretch.t": "Extensión", - "bruce.legStretch.d": "Para mejores resultados, tus piernas deben ajustarse cómodamente.", - "bruce.legStretch.t": "Estiramiento de la pernera", - "bruce.backRise.d": "Porcentaje en el que la cintura se elevará en la espalda.", - "bruce.backRise.t": "Elevación de la espalda", - "carlita.contour.d": "Controla cómo de abrubtamente se ajustan las costuras princesa.", - "carlita.contour.t": "Contorno", - "carlton.seatEase.d": "Cantidad de facilidad alrededor de tu trasero", - "carlton.seatEase.t": "Facilidad de asiento", - "carlton.pocketPlacementHorizontal.d": "La ubicación (horizontal) de los bolsillos", - "carlton.pocketPlacementHorizontal.t": "Colocación horizontal del bolsillo", - "carlton.pocketPlacementVertical.d": "La ubicación (vertical) de los bolsillos", - "carlton.pocketPlacementVertical.t": "Colocación vertical del bolsillo", - "carlton.collarHeight.d": "Altura del cuello", - "carlton.collarHeight.t": "Altura del collar", - "carlton.length.d": "Largo total", - "carlton.length.t": "Longitud", - "carlton.pocketFlapRadius.d": "La cantidad por la cual se redondea la solapa del bolsillo", - "carlton.pocketFlapRadius.t": "Radio de la tapa del bolsillo", - "carlton.pocketRadius.d": "La cantidad por la cual se redondea el bolsillo", - "carlton.pocketRadius.t": "Radio de bolsillo", - "carlton.chestPocketHeight.d": "Altura del bolsillo del pecho", - "carlton.chestPocketHeight.t": "Altura del bolsillo pecho", - "carlton.beltWidth.d": "Ancho del cinturón", - "carlton.beltWidth.t": "Ancho del cinturón", - "carlton.buttonSpacingHorizontal.d": "El espaciado horizontal de los botones, también determina la superposición del cierre frontal", - "carlton.buttonSpacingHorizontal.t": "Espaciado horizontal de los botones", - "cathrin.panels.d": "La cantidad de paneles a trazar. Más paneles permiten un mejor ajuste para cuerpos con más curvas.", - "cathrin.panels.t": "Número de paneles", - "cathrin.waistReduction.d": "La cantidad en la que quieres que el corset reduzca la cintura.", - "cathrin.waistReduction.t": "Reducción de cintura", - "cathrin.backOpening.d": "Abertura en el centro del cierre de la espalda.", - "cathrin.backOpening.t": "Abertura de la espalda", - "cathrin.backRise.d": "Cantidad en que los paneles traseros se elevan sobre el centro de la espalda", - "cathrin.backRise.t": "Elevación de la espalda", - "cathrin.backDrop.d": "En qué medida los paneles posteriores se extienden bajo la cadera. Valores negativos los elevan sobre ella.", - "cathrin.backDrop.t": "Caída de la espalda", - "cathrin.frontRise.d": "Cuánto se eleva el panel frontal entre tus pechos. Valores negativos lo bajan.", - "cathrin.frontRise.t": "Elevación frontal", - "cathrin.frontDrop.d": "Cuánto los paneles frontales caen bajo la cadera en el centro por delate.", - "cathrin.frontDrop.t": "Caída frontal", - "cathrin.hipRise.d": "Cuánto se elevan los paneles laterales sobre tu cadera.", - "cathrin.hipRise.t": "Elevación de la cadera", - "charlie.backPocketHorizontalPlacement.d": "Controls the horizontal placement of the back pocket", - "charlie.backPocketHorizontalPlacement.t": "Back pocket horizontal placement", - "charlie.backPocketVerticalPlacement.d": "Controls the vertical placement of the back pocket", - "charlie.backPocketVerticalPlacement.t": "Back pocket vertical placement", - "charlie.backPocketWidth.d": "Controls the width of the back pocket", - "charlie.backPocketWidth.t": "Back pocket width", - "charlie.backPocketDepth.d": "Controls the depth of the back pocket", - "charlie.backPocketDepth.t": "Back pocket depth", - "charlie.frontPocketSlantDepth.d": "Controls the depth of the (front) pocket slant", - "charlie.frontPocketSlantDepth.t": "Front pocket slant depth", - "charlie.frontPocketSlantWidth.d": "Controls the width of the (front) pocket slant", - "charlie.frontPocketSlantWidth.t": "Front pocket slant width", - "charlie.frontPocketSlantRound.d": "Controls how far from the end of the slant we start rounding into the outseam", - "charlie.frontPocketSlantRound.t": "Front pocket slant round", - "charlie.frontPocketSlantBend.d": "Controls the radius by which we round the pocket slant into the outseam", - "charlie.frontPocketSlantBend.t": "Front pocket slant bend", - "charlie.frontPocketWidth.d": "Controls the width of the front pocket bag", - "charlie.frontPocketWidth.t": "Front pocket width", - "charlie.frontPocketDepth.d": "Controls the depth of the front pocket bag", - "charlie.frontPocketDepth.t": "Front pocket depth", - "charlie.frontPocketFacing.d": "Controls how far the pocket facing extends into the pocket bag", - "charlie.frontPocketFacing.t": "Front pocket facing", - "charlie.beltLoops.d": "Controls the amount of belt loops", - "charlie.beltLoops.t": "Belt loops", - "charlie.flyCurve.d": "Controls the curvature of the fly J-seam", - "charlie.flyCurve.t": "Fly curve", - "charlie.flyLength.d": "Controls the length of the fly", - "charlie.flyLength.t": "Fly length", - "charlie.flyWidth.d": "Controls how far the J-seam of offset from the fly edge", - "charlie.flyWidth.t": "Fly width", - "charlie.waistbandCurve.d": "Controls how curved the waistband is.", - "charlie.waistbandCurve.t": "Waistband Curve", - "cornelius.fullness.d": "Controls the fullness of the breeches", - "cornelius.fullness.t": "Fullness", - "cornelius.waistbandBelowWaist.d": "Percentage to move the waistband below the actual waist", - "cornelius.waistbandBelowWaist.t": "Lower waistband", - "cornelius.waistReduction.d": "Percentage to reduce the waistband", - "cornelius.waistReduction.t": "Waist reduction", - "cornelius.cuffWidth.d": "Width of the leg cuff", - "cornelius.cuffWidth.t": "Cuff width", - "cornelius.cuffStyle.d": "Style of the leg cuff", - "cornelius.cuffStyle.t": "Cuff style", - "cornelius.bandBelowKnee.d": "Controls the cuff distance from the knee", - "cornelius.bandBelowKnee.t": "Cuff below knee", - "cornelius.kneeToBelow.d": "Controls the tightness of the cuff as compared to the knee", - "cornelius.kneeToBelow.t": "Cuff length", - "cornelius.ventLength.d": "Controls the length of the vent between knee and cuff", - "cornelius.ventLength.t": "Vent length", - "diana.shoulderSeamLength.d": "Controla la longitud de la costura de hombro", - "diana.shoulderSeamLength.t": "Longitud de la costura de hombro", - "diana.drapeAngle.d": "Controla la cantidad de drapeado", - "diana.drapeAngle.t": "Ángulo del drapeado", - "florence.height.d": "Controla la altura de la mascarilla", - "florence.height.t": "Altura", - "florence.length.d": "Controla la longitud de la mascarilla", - "florence.length.t": "Longitud", - "florence.curve.d": "Controla la curvatura del borde superior de la mascarilla", - "florence.curve.t": "Curva", - "florent.headEase.d": "La cantidad de holgura alrededor de la cabeza", - "florent.headEase.t": "Holgura de cabeza", - "holmes.lengthRatio.d": "fixme", - "holmes.lengthRatio.t": "Ratio de longitud", - "holmes.goreNumber.d": "El número de paneles usado para construir la semiesfera", - "holmes.goreNumber.t": "Número de paneles", - "holmes.brimAngle.d": "Controla la curvatura de la visera", - "holmes.brimAngle.t": "Ángulo de la visera", - "holmes.brimWidth.d": "Controla la anchura de la visera", - "holmes.brimWidth.t": "Ancho de la visera", - "hortensia.size.d": "Controls the overall size of the handbag", - "hortensia.size.t": "Size", - "hortensia.zipperSize.d": "Which size of zipper to use", - "hortensia.zipperSize.t": "Zipper size", - "hortensia.strapLength.d": "Controls the length of the strap", - "hortensia.strapLength.t": "Strap length", - "hortensia.handleWidth.d": "Controls the width of the handle", - "hortensia.handleWidth.t": "Handle width", - "huey.pocket.d": "Si se añado un bolsillo frontal o no", - "huey.pocket.t": "Bolsillo", - "huey.pocketHeight.d": "Controla la altura del bolsillo", - "huey.pocketHeight.t": "Altura de bolsillo", - "huey.hoodHeight.d": "Controla la altura del capucha", - "huey.hoodHeight.t": "Altura de capucha", - "huey.hoodCutback.d": "Controla cómo abrir el capó se recorta", - "huey.hoodCutback.t": "Recorta capucha", - "huey.hoodClosure.d": "Controla la parte del capó que forma parte del cierre frontal", - "huey.hoodClosure.t": "Cierre de capucha", - "huey.hoodDepth.d": "Controla la profundidad del capucha", - "huey.hoodDepth.t": "Profundidad de capucha", - "huey.hoodAngle.d": "Controla el ángulo en el que la capucha es unida", - "huey.hoodAngle.t": "Angulo de capucha", - "hugo.hipsEase.d": "La cantidad de holgura en la cadera.", - "hugo.hipsEase.t": "Holgura de cadera", - "jaeger.centerBackDart.d": "Dart at the center back of your neck to accommodate a rounded back", - "jaeger.centerBackDart.t": "Pinza en el centro de la espalda", - "jaeger.sleeveVentLength.d": "Longitud de la vista de la manga", - "jaeger.sleeveVentLength.t": "Longitud de la vista de la manga", - "jaeger.sleeveVentWidth.d": "Ancho de la vista de la manga", - "jaeger.sleeveVentWidth.t": "Ancho de la vista de la manga", - "jaeger.chestShaping.d": "Amount of shaping to accommodate for the chest curve", - "jaeger.chestShaping.t": "Forma del pecho", - "jaeger.frontDartPlacement.d": "Ubicación de las pinzas delanteras", - "jaeger.frontDartPlacement.t": "Colocación de la pinza delantera", - "jaeger.frontOverlap.d": "Cuánto se extiende la tela más allá de los botones de cierre", - "jaeger.frontOverlap.t": "Superposición frontal", - "jaeger.sideFrontPlacement.d": "La ubicación del borde lateral / frontal", - "jaeger.sideFrontPlacement.t": "Colocación lateral / frontal", - "jaeger.chestPocketDepth.d": "La profundidad del bolsillo del pecho", - "jaeger.chestPocketDepth.t": "Profundidad del bolsillo del pecho", - "jaeger.chestPocketWidth.d": "El ancho del bolsillo del pecho", - "jaeger.chestPocketWidth.t": "Ancho bolsillo del pecho", - "jaeger.chestPocketPlacement.d": "La ubicación del bolsillo del pecho", - "jaeger.chestPocketPlacement.t": "Colocación de bolsillo en el pecho", - "jaeger.chestPocketAngle.d": "El ángulo bajo el cual se coloca el bolsillo del pecho", - "jaeger.chestPocketAngle.t": "Ángulo de bolsillo del pecho", - "jaeger.chestPocketWeltSize.d": "El tamaño de la bolsa de pecho", - "jaeger.chestPocketWeltSize.t": "Talla de bolsillo de bolsillo", - "jaeger.frontPocketPlacement.d": "Colocación frontal del bolsillo", - "jaeger.frontPocketPlacement.t": "Colocación frontal del bolsillo", - "jaeger.frontPocketWidth.d": "El ancho del bolsillo delantero", - "jaeger.frontPocketWidth.t": "Ancho bolsillo frontal", - "jaeger.frontPocketDepth.d": "La profundidad del bolsillo frontal", - "jaeger.frontPocketDepth.t": "Profundidad de bolsillo frontal", - "jaeger.frontPocketRadius.d": "El radio por el cual se redondea el bolsillo delantero", - "jaeger.frontPocketRadius.t": "Radio de bolsillo delantero", - "jaeger.innerPocketPlacement.d": "La ubicación del bolsillo interior", - "jaeger.innerPocketPlacement.t": "Colocación del bolsillo interior", - "jaeger.innerPocketWidth.d": "El ancho del bolsillo interior", - "jaeger.innerPocketWidth.t": "Ancho bolsillo interior", - "jaeger.innerPocketDepth.d": "La profundidad del bolsillo interior", - "jaeger.innerPocketDepth.t": "Profundidad del bolsillo interior", - "jaeger.innerPocketWeltHeight.d": "La altura de la bolsa interior", - "jaeger.innerPocketWeltHeight.t": "Altura interior de los bolsillos", - "jaeger.pocketFoldover.d": "La cantidad por la cual el tejido principal es la carpeta sobre el bolsillo", - "jaeger.pocketFoldover.t": "Bolsillo plegable", - "jaeger.centerFrontHemDrop.d": "La cantidad por la que se baja el dobladillo hacia el centro delantero", - "jaeger.centerFrontHemDrop.t": "Dobladillo delantero central", - "jaeger.backVent.d": "La cantidad de respiraderos traseros", - "jaeger.backVent.t": "Ventilación posterior", - "jaeger.backVentLength.d": "La longitud de la (s) ventilación (es) posterior (es)", - "jaeger.backVentLength.t": "Longitud de ventilación posterior", - "jaeger.buttonLength.d": "La distancia sobre la cual los botones se extienden", - "jaeger.buttonLength.t": "Longitud del botón", - "jaeger.frontCutawayAngle.d": "El ángulo bajo el cual se corta el frente hacia el dobladillo", - "jaeger.frontCutawayAngle.t": "Ángulo de corte frontal", - "jaeger.frontCutawayStart.d": "La ubicación en la que el frente comienza a abrirse hacia el dobladillo.", - "jaeger.frontCutawayStart.t": "Estrella de corte frontal", - "jaeger.frontCutawayEnd.d": "Aumentar esto hará que el corte frontal permanezca más cerca del centro delantero", - "jaeger.frontCutawayEnd.t": "Extremo frontal cortado", - "jaeger.collarSpread.d": "La extensión del collar controla cómo el collar cubre los hombros", - "jaeger.collarSpread.t": "Cuello extendido", - "jaeger.lapelStart.d": "Lugar donde el frente central pasa por las solapas", - "jaeger.lapelStart.t": "Inicio de la solapa", - "jaeger.lapelReduction.d": "Cuánto gira hacia adentro la punta de las solapas", - "jaeger.lapelReduction.t": "Reducción de la solapa", - "jaeger.collarHeight.d": "Altura del cuello", - "jaeger.collarHeight.t": "Altura del cuello", - "jaeger.collarNotchDepth.d": "Profundidad de la muesca del cuello", - "jaeger.collarNotchDepth.t": "Profundidad de la muesca del cuello", - "jaeger.collarNotchAngle.d": "Ángulo de la muesca del cuello", - "jaeger.collarNotchAngle.t": "Ángulo de la muesca del cuello", - "jaeger.collarNotchReturn.d": "Cuánto retorna el cuello de la muesca, en comparación con la solapa", - "jaeger.collarNotchReturn.t": "Cuello muesca retorno", - "jaeger.rollLineCollarHeight.d": "¿Qué tanto la línea de balanceo abraza el cuello?", - "jaeger.rollLineCollarHeight.t": "Altura de cuello de línea de rodadura", - "jaeger.hemRadius.d": "La cantidad por la cual se redondea el dobladillo", - "jaeger.hemRadius.t": "Radio del dobladillo", - "paco.heelEase.d": "The amount of ease at your heel (when stepping into the leg)", - "paco.heelEase.t": "Heel ease", - "paco.frontPockets.d": "Whether or not to add front pockets on the side seam", - "paco.frontPockets.t": "Front pockets", - "paco.backPockets.d": "Whether or not to add welt pockets to the back", - "paco.backPockets.t": "Back pockets", - "paco.elasticatedHem.d": "Whether or not you want an elasticated hem", - "paco.elasticatedHem.t": "Elasticated hem", - "paco.ankleElastic.d": "Width of the (optional) elastic at the ankle/hem", - "paco.ankleElastic.t": "Ankle/Hem elastic width", - "penelope.backDartDepthFactor.d": "Hasta dónde llega la pinza trasera desde la cintura. Es proporción de la medida cintura natural a asiento.", - "penelope.backDartDepthFactor.t": "Factor de la pinza trasera", - "penelope.backVent.d": "Añade una avertura en la parte trasera de la falda.", - "penelope.backVent.t": "Abertura trasera", - "penelope.backVentLength.d": "Longitud de la abertura trasera como porcentaje de la longitud de la falda.", - "penelope.backVentLength.t": "Longitud de la abertura trasera", - "penelope.dartToSideSeamFactor.d": "Porcentaje de cuánta de la reducción de cadera a cintura se toma de las pinzas con respecto a las costuras laterales.", - "penelope.dartToSideSeamFactor.t": "Factor pinza a costura lateral", - "penelope.frontDartDepthFactor.d": "Hasta dónde llega la pinza delantera desde la cintura. Es proporción de la medida cintura natural a asiento.", - "penelope.frontDartDepthFactor.t": "Factor de la pinza delantera", - "penelope.hem.d": "El tamaño del dobladillo. Medida en valores absolutos.", - "penelope.hem.t": "Anchura del dobladillo", - "penelope.hemBonus.d": "Esta opción reduce la circunferencia de la falda en el dobladillo. Porcentaje de la medida de asiento.", - "penelope.hemBonus.t": "Bonus del dobladillo", - "penelope.lengthBonus.d": "Esto ajusta la longitud de la falda. Porcentaje de la medida de cintura natural a rodilla.", - "penelope.lengthBonus.t": "Bonus de longitud", - "penelope.nrOfDarts.d": "El número de pinzas usadas en el patrón. El máximo es 2. Esta opción puede ser reducida por el patrón si los cálculos crean pinzas demasiado pequeñas.", - "penelope.nrOfDarts.t": "Número de pinzas", - "penelope.seatEase.d": "La holgura al nivel del asiento.", - "penelope.seatEase.t": "Holgura de asiento", - "penelope.waistBand.d": "Añade una cinturilla al patrón.", - "penelope.waistBand.t": "Cinturilla", - "penelope.waistBandWidth.d": "La anchura de la cinturilla.", - "penelope.waistBandWidth.t": "Anchura de la cinturilla", - "penelope.waistEase.d": "La holgura al nivel de la cintura.", - "penelope.waistEase.t": "Holgura de cintura", - "penelope.zipperLocation.d": "La ubicación de la cremallera.", - "penelope.zipperLocation.t": "Ubicación de la cremallera", - "sandy.waistbandWidth.d": "Controla la anchura de la cinturilla.", - "sandy.waistbandWidth.t": "Anchura de la cinturilla", - "sandy.waistbandPosition.d": "Controla la posición de la cinturilla.", - "sandy.waistbandPosition.t": "Posición de la cinturilla", - "sandy.waistbandShape.d": "Si quieres una cinturilla recta o curvada.", - "sandy.waistbandShape.t": "Forma de la cinturilla", - "sandy.circleRatio.d": "El porcentaje de círculo que quieres que tenga la falda.", - "sandy.circleRatio.t": "Porcentaje de círculo", - "sandy.waistbandOverlap.d": "La cantidad en la que los extremos de la cinturilla se superponen.", - "sandy.waistbandOverlap.t": "Superposición de la cinturilla", - "sandy.gathering.d": "El porcentaje por el que la parte superior de la falda es más largo que la parte inferior de la cinturilla.", - "sandy.gathering.t": "Fruncido", - "sandy.seamlessFullCircle.d": "Permite una falda de círculo completo sin costuras.", - "sandy.seamlessFullCircle.t": "Círculo completo sin costura", - "sandy.hemWidth.d": "Anchura del dobladillo", - "sandy.hemWidth.t": "Hem width", - "shin.legReduction.d": "Reduce la apertura de la pierna para prevenir que se abra", - "shin.legReduction.t": "Reducción de pierna", - "simon.backDarts.d": "Incluir o no pinzas traseras", - "simon.backDarts.t": "Back darts", - "simon.backDartShaping.d": "La cantidad de forma que añaden las pinzas traseras", - "simon.backDartShaping.t": "Forma de las pinzas traseras", - "simon.barrelCuffNarrowButton.d": "Incluír o no un botón extra para ajustar más los puños. Esta opción sólo es relevante para puños de barril.", - "simon.barrelCuffNarrowButton.t": "Botón de ajuste del puño", - "simon.boxPleat.d": "Si incluir un pliegue en caja en la parte trasera o no", - "simon.boxPleat.t": "Pliegue en caja", - "simon.boxPleatWidth.d": "El ancho total del pliegue en caja", - "simon.boxPleatWidth.t": "Anchura del pliegue en caja", - "simon.boxPleatFold.d": "La cantidad por la que el piegue en caja se dobla hacia adentro", - "simon.boxPleatFold.t": "Doblado del pliegue en caja", - "simon.buttonPlacketStyle.d": "Estilo de la visto de los botones", - "simon.buttonPlacketStyle.t": "Estilo de la vista de los botones", - "simon.buttonPlacketWidth.d": "Anchura de la vista de los botones", - "simon.buttonPlacketWidth.t": "Anchura de la vista de los botones", - "simon.buttonFreeLength.d": "Qué longitud se deja entre el último botón y el bajo.", - "simon.buttonFreeLength.t": "Longitud sin botones", - "simon.buttonholePlacketFoldWidth.d": "Anchura del pliegue de la vista de los ojales.", - "simon.buttonholePlacketFoldWidth.t": "Anchura del pliegue de la vista de los ojales", - "simon.buttonholePlacketStyle.d": "Estilo de la vista de los ojales.", - "simon.buttonholePlacketStyle.t": "Estilo de la vista de los ojales", - "simon.buttonholePlacketWidth.d": "Width of the buttonhole placket.", - "simon.buttonholePlacketWidth.t": "Anchura de la vista de los ojales", - "simon.buttons.d": "Número de botones delanteros", - "simon.buttons.t": "Número de botones", - "simon.collarAngle.d": "El ángulo de los picos del cuello", - "simon.collarAngle.t": "Ángulo del pico del cuello", - "simon.collarBend.d": "La inclinación del cuello hacia atrás.", - "simon.collarBend.t": "Inclinación del cuello", - "simon.collarFlare.d": "Cuánto más ancho es el cuello en los picos con respecto al centro.", - "simon.collarFlare.t": "Forma de los picos del cuello", - "simon.collarGap.d": "La separación entre los dos extremos del cuello", - "simon.collarGap.t": "Espaciado del cuello", - "simon.collarRoll.d": "La cantidad en la que el cuello es más alto que la base del cuello en el centro por detrás.", - "simon.collarRoll.t": "Vuelta del cuello", - "simon.collarStandBend.d": "La cantidad en la que el cuello superior es mayor que el inferior.", - "simon.collarStandBend.t": "Doblado de la base del cuello", - "simon.collarStandCurve.d": "La curvatura de la base del cuello.", - "simon.collarStandCurve.t": "Curvatura de la base del cuello", - "simon.collarStandWidth.d": "Width of the collar stand.", - "simon.collarStandWidth.t": "Anchura de la base del cuello", - "simon.cuffButtonRows.d": "Trazar una o dos hileras de botones en los puños. Esta opción es relevante sólo para puños de barril.", - "simon.cuffButtonRows.t": "Hileras de botones en los puños", - "simon.cuffDrape.d": "La cantidad en la que la manga es más ancha que el puño en el lugar donde se unen.", - "simon.cuffDrape.t": "Plisado del puño", - "simon.cuffLength.d": "La longitud de los puños.", - "simon.cuffLength.t": "Longitud del puño", - "simon.cuffStyle.d": "El estilo de los puños.", - "simon.cuffStyle.t": "Estilo del puño", - "simon.extraTopButton.d": "Incluír o no un botón extra en el cierre frontal.", - "simon.extraTopButton.t": "Botón extra superior", - "simon.hemCurve.d": "La altura de la curva en un dobladillo redondeado.", - "simon.hemCurve.t": "Curva del dobladillo", - "simon.hemStyle.d": "El estilo del dobladillo.", - "simon.hemStyle.t": "Estilo del dobladillo", - "simon.roundBack.d": "To fit a round(er) back, this adds length to the center back (at the yoke) that tapers of towards the sides.", - "simon.roundBack.t": "Round back", - "simon.seperateButtonholePlacket.d": "Draft a separate buttonhole placket.", - "simon.seperateButtonholePlacket.t": "Tapeta de ojal separada", - "simon.seperateButtonPlacket.d": "Draft a separate button placket", - "simon.seperateButtonPlacket.t": "Tapeta de botones separada", - "simon.sleevePlacketLength.d": "La longitud de la vista de la manga.", - "simon.sleevePlacketLength.t": "Longitud de la vista de la manga", - "simon.sleevePlacketWidth.d": "La anchura de la vista de la manga.", - "simon.sleevePlacketWidth.t": "Anchura de la vista de la manga", - "simon.splitYoke.d": "Si se traza el canesú normal o partido.", - "simon.splitYoke.t": "Canesú partido", - "simon.waistEase.d": "La cantidad de holgura en la cintura.", - "simon.waistEase.t": "Holgura de cintura", - "simon.yokeHeight.d": "Controls the height of the yoke", - "simon.yokeHeight.t": "Yoke height", - "simone.bustDartAngle.d": "Controls the angle by which the (side) bust dart slopes downward", - "simone.bustDartAngle.t": "Bust dart angle", - "simone.bustDartLength.d": "Controls how close the bust dart approaches the bust point", - "simone.bustDartLength.t": "Bust dart length", - "simone.contour.d": "Controls how sharply the extra room for breasts is removed again below the chest", - "simone.contour.t": "Contour", - "simone.frontDarts.d": "Whether to include front darts or not", - "simone.frontDarts.t": "Front darts", - "simone.frontDartLength.d": "Controls how close the front dart approaches the bust point", - "simone.frontDartLength.t": "Front dart length", - "sven.ribbing.d": "Ya sea para terminar el dobladillo y los puños con tejido acanalado.", - "sven.ribbing.t": "Tejido acanalado", - "sven.ribbingHeight.d": "La altura del tejido acanalado en los puños y el dobladillo.", - "sven.ribbingHeight.t": "Altura de tejido acanalado", - "sven.ribbingStretch.d": "La cantidad de holgura negativa de tejido acanalado.", - "sven.ribbingStretch.t": "Extensión de tejido acanalado", - "tamiko.flare.d": "La cantidad por la cual la prenda se ensancha desde tu pecho hacia abajo.", - "tamiko.flare.t": "Ensanchamiento", - "tamiko.shoulderseamLength.d": "La longitud de la costura del hombro, como un factor de la medida de su hombro a hombro.", - "tamiko.shoulderseamLength.t": "Shoulder seam length", - "tamiko.shoulderSlope.d": "Controls the angle of the shoulder seams", - "tamiko.shoulderSlope.t": "Pendiente del hombro", - "teagan.draftForHighBust.d": "Draft the pattern for the high bust measurement (if available) rather than the (full) chest. This will result in a more fitted garment for people with breasts.", - "teagan.draftForHighBust.t": "Draft for high bust", - "teagan.sleeveEase.d": "Amount of ease of your sleeves", - "teagan.sleeveEase.t": "Sleeve ease", - "teagan.sleeveLength.d": "Controls the length of your sleeves", - "teagan.sleeveLength.t": "Sleeve length", - "teagan.necklineBend.d": "Controls the curvature of the neckline.", - "teagan.necklineBend.t": "Neckline curvature", - "teagan.necklineDepth.d": "Controls how deep the neck opening plunges down.", - "teagan.necklineDepth.t": "Neckline depth", - "teagan.necklineWidth.d": "Controls the width of the neck opening.", - "teagan.necklineWidth.t": "Neckline width", - "theo.wedge.d": "Controls the length of the cross seam", - "theo.wedge.t": "Cuña", - "theo.legWidth.d": "Controla la anchura de la pernera", - "theo.legWidth.t": "Ancho de la pierna", - "titan.kneeEase.d": "Controls the amout of ease at the knee", - "titan.kneeEase.t": "Knee ease", - "titan.waistHeight.d": "Controls the height of the waist, 100% = waist height, 0% = hip height", - "titan.waistHeight.t": "Waist height", - "titan.lengthBonus.d": "Controls the length of the trousers", - "titan.lengthBonus.t": "Length bonus", - "titan.crotchDrop.d": "Lowers the crotch for a more relaxed fit", - "titan.crotchDrop.t": "Crotch drop", - "titan.fitKnee.d": "Fits the legs from based on the knee circumference, rather than seat circumference", - "titan.fitKnee.t": "Fit the knee", - "titan.legBalance.d": "Controls the ratio between front and back panel of the leg", - "titan.legBalance.t": "Leg balance", - "titan.crossSeamCurveStart.d": "Controla hasta qué punto en la costura cruzada empezamos a curvar", - "titan.crossSeamCurveStart.t": "Start of the cross seam curve", - "titan.crossSeamCurveBend.d": "Controls the curvature of the cross seam", - "titan.crossSeamCurveBend.t": "Cross seam bend", - "titan.crossSeamCurveAngle.d": "Controls the angle of the cross seam", - "titan.crossSeamCurveAngle.t": "Cross seam angle", - "titan.crotchSeamCurveStart.d": "Controls how far into the crotch seam we start to curve", - "titan.crotchSeamCurveStart.t": "Start of the crotch seam curve", - "titan.crotchSeamCurveBend.d": "Controls the curvature of the crotch seam", - "titan.crotchSeamCurveBend.t": "Crotch seam bend", - "titan.crotchSeamCurveAngle.d": "Controls the angle of the crotch seam", - "titan.crotchSeamCurveAngle.t": "Crotch seam angle", - "titan.waistBalance.d": "Controls the horizontal position of the waist relative to the seat", - "titan.waistBalance.t": "Waist balance", - "titan.waistbandWidth.d": "The width of the waistband", - "titan.waistbandWidth.t": "Waistband width", - "titan.grainlinePosition.d": "Controls the horizontal position of the leg relative to the seat", - "titan.grainlinePosition.t": "Grainline position", - "trayvon.tipWidth.d": "El ancho de tu corbata en la punta", - "trayvon.tipWidth.t": "Ancho de la punta", - "trayvon.knotWidth.d": "El ancho de tu corbata en el nudo", - "trayvon.knotWidth.t": "Ancho de nudo", - "ursula.fabricStretch.d": "Adjust this for more or less stretchy fabrics", - "ursula.fabricStretch.t": "Fabric stretch", - "ursula.gussetWidth.d": "Controls the width of the gusset", - "ursula.gussetWidth.t": "Gusset width", - "ursula.gussetLength.d": "Controls the length of the gusset", - "ursula.gussetLength.t": "Gusset length", - "ursula.elasticStretch.d": "Adjust this for more or less stretchy elastic", - "ursula.elasticStretch.t": "Elastic stretch", - "ursula.rise.d": "Controls the height of the waist", - "ursula.rise.t": "Rise", - "ursula.legOpening.d": "Controls how high the leg is cut out", - "ursula.legOpening.t": "Leg opening", - "ursula.frontDip.d": "Controls how much the front waist curves (revealing more or less skin)", - "ursula.frontDip.t": "Front waist dip", - "ursula.backDip.d": "Controls how much the back waist curves (revealing more or less skin)", - "ursula.backDip.t": "Back waist dip", - "ursula.taperToGusset.d": "Controls the amount of exposed skin on the front", - "ursula.taperToGusset.t": "Front exposure", - "ursula.backExposure.d": "Controls the amount of exposed skin on the back", - "ursula.backExposure.t": "Back exposure", - "wahid.backScyeDart.d": "La cantidad a reducir en una pinza en la parte posterior de la sisa.", - "wahid.backScyeDart.t": "Pinza posterior de la sisa", - "wahid.frontScyeDart.d": "La cantidad a reducir en una pinza en el frente de la sisa.", - "wahid.frontScyeDart.t": "Pinza frontal de la sisa", - "wahid.pocketLocation.d": "Determina la colocación del bolsillo", - "wahid.pocketLocation.t": "Ubicación de bolsillo", - "wahid.pocketWidth.d": "La anchura del bolsillo", - "wahid.pocketWidth.t": "Anchura de bolsillo", - "wahid.weltHeight.d": "La altura de verdugón del bolsillo.", - "wahid.weltHeight.t": "Altura de verdugón del bolsillo", - "wahid.necklineDrop.d": "Determina lo bajo que cae la línea de cuello en la parte delantera", - "wahid.necklineDrop.t": "Caída del escote", - "wahid.frontStyle.d": "Estilo de apertura del cuello", - "wahid.frontStyle.t": "Estilo de la apertura del cuello", - "wahid.hemStyle.d": "Estilo del dobladillo delantero", - "wahid.hemStyle.t": "Estilo del dobladillo", - "wahid.hemRadius.d": "Radius by which the hem is rounded", - "wahid.hemRadius.t": "Radio del dobladillo", - "wahid.backInset.d": "Cuánto de la parte de atrás de la sisa se corta hacia el interior", - "wahid.backInset.t": "Inserción trasera", - "wahid.frontInset.d": "Cuánto de la parte de delante de la sisa se corta hacia el interior", - "wahid.frontInset.t": "Inserción delantera", - "wahid.shoulderInset.d": "Cuánto la costura del hombro se recorta hacia el interior en el hombro", - "wahid.shoulderInset.t": "Inserción de hombro", - "wahid.neckInset.d": "Cuánto de la costura del hombro se corta hacia el interior en el cuello", - "wahid.neckInset.t": "Inserción de cuello", - "wahid.pocketAngle.d": "Ángulo del forro del bolsillo", - "wahid.pocketAngle.t": "Ángulo del bolsillo", - "waralee.backPocket.d": "Si se añade un bolsillo trasero o no", - "waralee.backPocket.t": "Bolsillo trasero", - "waralee.frontPocket.d": "Si se añade un bolsillo delantero o no", - "waralee.frontPocket.t": "Bolsillo delantero", - "waralee.hem.d": "Size of the hem at the bottom of the pants", - "waralee.hem.t": "Hem size", - "waralee.waistBand.d": "Tamaño de la banda de cintura", - "waralee.waistBand.t": "Waist Band", - "waralee.waistRaise.d": "How much to raise the waist from the seat depth measurement. This influences the depth of the crotch cut-out.", - "waralee.waistRaise.t": "Waist Raise", - "waralee.crotchBack.d": "The percentage of the seat circumference that the back crotch needs to occupy. This creates more or less space between the side seam and the back.", - "waralee.crotchBack.t": "Crotch Back", - "waralee.crotchFront.d": "The percentage of the seat circumference that the front crotch needs to occupy. This creates more or less space between the side seam and the front.", - "waralee.crotchFront.t": "Crotch Front", - "waralee.crotchFactorBackHor.d": "Used to move the curve of the crotch in the back horizontally", - "waralee.crotchFactorBackHor.t": "Back Crotch Factor Horizontal", - "waralee.crotchFactorBackVer.d": "Used to move the curve of the crotch in the back vertically", - "waralee.crotchFactorBackVer.t": "Back Crotch Factor Vertical", - "waralee.crotchFactorFrontHor.d": "Used to move the curve of the crotch in the front horizontally", - "waralee.crotchFactorFrontHor.t": "Front Crotch Factor Horizontal", - "waralee.crotchFactorFrontVer.d": "Used to move the curve of the crotch in the front vertically", - "waralee.crotchFactorFrontVer.t": "Front Crotch Factor Vertical", - "waralee.waistOverlap.d": "This dicates how much you want the leg flaps to overlap at the waist. A setting of 0 would have them meet at the side seam, and a setting of 100 makes them meet at the front/back.", - "waralee.waistOverlap.t": "Waist Overlap", - "waralee.legShortening.d": "This dictates how long the pants will be. It is a factor of the inseam measurement. The larger the value, the more that will be taken off the length.", - "waralee.legShortening.t": "Leg Shortening", - "waralee.backRaise.d": "This setting raises the waist in the back. Our waist does not sit horizontally, but is angled up at the back. This seting allows you to raise this in the back if you need it for a good fit.", - "waralee.backRaise.t": "Back Raise" -} -export const fr = { - "acc.accountRemoved": "Compte supprimé", - "acc.accountRestricted": "Compte restreint", - "acc.avatar": "Avatar", - "acc.avatarInfo": "Votre avatar ou votre photo de profil s'afficheront sur votre page de profil.", - "acc.avatarTitle": "Configurez votre photo de profil", - "acc.bio": "Bio", - "acc.bioInfo": "C’est ici que vous pouvez parler un peu de vous aux autres utilisateurs de freesewing. Ce champ prend en charge MarkDown (langage de balisage) ; vous pouvez donc également inclure des liens. Si vous avez un blog, c’est là que vous indiquez le lien pour que les autres puissent le découvrir.", - "acc.bioTitle": "Rédigez une courte biographie", - "acc.currentPassword": "Mot de passe actuel", - "acc.email": "Adresse mail", - "acc.emailInfo": "L'adresse e-mail associée à votre compte est importante car elle sera utilisée pour retrouver l'accès à votre compte si vous oubliez votre mot de passe. Pour cette raison, la modification de votre adresse e-mail nécessite une confirmation.", - "acc.emailTitle": "Entrez l'adresse e-mail que vous souhaitez associer à ce compte", - "acc.exportYourData": "Exportez vos données", - "acc.exportYourDataInfo": "Le Règlement Général sur la Protection des Donnée de l'UE (RGPD) garantit votre droit à la portabilité - le droit d'obtenir et de réutiliser vos données personnelles à des fins personnelles, ou sur pour d'autres services.", - "acc.exportYourDataTitle": "Cliquez ci-dessous pour télécharger vos données personnelles", - "acc.github": "GitHub", - "acc.githubInfo": "Si vous fournissez votre nom d'utilisateur GitHub, votre page de profil contiendra un lien vers votre compte Github, afin que les visiteurs puissent découvrir vos contributions au code, vous mettre en vedette ou vous suivre.", - "acc.githubTitle": "Entrez votre nom d'utilisateur GitHub", - "acc.instagramInfo": "Si vous fournissez votre nom d'utilisateur Instagram, votre page de profil contiendra un lien vers votre compte Instagram, afin que les visiteurs puissent découvrir vos photos et vous suivre.", - "acc.instagram": "Instagram", - "acc.instagramTitle": "Entrez votre nom d'utilisateur Instagram", - "acc.languageInfo": "Ce choix de langue détermine dans quelle langue vous recevrez les courriers électroniques de freesewing. Il ne détermine pas la langue du site Web, qui peut être choisie sur chaque page.", - "acc.language": "Langue", - "acc.languageTitle": "Sélectionnez la langue de votre choix", - "acc.newPassword": "Nouveau mot de passe", - "acc.newsletter": "Newsletter", - "acc.newsletterTitle": "Voulez-vous recevoir la newsletter de FreeSewing ?", - "acc.newsletterInfo": "Une fois tous les 3 mois, nous envoyons notre newsletter avec un contenu honnête et soigneusement défini. Aucun suivi, aucune pub, aucun contenu inutile.", - "acc.passwordInfo": "Changer votre mot de passe nécessite votre mot de passe actuel. Remplissez-le, puis entrez votre nouveau mot de passe.", - "acc.password": "Mot de passe", - "acc.passwordTitle": "Entrez votre mot de passe actuel et votre nouveau mot de passe", - "acc.patronInfo": "Les mécènes soutiennent financièrement Freesewing. Ce sont des partisans fidèles qui assurent un avenir durable à freesewing.org, à notre code, à nos patrons et à notre communauté.", - "acc.patron": "Mécène", - "acc.removeYourAccountInfo": "Le Règlement Général sur la Protection des Donnée de l'UE (RGPD) vous assure le droit à l'effacement - il s'agit de votre droit à pouvoir faire supprimer toutes vos données personnelles.", - "acc.removeYourAccount": "Supprimer votre compte", - "acc.removeYourAccountWarning": "Cela supprimera votre compte, vos Ébauches, vos modèles et toutes les données que nous avons stockées pour vous. Il n'y a pas de retour en arrière.", - "acc.resetPasswordInfo": "Saisissez un nouveau mot de passe.", - "acc.resetPassword": "Réinitialiser le mot de passe", - "acc.resetPasswordTitle": "Entrez votre nouveau mot de passe", - "acc.restrictProcessingOfYourDataInfo": "Le Règlement Général sur la Protection des Donnée de l'UE (RGPD) garantit votre droit de restreindre le traitement - le droit de suspendre le traitement de vos données.", - "acc.restrictProcessingOfYourData": "Restreindre le traitement de vos données", - "acc.restrictProcessingWarning": "Bien qu'aucune donnée ne soit supprimée, ceci se déconnectera et gèlera votre compte. De plus, vous ne pouvez pas annuler cela vous-même, mais vous devrez nous contacter lorsque vous souhaitez restaurer l'accès à votre compte.", - "acc.reviewYourConsent": "Révisez votre consentement", - "acc.socialInfo": "Si vous fournissez votre nom d'utilisateur GitHub, Twitter ou Instagram, votre page de profil contiendra des liens vers vos comptes sur ces sites. Cela permet aux utilisateurs de freesewing de vous suivre.
Nous ne contactons aucun de ces sites en votre nom. C'est simplement pour que les gens puissent faire le rapprochement et savoir que, par exemple, l'utilisateur @joost sur freesewing est la même personne que l'utilisateur @j__st sur twitter.", - "acc.social": "Réseaux Sociaux", - "acc.socialTitle": "Permettez aux gens vous suivre ailleurs", - "acc.twitterInfo": "Si vous indiquez votre nom d'utilisateur Twitter, votre page de profil contiendra un lien vers votre compte Twitter afin que les visiteurs puissent découvrir vos tweets et vous suivre.", - "acc.twitterTitle": "Entrez votre nom d'utilisateur Twitter", - "acc.twitter": "Twitter", - "acc.unitsInfo": "Freesewing prend en charge le système métrique et les mesures impériales.", - "acc.unitsTitle": "Veuillez sélectionner le système d'unités que vous préférez", - "acc.units": "Unités", - "acc.usernameInfo": "Vous avez actuellement un nom d'utilisateur généré de manière aléatoire. Ce n'est pas très personnel, vous pouvez donc changer votre nom d'utilisateur pour quelque chose de plus personnel. Comme votre nom, pseudo ou autre chose. Il vous suffit de saisir le nom d'utilisateur souhaité.", - "acc.usernameTitle": "Veuillez choisir votre nom d'utilisateur", - "acc.username": "Nom d'utilisateur", - "acc.accountIsInactive": "Votre compte est inactif", - "acc.accountNeedsActivation": "Avant de pouvoir vous connecter, vous devez activer votre compte. Veuillez vérifier votre boîte de réception et cliquez sur le lien que vous trouverez dans le mail d'enregistrement.", - "acc.reloadAccount": "Recharger le compte", - "acc.reloadAccountDescription": "Cela rechargera les données de votre compte en arrière-plan. Il a le même effet que la déconnexion, puis se reconnecter.", - "app.100PercentCommunity": "100 % communautaire", - "app.100PercentFree": "100 % gratuit", - "app.100PercentOpenSource": "100 % open source", - "app.aboutFreesewing": "À propos de Freesewing", - "app.account": "Mon Compte", - "app.accountCreated": "Compte créé", - "app.actions": "Actions", - "app.allDocumentation": "Toute la documentation", - "app.andThatIsAwesome": "Et c'est génial", - "app.applyThisLayout": "Appliquer cette mise en page", - "app.areYouSureYouWantToContinue": "Êtes-vous sûr de vouloir continuer ?", - "app.askForHelp": "Demander de l'aide", - "app.automatic": "Automatique", - "app.averagePeopleDoNotExist": "Les personnes standards n'existent pas", - "app.awesome": "Incroyable", - "app.back": "Retour", - "app.becauseThatWouldBeReallyHelpful": "Parce que ce serait vraiment utile.", - "app.becomeAPatron": "Devenir mécène", - "app.blog": "Blog", - "app.browseBlogposts": "Parcourir les articles du blog", - "app.browsePatterns": "Parcourir les patrons", - "app.browseShowcases": "Parcourir la galerie", - "app.butThatCouldChange": "Mais cela pourrait changer", - "app.cancel": "Annuler", - "app.changePerson": "Changer de personne", - "app.changePattern": "Changer de patron", - "app.chatOnDiscord": "Chat sur Discord", - "app.checkInboxClickLinkInConfirmationEmail": "Maintenant, vérifiez votre boîte de réception et cliquez sur le lien dans l'e-mail de confirmation que nous vous avons envoyé.", - "app.chest": "Poitrine", - "app.chestInfo": "Les seins nécessitent des mesures supplémentaires. Si cette personne n'a pas de seins, les mesures non pertinentes seront masquées lors de la configuration du modèle. Cela n'a aucun impact sur la façon dont les patrons sont tracés.", - "app.chooseASize": "Choisir une taille", - "app.chooseAPerson": "Choisir une personne", - "app.chooseADesign": "Choisir un design", - "app.chooseAPattern": "Choisir un patron", - "app.chooseYourOptions": "Choisir vos options", - "app.close": "Fermer", - "app.community": "Communauté", - "app.configureLayout": "Configurer la mise en page", - "app.configureYourDraft": "Configurez votre propre patron", - "app.contactUs": "Nous contacter", - "app.contentLocaleFallback": "C'est pour cela que nous vous montrons plutôt la version anglaise.", - "app.contents": "Contenus", - "app.continue": "Continuer", - "app.copiedToClipboard": "Copié dans le presse-papier", - "app.copy": "Copier", - "app.couldYouTranslateThis": "Pourriez-vous traduire cela ?", - "app.countModelsLackingForPattern": "{count} de vos personnes manquent des mesures requises pour dessiner {pattern}", - "app.created": "Créé", - "app.custom": "Personnaliser", - "app.customSeamAllowance": "Marge de couture customisée", - "app.lightMode": "Mode Clair", - "app.data": "Données", - "app.darkMode": "Mode sombre", - "app.default": "Par défaut", - "app.demo": "Démo", - "app.designOptions": "Options de design", - "app.designs": "Designs", - "app.docs": "Documentation", - "app.docsFooterMsg": "La documentation n'est jamais terminée. J'espère que nous avons pu répondre à toutes vos questions, mais si ce n'est pas le cas, de l'aide est disponible.", - "app.docsNotFoundMsg": "Nous n'avons pas pu trouver cette documentation, ce qui signifie généralement qu'elle n'a pas encore été écrite.", - "app.docsNotFoundTitle": "Cette documentation est manquante", - "app.documentationForDevelopers": "Documentation pour les développeurs", - "app.documentationForEditors": "Documentation pour les éditeurs", - "app.documentationForTranslators": "Documentation pour les traducteurs", - "app.documentationOverview": "Vue d'ensemble de la documentation", - "app.download": "Télécharger", - "app.draft": "Ébauche", - "app.draftPattern": "Ébauche de {pattern}", - "app.draftPatternForModel": "Ébauche de {pattern} pour {model}", - "app.drafts": "Ébauches", - "app.draftSettings": "Réglages de l'ébauche", - "app.dragAndDropImageHere": "Drag and drop an image here, or select one manually with the button below", - "app.emailAddress": "Adresse mail", - "app.emailWorksToo": "Si vous ne connaissez pas votre nom d'utilisateur, votre adresse mail fonctionne également", - "app.enterEmailPickPassword": "Saisissez votre adresse mail et choisissez un mot de passe", - "app.export": "Exporter", - "app.exportTiledPDF": "Exporter un PDF paginé", - "app.faq": "Foire Aux Questions (FAQ)", - "app.fieldRemoved": "{field} supprimé", - "app.fieldSaved": "{field} enregistré", - "app.filterByPattern": "Filtrer par patron", - "app.filterPatterns": "Filtrez les patrons", - "app.forgotLoginInstructions": "Entrez votre nom d'utilisateur ou votre adresse e-mail ci-dessous et cliquez sur le bouton Réintialiser le mot de passe.", - "app.freesewing": "Freesewing", - "app.freesewingOnGithub": "Freesewing sur GitHub", - "app.github": "GitHub", - "app.goAheadWeWillWait": "Allez-y, nous attendrons.", - "app.goodJob": "Bon travail", - "app.goodToSeeYouAgain": "Content de te revoir {user}", - "app.handle": "Référence", - "app.helpUsTranslate": "Aidez-nous à traduire", - "app.home": "Page d'accueil", - "app.howCanWeHelpYou": "Comment pouvons-nous vous aider ?", - "app.howToTakeMeasurements": "Comment prendre les mesures", - "app.i18n": "Internationalisation", - "app.imperialUnits": "Unités impériales (pouces)", - "app.instagram": "Instagram", - "app.invalidTldMessage": ".{tld} n'est pas un TLD valide", - "app.joinTheChatMsg": "Nous avons une communauté sur Discord avec des amis avec lesquels vous pouvez discuter.", - "app.justAMoment": "Juste un instant", - "app.layout": "Mis en page", - "app.logIn": "Connexion", - "app.loginWithProvider": "Connectez-vous avec {provider}", - "app.logOut": "Déconnexion", - "app.manual": "Manuel", - "app.markdownHelp": "Aide de MarkDown", - "app.measurements": "Mensurations", - "app.menu": "Menu", - "app.metadata": "Métadonnées", - "app.metricUnits": "Unités métriques (cm)", - "app.person": "Personne", - "app.people": "Personnes", - "app.nameInfo": "Un nom aide à reconnaitre les choses. Vous pouvez choisir n'importe quel nom.", - "app.name": "Nom", - "app.addThing": "Ajouter {thing}", - "app.newThing": "Nouveau {thing}", - "app.newPatternForModel": "Nouveau {pattern} pour {model}", - "app.noChanges": "Pas de changement", - "app.no": false, - "app.noPasswordPolicy": "Nous n'appliquons pas de politique sur les mots de passe", - "app.noSeamAllowance": "Marges de couture non-comprises", - "app.notAllOfThisContentIsAvailableInLanguage": "Tout ce contenu n'est pas disponible en français", - "app.notesInfo": "Ce sont vos notes. Vous pouvez écrire tout ce que vous voulez ici.", - "app.notes": "Remarques", - "app.ohNo": "Oh non !", - "app.oneMoreThing": "Encore une chose", - "app.options": "Options", - "app.orPayPerYear": "Ou payer par an", - "app.other": "Autre", - "app.otherThing": "Autres {thing}", - "app.ourPatrons": "Nos mécènes", - "app.ourRevenuePledge": "Notre engagement de revenus", - "app.patron-2": "Matelot", - "app.patron-4": "Second", - "app.patron-8": "Capitaine", - "app.patronHelp": "Si vous avez des questions ou souhaitez modifier votre statut de Mécène, veuillez nous contacter", - "app.patron": "Mécène", - "app.patronPitch": "Si vous pensez que ce que nous faisons vaut la peine, et si vous pouvez épargner quelques pièces chaque mois sans difficulté, veuillez soutenir notre travail", - "app.patronsKeepUsAfloat": "Freesewing est rendu possible grâce au soutien financier de nos mécènes. Ils gardent ce navire à flot.", - "app.patternInstructions": "Documentation du patron", - "app.patternOptions": "Options du patron", - "app.pattern": "Patron", - "app.sewingPatterns": "Patrons de couture", - "app.patterns": "Patrons", - "app.pendingConfirmation": "En attente de confirmation", - "app.perMonth": "Par Mois", - "app.pleaseEnterAValidEmailAddress": "Merci d'entrer une adresse e-mail valide", - "app.pleaseIncludeTheInformationBelow": "Merci d'inclure les informations ci-dessous", - "app.preview": "Aperçu", - "app.privacyNotice": "Politique de confidentialité", - "app.proceedWithCaution": "Procédez avec précaution", - "app.profile": "Profil", - "app.relatedLinks": "Liens connexes", - "app.remove": "Supprimer", - "app.removeThing": "Supprimer {thing}", - "app.reportThisOnGithub": "Le signaler sur Github", - "app.requiredMeasurements": "Mensurations requises", - "app.resendActivationEmailMessage": "Remplissez l'adresse e-mail avec laquelle vous vous êtes inscrit, et nous vous enverrons un nouveau message de confirmation.", - "app.resendActivationEmail": "Renvoyer le mail d'activation", - "app.resetPassword": "Réinitialiser le mot de passe", - "app.reset": "Réinitialiser", - "app.restoreDefaults": "Rétablir les paramètres par défaut", - "app.restoreDesignDefaults": "Rétablir les paramètres par défaut du design", - "app.restorePatternDefaults": "Rétablie les paramètres par défaut du patron", - "app.saveDraftToYourAccount": "Enregistrer l'ébauche sur votre compte", - "app.save": "Sauvegarder", - "app.searchLanguageMsg": "Chaque langue a son propre index de recherche. Puisque tout notre contenu n'est pas traduit, vous pouvez trouver plus de résultats dans la recherche en anglais.", - "app.searchLanguageTitle": "Vous ne trouvez pas ce que vous cherchez ?", - "app.search": "Chercher", - "app.selectAPartToMoveMirrorOrRotate": "Sélectionnez une pièce à déplacer, inverser ou faire pivoter", - "app.selectImage": "Sélectionner une image", - "app.sendAnEmail": "Envoyer un mail", - "app.settings": "Paramètres", - "app.sewingHelp": "Aide de couture", - "app.sewingPatternsForNonAveragePeople": "Patrons de couture pour personnes non-standards", - "app.share": "Partager", - "app.shareFreesewing": "Partager FreeSewing", - "app.showcase": "Galerie", - "app.signUpForAFreeAccount": "Créer un compte gratuit", - "app.signUp": "S'inscrire", - "app.signupWithProvider": "S'inscrire avec {provider}", - "app.sortByField": "Trier par {field}", - "app.standardSeamAllowance": "Marge de couture standard", - "app.startOver": "Recommencer", - "app.startTranslatingNowOrRead": "{startTranslatingNow}, ou lisez d'abord la {documentationForTranslators}.", - "app.startTranslatingNow": "Commencez à traduire maintenant", - "app.subscribe": "Souscrire", - "app.support": "Soutien", - "app.supportFreesewing": "Soutenir freesewing", - "app.tellMeMore": "En savoir plus", - "app.thanksForYourSupport": "Merci pour votre soutien", - "app.thisContentIsNotAvailableInLanguage": "Ce contenu n'est pas disponible en français.", - "app.thisFieldSupportsMarkdown": "Ce champ prend en charge Markdown", - "app.thisPageRequiresAuthentication": "Cette page nécessite une authentification", - "app.troubleLoggingIn": "Un problème de connexion ?", - "app.twitter": "Twitter", - "app.txt-footer": "Freesewing est fait par une communauté de contributeurs
avec le soutien financier de nos Mécènes", - "app.txt-tier2": "Notre niveau le plus démocratiquement tarifé. C'est peut-être moins que le prix d'un latte, mais votre soutien compte beaucoup pour nous.", - "app.txt-tier4": "Abonnez-vous à ce niveau et nous vous enverrons une part de notre swag Freesewing tant convoité chez vous, partout dans le monde.", - "app.txt-tier8": "Si vous ne voulez simplement pas nous soutenir, mais que vous voulez que le freesewing se développe, c'est le niveau qui vous convient. Aussi : swag supplémentaire !", - "app.txt-tiers": "Freesewing est financé par un modèle de souscription volontaire", - "app.unitsInfo": "Freesewing prend en charge le système métrique et les unités impériales. Choisissez simplement celui que vous souhaitez utiliser ici. (Par défaut, vous utilisez les unités configurées dans votre compte).", - "app.updated": "Mis à jour", - "app.update": "Mettre à jour", - "app.userHasBeenWithUsSince": "{user} est parmi nous depuis {since}", - "app.users": "Utilisateurs", - "app.weAreValidatingYourConfirmationCode": "Nous sommes en train de valider votre code de confirmation", - "app.weCouldNotValidateYourConfirmationCode": "Nous n'avons pas pu valider votre code de confirmation", - "app.weEncounteredAProblem": "Nous avons rencontré un problème", - "app.weEncourageYouToReportThis": "Nous vous encourageons à signaler ceci", - "app.welcomeAboard": "Bienvenue à bord", - "app.welcome": "Bienvenue", - "app.weNeverShareYourEmail": "Nous ne partagerons jamais votre adresse email avec quiconque.", - "app.whatIsThis": "Qu'est-ce que c'est ?", - "app.withBreasts": "Avec des seins", - "app.withoutBreasts": "Sans seins", - "app.yay": "Yahou !", - "app.yes": true, - "app.youAreAPatron": "Vous êtes un mécène", - "app.youAreNotAPatron": "Vous n'êtes pas mécène", - "app.youAreNotLoggedIn": "Vous n'êtes pas connecté", - "app.yourRights": "Vos droits", - "app.makerDocs": "Documentation pour les couturiers", - "app.devDocs": "Documentation pour les développeurs", - "app.slogan": "Une librairie JavaScript pour des patrons de couture sur mesure", - "app.getStarted": "Pour commencer", - "app.apiReference": "Référence API", - "app.tutorial": "Tutoriel", - "app.editThisPage": "Éditer cette page", - "app.loginRequiredRedirect": "Vous avez été redirigé vers cette page car {page} requiert une authentification", - "app.various": "Divers", - "app.sewing": "Couture", - "app.examples": "Exemples", - "app.by": "par", - "app.years": "Années", - "app.pricing": "Tarifs", - "app.createFirst": "Commencer en créant un nouveau patron", - "app.noPattern": "Vous n'avez pas (encore) de patrons. Créez un nouveau patron, puis sauvegardez-le sur votre compte.", - "app.modelFirst": "Commencez par ajouter des mensurations", - "app.noModel": "Vous n'avez pas (encore) ajouté de mesure. FreeSewing peut générer des patrons de couture sur mesure. Mais pour cela, nous avons besoin de mensurations.", - "app.noModel2": "La première chose à faire est donc d'ajouter une personne et de sortir votre mètre-ruban.", - "app.noUserBrowsingTitle": "Vous ne pouvez pas simplement parcourir tous les utilisateurs", - "app.noUserBrowsingText": "Nous en avons des milliers. Vous avez certainement autre chose à faire ?", - "app.usePatternMeasurements": "Utiliser les mesures du patron d'origine", - "app.createReplica": "Créer une réplique", - "app.showDetails": "Voir les détails", - "app.hideDetails": "Masquer les détails", - "app.clickBelowToLogOut": "Cliquez ci-dessous pour vous déconnecter", - "app.compare": "Comparer", - "app.savePattern": "Enregistrer le patron", - "app.recreate": "Recréer", - "app.recreateThing": "Recréer {thing}", - "app.recreateThingForPerson": "Recréer {thing} pour {person}", - "app.seeYouLaterUser": "À plus tard {user}", - "app.exportForPrinting": "Exporter pour l'impression", - "app.exportForEditing": "Exporter pour édition", - "app.startWithNeckTitle": "Commencer par le tour de cou", - "app.startWithNeckDescription": "En se basant sur votre tour de cou, nous pouvons vous aider à repérer des erreurs dans vos mesures.", - "app.whatYouNeed": "Ce dont vous avez besoin", - "app.fabricOptions": "Options de tissu", - "app.cutting": "Coupe", - "app.instructions": "Instructions", - "app.hide": "Masquer", - "app.show": "Afficher", - "app.oneMomentPlease": "Veuillez patienter", - "app.loadingMagic": "En cours de chargement", - "app.estimate": "Estimation", - "app.actual": "Réel", - "app.weEstimateYM2B": "Nous estimons que votre {measurement} est environ :", - "app.exportAsData": "Exporter en tant que données", - "app.availablePatterns": "Patrons disponibles", - "app.browseCollection": "Parcourez votre collection", - "app.browseYourPatterns": "Choisissez votre patron", - "app.yourPatterns": "Vos patrons", - "app.loginNeededToSavePatternsMsg": "Vous devez être connecté pour enregistrer vos patrons", - "app.docsForContributors": "Documentation pour les contributeurs", - "app.patternDocs": "Documentation de patron", - "app.socialMedia": "Réseaux sociaux", - "app.create": "Créer", - "app.browse": "Parcourir", - "app.patrons": "Mécènes", - "app.scrollToTop": "Haut de la page", - "app.sitemap": "Plan du site", - "app.contributeToThing": "Contribuer à {thing}", - "app.mtmIsOurJam": "Les patrons de couture sur mesure sont notre spécialité", - "app.fitYouDeserve": "Vous passez vraiment à côté de quelque chose si vous utilisez des tailles standardisées.
Alors inscrivez-vous dès aujourd'hui et obtenez le rendu que vous méritez.", - "app.supportNag": "FreeSewing est gratuit, mais nous apprécierions si vous envisagiez de nous soutenir.", - "app.madeToMeasure": "Sur-mesure", - "app.sizes": "Tailles", - "app.standardSizes": "Tailles standard", - "app.accountRequired": "Cette fonctionnalité nécessite un compte FreeSewing", - "app.size": "Taille", - "app.switchToThing": "Passer à {thing}", - "app.saveThing": "Enregistrer {thing}", - "app.shareThing": "Partager {thing}", - "app.link": "Lien", - "app.cloneThing": "Dupliquer {thing}", - "app.cloneDescription": "Recréer une copie exacte, en utilisant les mesures du patron d'origine.", - "app.furtherReading": "En lire plus", - "app.saveAsNewPattern": "Enregistrer en tant que nouveau patron", - "app.saveAsNewPattern-txt": "Stocker (une copie de) ce patron sur votre compte FreeSewing", - "app.exportPattern": "Exporter le patron", - "app.printPattern": "Imprimer le patron", - "app.exportPattern-txt": "Exporter au format PDF adapté à votre imprimante, ou télécharger ce modèle dans une variété de formats", - "app.editThing": "Modifier {thing}", - "app.editPattern-txt": "Charger ce patron dans l'éditeur de patron", - "app.featureRequiresAccount": "Cette fonctionnalité nécessite un compte FreeSewing", - "app.zoom": "Zoom", - "app.zoomIn": "Zoom avant", - "app.zoomOut": "Zoom arrière", - "app.zoom-txt": "Bascule entre la contrainte de la hauteur ou la largeur du patron pour s'adapter à votre écran", - "app.savePattern-txt": "Stocker ce patron sur votre compte FreeSewing", - "app.comparePattern": "Comparer les patrons", - "app.showPattern": "Afficher le patron", - "app.comparePattern-txt": "Comparez votre patron à une plage de tailles standard pour examiner les éventuels problèmes d'ajustement", - "app.recreatePattern": "Recréer le patron", - "app.recreatePattern-txt": "Choisissez une autre personne, puis recréez ce patron pour cette personne", - "app.editOwnPatternsOnly": "Vous ne pouvez modifier que vos propres patrons", - "app.editOwnPatternsOnly-txt": "Vous ne pouvez pas modifier ce patron car ce n'est pas le vôtre. Mais vous pouvez l'utiliser comme patron de base pour créer votre propre patron.", - "app.updateNotes-txt": "Mettre à jour les notes concernant votre patron", - "app.franceWarning": "Attention, pour les utilisateurs français", - "app.franceWarning-txt": "Plusieurs fournisseurs d'accès français — dont free.fr, laposte.net, orange.fr et sfr.fr — rejettent systématiquement nos e-mails.", - "app.emailNotReceived": "Si vous ne recevez pas le mail d'activation, merci de nous contacter pour que nous puissions vous aider.", - "app.error": "Erreur", - "app.info": "Info", - "app.warning": "Avertissement", - "app.debug": "Débug", - "app.unsubscribe": "Se désabonner", - "app.slogan-come": "Venez pour les patrons de couture", - "app.slogan-stay": "Restez pour la communauté", - "cfp.author": "Auteur", - "cfp.githubRepo": "Répertoire GitHub", - "cfp.packageManager": "Gestionnaire de package", - "cfp.patternName": "Nom de patron", - "cfp.patternType": "Type de patron", - "cfp.patternCreated": "Le squelette de votre patron a été créé sur", - "cfp.runTheseCommands": "To get started, run this command", - "cfp.startRollup": "Dans un terminal, démarrez le bundler rollup en mode watch", - "cfp.startWebpack": "It will enter the 'example' folder, and start the development environment.", - "cfp.devDocsAvailableAt": "La documentation pour développeur est disponible sur", - "cfp.talkToUs": "For questions, feedback or suggestions, join our Discord server", - "cfp.draftYourPattern": "Dessiner votre patron", - "cfp.testYourPattern": "Tester votre patron", - "cfp.draftThing": "Ébauche de {thing}", - "cfp.testThing": "Tester {thing}", - "cfp.renderInBrowser": "Cliquer ci-dessous pour afficher votre patron dans votre navigateur.", - "cfp.weWillReRender": "Lorsque vous effectuez des modifications, nous mettons à jour le rendu pour vous.", - "cfp.youCan": "Vous pouvez", - "cfp.enterMeasurements": "Entrer des mesures manuellement", - "cfp.preloadMeasurements": "Pré-charger un set de mesures", - "cfp.size": "Taille", - "cfp.noRequiredMeasurements": "Ce patron n'a pas de mesure requise", - "cfp.howtoAddMeasurements": "Pour rendre des mesures nécessaires, ajoutez-les à la section measurements du fichier de configuration du patron.", - "cfp.seeDocsAt": "La documentation à ce sujet est disponible sur", - "cfp.clearDesignMode": "Vider le mode design", - "cfp.designMode": "Mode design", - "cfp.exportMode": "Mode d'export", - "cfp.thingIsEnabled": "{thing} est activé", - "cfp.thingIsDisabled": "{thing} est désactivé", - "cfp.turnOn": "Activer", - "cfp.turnOff": "Désactiver", - "cfp.validNameWarning": "Veuillez choisir un nom différent car ce nom causerait des problèmes.\nNous (ré-)utilisons le nom du modèle comme nom de paquet NPM.\nLes noms de paquets doivent être en minuscule et ne peuvent pas contenir de caractères spéciaux.\nVeuillez donc nommer votre patron en conséquence, comme :", - "designs.aaron.d": "Aaron est un débardeur ou marcel", - "designs.aaron.t": "Débardeur Aaron (A-shirt)", - "designs.albert.d": "Albert est un tablier.", - "designs.albert.t": "Tablier Albert", - "designs.bella.d": "Bella is a basic body block for people with breasts.", - "designs.bella.t": "Buste de base Bella", - "designs.benjamin.d": "Benjamin est un nœud papillon avec 4 possibilités de styles différents.", - "designs.benjamin.t": "Nœud papillon Benjamin", - "designs.bent.d": "Ce bloc d'emmanchure en deux parties est la base de nos modèles de manteau et de veste.", - "designs.bent.t": "Patron de base Bent", - "designs.breanna.d": "Breanna is a basic body block for people with breasts.", - "designs.breanna.t": "Haut Breanna", - "designs.brian.d": "Brian is a basic body block for people without breasts.", - "designs.brian.t": "Patron de base Brian", - "designs.bruce.d": "Bruce est un boxer confortable et élégant.", - "designs.bruce.t": "Boxer Bruce", - "designs.carlita.d": "The version for breasts of our Carlton coat, aka Sherlock Holmes coat.", - "designs.carlita.t": "Manteau Carlita", - "designs.carlton.d": "Pour le cosplay de Sherlock Holmes, ou juste un très beau manteau.", - "designs.carlton.t": "Manteau Carlton", - "designs.cathrin.d": "Cathrin est un corset sous-poitrine ou un serre-taille.", - "designs.cathrin.t": "Corset Cathrin", - "designs.charlie.d": "Charlie is a chino trouser pattern.", - "designs.charlie.t": "Charlie chinos", - "designs.cornelius.d": "Cornelius est une culotte de cyclisme basé sur la méthode Keystone.", - "designs.cornelius.t": "Culotte de cyclisme Cornelius", - "designs.diana.d": "Diana est un top avec un col drapé.", - "designs.diana.t": "Haut drapé Diana", - "designs.florent.d": "Florent est une casquette plate, une casquette arrondie avec un petit bord raide à l'avant.", - "designs.florent.t": "Casquette plate Florent", - "designs.florence.d": "Florence est un masque facial", - "designs.florence.t": "Masque Florence", - "designs.holmes.d": "Pour un cosplay Sherlock Holmes, ou juste un joli manteau", - "designs.holmes.t": "Casquette de détective Holmes", - "designs.hortensia.d": "Hortensia est un sac à main", - "designs.hortensia.t": "Sac à main Hortensia", - "designs.huey.d": "Huey est un sweat à capuche zippé avec poches avant optionnelles.", - "designs.huey.t": "Sweat zippé à capuche Huey", - "designs.hugo.d": "Hugo est un sweat à capuche avec des manches raglan.", - "designs.hugo.t": "Sweat à capuche Hugo", - "designs.jaeger.d": "Jaeger est une veste de style sport avec deux boutons et des poches plaquées.", - "designs.jaeger.t": "Veste Jaeger", - "designs.paco.d": "Paco est un pantalon d'été décontracté mais élégant", - "designs.paco.t": "Pantalon Paco", - "designs.penelope.d": "Penelope est une jupe crayon avec ou sans fente dans le dos.", - "designs.penelope.t": "Jupe crayon Penelope", - "designs.sandy.d": "Sandy est un patron de jupe cercle adaptable", - "designs.sandy.t": "Jupe cercle Sandy", - "designs.shin.d": "Shin are athletic swim trunks", - "designs.shin.t": "Boxer de bain Shin", - "designs.simon.d": "Simon is a highly adaptable shirt pattern for people without breasts.", - "designs.simon.t": "Chemise Simon", - "designs.simone.d": "Simone is simon, adapted for breasts.", - "designs.simone.t": "Chemise Simone", - "designs.sven.d": "Sven est un sweat simple.", - "designs.sven.t": "Sweat Sven", - "designs.tamiko.d": "Tamiko est un top zéro déchet.", - "designs.tamiko.t": "Top Tamiko", - "designs.teagan.d": "Teagan est un T-shirt ajusté", - "designs.teagan.t": "T-shirt Teagan", - "designs.theo.d": "Theo est un patron de pantalon classique.", - "designs.theo.t": "Pantalon Theo", - "designs.titan.d": "Titan est un bloc de pantalon unisexe sans pince", - "designs.titan.t": "Bloc de pantalon Titan", - "designs.trayvon.d": "Trayvon est une cravate qui ne fait pas d'économies pour un résultat professionnel.", - "designs.trayvon.t": "Cravate Trayvon", - "designs.ursula.d": "Ursula is a basic, highly-customizable underwear pattern", - "designs.ursula.t": "Ursula undies", - "designs.wahid.d": "Wahid est un gilet classique ajusté.", - "designs.wahid.t": "Gilet Wahid", - "designs.waralee.d": "Waralee est un pantalon portefeuille (thaï)", - "designs.waralee.t": "Pantalon portefeuille Waralee", - "email.chatWithUs": "Discutez avec nous", - "email.emailchangeActionText": "Confirmez votre nouvelle adresse mail", - "email.emailchangeCopy1": "Vous avez demandé de modifier l'adresse e-mail associée à votre compte sur freesewing.org.

Avant de procéder, vous devez confirmer votre nouvelle adresse e-mail. S'il vous plaît cliquez sur le lien ci-dessous pour le faire :", - "email.emailchangeHeaderOpeningLine": "Assurez-vous simplement que nous pouvons vous joindre en cas de besoin", - "email.emailchangeHiddenIntro": "Confirmons votre nouvelle adresse e-mail", - "email.emailchangeSubject": "Merci de confirmer votre nouvelle adresse e-mail", - "email.emailchangeTitle": "Merci de confirmer votre nouvelle adresse e-mail", - "email.emailchangeWhy": "You received this E-mail because you changed the E-mail address linked to your account on freesewing.org", - "email.footerCredits": "Réalisé par Joost De Cock et ses contributeurs avec le soutien financier de mécènes ❤️ ", - "email.footerSlogan": "Freesewing est une plate-forme open source pour des patrons de couture sur mesure", - "email.goodbyeCopy1": "Si vous souhaitez expliquer pourquoi vous partez, vous pouvez répondre à ce message.
De notre côté, nous ne vous dérangerons plus.", - "email.goodbyeHeaderOpeningLine": "Sachez simplement que vous pouvez toujours revenir", - "email.goodbyeHiddenIntro": "Merci d'avoir donné une chance à freesewing", - "email.goodbyeSubject": "Adieu 👋", - "email.goodbyeTitle": "Merci d'avoir donné une chance à freesewing", - "email.goodbyeWhy": "Vous avez reçu cet e-mail en guise d'adieu final après la suppression de votre compte sur freesewing.org", - "email.joostFromFreesewing": "Joost de Freesewing", - "email.passwordresetActionText": "Re-accéder à votre compte", - "email.passwordresetCopy1": "Vous avez oublié votre mot de passe pour votre compte sur freesewing.org.

Cliquez sur le lien ci-dessous pour réinitialiser votre mot de passe:", - "email.passwordresetHeaderOpeningLine": "Ne vous inquiétez pas, ce genre de choses nous arrive à tous", - "email.passwordresetHiddenIntro": "Re-accéder à votre compte", - "email.passwordresetSubject": "Re-accéder à votre compte sur freesewing.org", - "email.passwordresetTitle": "Réinitialisez votre mot de passe et accédez à nouveau à votre compte.", - "email.passwordresetWhy": "Vous avez reçu cet e-mail parce que vous avez demandé de réinitialiser votre mot de passe sur freesewing.org", - "email.questionsJustReply": "Si vous avez des questions, répondez simplement à cet e-mail. Je suis toujours heureux d'aider. 🙂", - "email.signature": "Bise,", - "email.signupActionText": "Confirmez votre adresse mail", - "email.signupCopy1": "Merci de votre inscription sur freesewing.org.

Avant de commencer, vous devez confirmer votre adresse e-mail. Pour cela veuillez cliquer sur le lien ci-dessous :", - "email.signupHeaderOpeningLine": "Nous sommes vraiment heureux que vous rejoigniez la communauté freesewing.", - "email.signupHiddenIntro": "Confirmons votre adresse mail", - "email.signupSubject": "Bienvenue sur freesewing.org", - "email.signupTitle": "Bienvenue à bord", - "email.signupWhy": "Vous avez reçu cet e-mail parce que vous venez de créer un compte sur freesewing.org", - "errors.404": "La page que vous recherchez est introuvable.", - "errors.confirmationNotFound": "Si vous êtes arrivé sur cette page via le lien figurant dans un e-mail de confirmation, nous vous encourageons à signaler ce problème.", - "errors.emailExists": "Nous avons déjà un utilisateur avec cette adresse mail. Peut-être aimeriez-vous plutôt vous connecter ?", - "errors.networkError": "Le backend ou le réseau semblent en panne", - "errors.notAValidImageFormat": "Format d'image non valide", - "errors.requestFailedWithStatusCode400": "Échec de la demande", - "errors.requestFailedWithStatusCode401": "Échec de l'authentification", - "errors.requestFailedWithStatusCode403": "Interdit", - "errors.requestFailedWithStatusCode500": "Il y a eu un problème inattendu. Veuillez le signaler.", - "errors.something": "Quelque chose s'est mal déroulé", - "gdpr.compliant": "Freesewing.org respecte votre vie privée et vos droits. Nous appliquons le Règlement Général sur la Protection des Données (RGPD) de l'Union européenne (UE).", - "gdpr.consent": "Consentement", - "gdpr.consentForModelData": "Consentement pour les données de modèle", - "gdpr.consentForProfileData": "Consentement pour les données de profil", - "gdpr.consentGiven": "Consentement donné", - "gdpr.consentNotGiven": "Consentement non donné", - "gdpr.consentWhyAnswer": "En vertu du RGPD, le traitement de vos données personnelles nécessite votre consentement, autrement dit votre permission.", - "gdpr.createMyAccount": "Créer mon compte", - "gdpr.furtherReading": "Lire plus", - "gdpr.modelQuestion": "Donnez-vous votre consentement pour traiter vos données de modèle ?", - "gdpr.modelWarning": "Révoquer ce consentement exclura toutes vos données de modèle, ainsi que des fonctionnalités qui en dépendent.", - "gdpr.modelWhatAnswer": "Pour chaque modèle, leurs mesures et paramètres de poitrine.", - "gdpr.modelWhatAnswerOptional": "Facultatif : une image de modèle et le nom que vous donnez à votre modèle.", - "gdpr.modelWhatQuestion": "Que sont les données de modèle ?", - "gdpr.modelWhyAnswer": "Pour créer des patrons de couture sur mesure, nous avons besoin de mensurations.", - "gdpr.noConsentNoAccount": "Sans votre consentement, nous ne pouvons pas créer votre compte", - "gdpr.noConsentNoPatterns": "Sans ce consentement, vous ne pouvez créer aucun patron", - "gdpr.noIDoNot": "Non, je ne le fais pas", - "gdpr.openDataInfo": "Ces données sont utilisées pour étudier et comprendre la forme humaine sous toutes ses formes, de sorte que nous puissions obtenir de meilleurs modèles de couture et des vêtements plus ajustés. Même si ces données sont anonymes, vous avez le droit de vous y opposer.", - "gdpr.openDataQuestion": "Partager des mesures anonymisées sous forme de données ouvertes", - "gdpr.profileQuestion": "Donnez-vous votre consentement pour traiter vos données de profil ?", - "gdpr.profileShareAnswer": "Non, jamais.", - "gdpr.profileTimingAnswer": "12 mois après votre dernière connexion ou jusqu'à ce que vous supprimiez votre compte ou révoquiez ce consentement.", - "gdpr.profileWarning": "Révoquer ce consentement entraînera la suppression de toutes vos données. Cela a exactement le même effet que de supprimer votre compte.", - "gdpr.profileWhatAnswerOptional": "Optionnel : une photo de profil, biographie, et comptes de réseaux sociaux", - "gdpr.profileWhatAnswer": "Votre adresse e-mail, nom d'utilisateuret mot de passe.", - "gdpr.profileWhatQuestion": "Que sont les données de profil ?", - "gdpr.profileWhyAnswer": "Pour vous authentifier , vous contacter lorsque nécessaire, et construire une communauté.", - "gdpr.readMore": "Pour plus d'informations, veuillez lire notre politique de confidentialité.", - "gdpr.readRights": "Pour plus d'informations, veuillez lire la page sur vos droits.", - "gdpr.revokeConsent": "Révoquer le consentement", - "gdpr.shareQuestion": "La partageons-nous avec les autres ?", - "gdpr.timingQuestion": "Combien de temps les gardons-nous ?", - "gdpr.whatYouNeedToKnow": "Ce que vous devez savoir", - "gdpr.whyQuestion": "Pourquoi en avons-nous besoin ?", - "gdpr.yesIDoObject": "Oui, je m'y oppose", - "gdpr.yesIDo": "Oui, je le veux", - "gdpr.openData": "Note : Freesewing publie des mesures rendues anonymes en tant que données libres pour la recherche scientifique. Vous avez le droit de vous y opposer", - "i18n.de": "Allemand", - "i18n.en": "Anglais", - "i18n.es": "Espagnol", - "i18n.fr": "Français", - "i18n.nl": "Néerlandais", - "jargon.basting.d": "Voir Bâtir dans la documentation de Couture", - "jargon.basting.term": "bâti", - "jargon.coverlock.d": "Voir Recouvreuse dans la documentation de Couture", - "jargon.coverlock.term": "recouvreuse", - "jargon.cutting.d": "Voir Coupe dans la documentation de Couture", - "jargon.cutting.term": "coupe", - "jargon.darts.d": "Voir Pinces dans la documentation de Couture", - "jargon.darts.term": "pinces", - "jargon.doubleWeltPockets.d": "Voir Poches passepoilées dans la documentation de Couture", - "jargon.doubleWeltPockets.term": "poche passepoilée", - "jargon.ease.d": "Voir Aisance dans la documentation de Couture", - "jargon.ease.term": "aisance", - "jargon.fabricGrain.d": "Voir Droit fil dans la documentation de Couture", - "jargon.fabricGrain.term": "droit fil", - "jargon.goodSidesTogether.d": "Voir Endroit contre endroit dans la documentation de Couture", - "jargon.goodSidesTogether.term": "endroit contre endroit", - "jargon.onTheFold.d": "Voir Au pli dans la documentation de couture", - "jargon.onTheFold.term": "au pli", - "jargon.hemming.d": "Voir Ourlet dans la documentation de Couture", - "jargon.hemming.term": "ourlet", - "jargon.jersey.d": "Voir Jersey dans la documentation de Couture", - "jargon.jersey.term": "Jersey", - "jargon.knitBinding.d": "Voir Biais de jersey dans la documentation de Couture", - "jargon.knitBinding.term": "biais de jersey", - "jargon.knitFabric.d": "Voir Tissu maille dans la documentation de Couture", - "jargon.knitFabric.term": "tissu Maille", - "jargon.pinning.d": "Voir Épingler dans la documentation de Couture", - "jargon.pinning.term": "épingler", - "jargon.rayon.d": "Voir Rayonne ou Viscose dans la documentation de Couture", - "jargon.rayon.term": "rayonne ou viscose", - "jargon.sa.d": "Voir Marge de couture dans la documentation de Couture", - "jargon.sa.term": "marge de couture", - "jargon.serger.d": "Voir Surgeteuse dans la documentation de Couture", - "jargon.serger.term": "sergeur", - "jargon.topstitching.d": "Voir Surpiqûre dans la documentation de Couture", - "jargon.topstitching.term": "surpiqûre", - "jargon.trimming.d": "Voir Dégarnir dans la documentation de Couture", - "jargon.trimming.term": "dégarnir", - "jargon.twinNeedle.d": "Voir Aiguilles doubles dans la documentation de Couture", - "jargon.twinNeedle.term": "aiguilles doubles", - "jargon.zigZag.d": "Voir Point zig-zag dans la documentation de Couture", - "jargon.zigZag.term": "point zig-zag", - "jargon.freesewing.d": "FreeSewing est une plate-forme open source pour des patrons de couture sur-mesure", - "jargon.freesewing.term": "freesewing", - "jargon.patternOptions.d": "Les options de patron vous permettent de personnaliser le design du patron", - "jargon.patternOptions.term": "options du patron", - "jargon.draftSettings.d": "Les paramètres de patrons générés vous donnent le contrôle de la manière dont un patron est généré", - "jargon.draftSettings.term": "Paramètres de patrons générés", - "jargon.patrons.d": "Les mécènes soutiennent financièrement Freesewing. Ce sont des fidèles soutiens qui assurent un avenir durable à freesewing.org, à notre code, à nos patrons et à notre communauté.", - "jargon.patrons.term": "patrons", - "jargon.msf.d": "Médecins Sans Frontières/Doctors Sans Frontières - Voir msf.org", - "jargon.msf.term": "MSF", - "m.ankle": "Tour de cheville", - "m.biceps": "Tour de bras", - "m.bustFront": "Largeur de poitrine avant", - "m.bustSpan": "Écart de poitrine", - "m.chest": "Tour de poitrine", - "m.crossSeam": "Profondeur de fourche", - "m.crossSeamFront": "Enfourchure devant", - "m.head": "Tour de tête", - "m.heel": "Tour de talon", - "m.highBustFront": "Largeur de buste supérieur", - "m.highBust": "Tour de buste supérieur", - "m.hips": "Tour des petites hanches", - "m.hpsToBust": "Longueur épaule-poitrine", - "m.hpsToWaistBack": "Longueur épaule-taille dos", - "m.hpsToWaistFront": "Longueur épaule-taille devant", - "m.inseam": "Longueur d'entrejambe", - "m.knee": "Tour de genou", - "m.neck": "Tour de cou", - "m.seat": "Tour de bassin", - "m.seatBack": "Bassin arrière", - "m.crotchDepth": "Hauteur de fourche", - "m.shoulderSlope": "Pente d'épaule", - "m.shoulderToElbow": "Longueur épaule au coude", - "m.shoulderToShoulder": "Largeur d'épaules", - "m.shoulderToWrist": "Longueur de bras", - "m.underbust": "Tour sous poitrine", - "m.upperLeg": "Tour de cuisse", - "m.waist": "Tour de taille", - "m.waistBack": "Taille arrière", - "m.waistToFloor": "Hauteur de taille", - "m.waistToHips": "Hauteur taille hanche", - "m.waistToKnee": "Hauteur taille genou", - "m.waistToSeat": "Hauteur taille bassin", - "m.waistToUnderbust": "Hauteur taille sous-poitrine", - "m.waistToUpperLeg": "Hauteur taille bassin", - "m.wrist": "Tour de poignet", - "og.advanced": "Avancé", - "og.armhole": "Emmanchure", - "og.closure": "Fermeture", - "og.collar": "Col", - "og.construction": "Construction", - "og.cuffs": "Poignets", - "og.darts": "Pinces", - "og.elastic": "Élastique", - "og.fit": "Ajustement", - "og.pockets": "Poches", - "og.preferences": "Préférences", - "og.sleevecap": "Tête de manche", - "og.sleeves": "Manches", - "og.style": "Style", - "og.backPockets": "Back pockets", - "og.frontPockets": "Front pockets", - "og.waistband": "Waistband", - "og.fly": "Fly", - "parts.back": "Dos", - "parts.backBase": "Base dos", - "parts.base": "Base", - "parts.bentBack": "Dos de Bent", - "parts.bentBase": "Base de Bent", - "parts.bentFront": "Avant de Bent", - "parts.bentSleeve": "Manche de Bent", - "parts.bentTopSleeve": "Partie supérieure de la manche de Bent", - "parts.bentUnderSleeve": "Partie inférieure de la manche de Bent", - "parts.buttonholePlacket": "Patte de boutonnage - boutonnières", - "parts.buttonPlacket": "Patte de boutonnage - boutons", - "parts.collar": "Col", - "parts.collarStand": "Pied de col", - "parts.cuff": "Poignet", - "parts.fabricTail": "Queue en tissu", - "parts.fabricTip": "Pointe en tissu", - "parts.frontBase": "Base avant", - "parts.frontFacing": "Doublure avant", - "parts.front": "Avant", - "parts.frontLeft": "Avant gauche", - "parts.frontLining": "Doublure avant", - "parts.frontRight": "Avant droit", - "parts.hoodCenter": "Milieu de capuche", - "parts.hood": "Capuche", - "parts.hoodSide": "Côté de capuche", - "parts.inset": "Incrusté", - "parts.interfacingTail": "Entoilage de queue", - "parts.interfacingTip": "Entoilage de pointe", - "parts.liningTail": "Doublure de queue", - "parts.liningTip": "Doublure de pointe", - "parts.loop": "Boucle", - "parts.panel1": "Pièce 1", - "parts.panel2": "Pièce 2", - "parts.panel3": "Pièce 3", - "parts.panel4": "Pièce 4", - "parts.panel5": "Pièce 5", - "parts.panel6": "Pièce 6", - "parts.panels": "Pièces", - "parts.pocketBag": "Fond de poche", - "parts.pocketFacing": "Doublure de poche", - "parts.pocketInterfacing": "Entoilage de poche", - "parts.pocket": "Poche", - "parts.pocketWelt": "Rabat de poche", - "parts.side": "Côté", - "parts.sleeveBase": "Base de manche", - "parts.sleevecap": "Tête de manche", - "parts.sleevePlacketOverlap": "Patte de manche supérieure", - "parts.sleevePlacketUnderlap": "Patte de manche inférieure", - "parts.sleeve": "Manche", - "parts.topSleeve": "Haut de manche", - "parts.top": "Haut", - "parts.underCollar": "Sous-col", - "parts.underSleeve": "Sous-manche", - "parts.waistband": "Ceinture", - "parts.yoke": "Empiècement", - "patterns.back": "Arrière", - "patterns.bottomPanel": "Panneau inférieur", - "patterns.buttonholePlacket": "Patte de boutonnage - boutonnières", - "patterns.buttonPlacket": "Patte de boutonnage - boutons", - "patterns.collarAndUndercollar": "Col et sous-col", - "patterns.collarStand": "Pied de col", - "patterns.cuff": "Poignet", - "patterns.cutOneStripToFinishTheNeckOpening": "Couper une bande pour terminer l'encolure", - "patterns.cutTwoStripsToFinishTheArmholes": "Couper deux bandes pour finir les emmanchures", - "patterns.cutUndercollarSlightlySmaller": "Couper le sous-col légèrement plus petit", - "patterns.front": "Avant", - "patterns.frontBackPanel": "Panneau avant et arrière", - "patterns.frontLeft": "Avant gauche", - "patterns.frontRight": "Avant droit", - "patterns.fullLengthFromHps": "Longueur complète (à partir du haut de l'épaule)", - "patterns.handleWidth": "Largeur des anses", - "patterns.hello": "Salut", - "patterns.hoodCenter": "Milieu de capuche", - "patterns.hoodSide": "Côté de capuche", - "patterns.inset": "Incrusté", - "patterns.length": "Longueur", - "patterns.matchHere": "Aligner le tissu le long de cette ligne", - "patterns.pocketFacing": "Parement de poche", - "patterns.pocket": "Poche", - "patterns.side": "Côté", - "patterns.sideOfTheCollarStand": "Côté du pied de col", - "patterns.SidePanel": "Panneau latéral", - "patterns.SidePanelReinforcement": "Panneau de renforcement latéral", - "patterns.sleeve": "Manche", - "patterns.sleevePlacketOverlap": "Patte de manche supérieure", - "patterns.sleevePlacketUnderlap": "Patte de manche inférieure", - "patterns.strap": "Anse", - "patterns.strapLength": "Longueur des anses", - "patterns.vent": "Fente", - "patterns.waistband": "Ceinture", - "patterns.width": "Largeur", - "patterns.yoke": "Empiècement", - "patterns.zipperPanel": "Panneau de zip", - "patterns.zipperSize": "Taille standard de zip", - "patterns.cut": "Couper", - "patterns.cutOnFoldAndGrainline": "Couper au pli / sur le droit fil", - "patterns.cutOnFold": "Couper au pli", - "patterns.grainline": "Droit fil", - "patterns.onFold": "Au pli", - "patterns.supportFreesewingBecomeAPatron": "Soutenez FreeSewing, devenez un Mécène", - "patterns.theBlackOutsideOfThisBoxShouldMeasure": "L'extérieur de cette boîte devrait mesurer", - "patterns.theWhiteInsideOfThisBoxShouldMeasure": "L'intérieur de cette boîte devrait mesurer", - "settings.advanced.d": "Permet d'afficher ou non les paramètres avancés et les options de patron", - "settings.advanced.t": "Mode expert", - "settings.paperless.d": "Trace un patron comportant toutes les dimensions incluses de façon à ce que vous puissiez le transférer sur du tissu ou un autre médium sans avoir à l'imprimer", - "settings.paperless.t": "Sans papier", - "settings.sa.d": "Contrôle la valeur de la marge de couture incluse dans votre patron", - "settings.sa.t": "Marge de couture", - "settings.locale.d": "Détermine la langue utilisée sur votre patron", - "settings.locale.t": "Langue", - "settings.only.d": "Vous permet de contrôler quelles parties seront incluses dans votre patron", - "settings.only.t": "Contenu", - "settings.units.d": "Contrôle les unités utilisées sur votre patron", - "settings.units.t": "Unités", - "settings.margin.d": "Contrôle la marge autour des pièces du patron", - "settings.margin.t": "Marge", - "settings.complete.d": "Contrôle à quel point votre patron est détaillé ; soit un patron complet avec tous les détails, ou simplement les contours des parties du patron", - "settings.complete.t": "Détail", - "settings.layout.d": "Contrôle comment les pièces individuelles du patron sont placées sur votre patron", - "settings.layout.t": "Mis en page", - "settings.debug.d": "Activer le débogage pour obtenir des informations supplémentaires sur la façon dont votre patron a été créé", - "settings.debug.t": "Débug", - "welcome.units": "Sélectionnez les unités que vous souhaitez utiliser", - "welcome.username": "Choisissez un nom d’utilisateur", - "welcome.avatar": "Ajoutez une photo de profil", - "welcome.bio": "Parlez-nous un peu de vous", - "welcome.social": "Dites-nous où nous pouvons vous suivre", - "welcome.newsletter": "Donnez-nous votre préférence pour la newsletter", - "welcome.letUsSetupYourAccount": "Laissez-nous configurer votre compte.", - "welcome.walkYouThrough": "Nous vous guiderons à travers les étapes suivantes :", - "welcome.someOptional": "Bien que toutes ces étapes soient facultatives, nous vous recommandons de les passer en revue pour tirer le meilleur parti de FreeSewing.", - "aaron.armholeDrop.d": "Il s'agit d'abaisser l'emmanchure avec cette valeur. Les valeurs négatives la remonteront.", - "aaron.armholeDrop.t": "Abaissement d'emmanchure", - "aaron.backlineBend.d": "Détermine la forme/courbure de l'arrière des emmanchures.", - "aaron.backlineBend.t": "Forme de l'arrière des emmanchures", - "aaron.hipsEase.d": "La marge d'aisance aux hanches.", - "aaron.hipsEase.t": "Aisance des hanches", - "aaron.necklineBend.d": "Détermine la forme/courbure du devant de l'encolure.", - "aaron.necklineBend.t": "Forme de l'encolure", - "aaron.necklineDrop.d": "Détermine de combien abaisser l’encolure l'avant.", - "aaron.necklineDrop.t": "Décolleté", - "aaron.shoulderStrapPlacement.d": "Détermine si la bretelle est placée plus près du cou (chiffres les plus bas) ou de l’épaule (chiffres les plus élevés).", - "aaron.shoulderStrapPlacement.t": "Position de la bretelle", - "aaron.shoulderStrapWidth.d": "Détermine la largeur des bretelles.", - "aaron.shoulderStrapWidth.t": "Largeur de la bretelle", - "aaron.stretchFactor.d": "Détermine a quantité d'aisance négative en largeur.", - "aaron.stretchFactor.t": "Élasticité", - "albert.backOpening.d": "Contrôle l'ouverture à l'arrière du tablier", - "albert.backOpening.t": "Ouverture arrière", - "albert.chestDepth.d": "Contrôle la longueur des liens", - "albert.chestDepth.t": "Longueur du lien", - "albert.lengthBonus.d": "Contrôle la longueur du tablier", - "albert.lengthBonus.t": "Supplément de longueur", - "albert.bibLength.d": "Contrôle la longueur du plastron", - "albert.bibLength.t": "Longueur du plastron", - "albert.bibWidth.d": "Contrôle la largeur du plastron", - "albert.bibWidth.t": "Largeur du plastron", - "albert.strapWidth.d": "Contrôle la largeur des liens", - "albert.strapWidth.t": "Largeur du lien", - "bella.chestEase.d": "Contrôle la quantité d'aisance au niveau le plus large de votre buste", - "bella.chestEase.t": "Aisance de poitrine", - "bella.waistEase.d": "Contrôle la quantité d'aisance au niveau de la taille", - "bella.waistEase.t": "Aisance à la taille", - "bella.bustSpanEase.d": "Contrôle la quantité d'aisance (horizontale) ajoutée à votre poitrine entre les 2 pointes de la poitrine.", - "bella.bustSpanEase.t": "Aisance de l'écart poitrine", - "bella.backDartHeight.d": "Contrôle la hauteur de pince dans le dos", - "bella.backDartHeight.t": "Hauteur de pince dos", - "bella.bustDartLength.d": "Contrôle la longueur de la pince dos", - "bella.bustDartLength.t": "Bust dart length", - "bella.waistDartLength.d": "Contrôle la longueur de la pince de taille", - "bella.waistDartLength.t": "Waist dart length", - "bella.bustDartCurve.d": "Contrôle la courbure de la pince poitrine", - "bella.bustDartCurve.t": "Courbe de la pince poitrine", - "bella.armholeDepth.d": "Contrôle la profondeur de l'emmanchure", - "bella.armholeDepth.t": "Profondeur d'emmanchure", - "bella.backArmholeSlant.d": "Modifie légèrement l'inclinaison de courbe de l'emmanchure autour de son point de pivot", - "bella.backArmholeSlant.t": "Inclinaison d'emmanchure dos", - "bella.backArmholeCurvature.d": "Contrôle la profondeur du bas de la courbure d'emmanchure dans le dos", - "bella.backArmholeCurvature.t": "Courbure de l'emmanchure arrière", - "bella.frontArmholePitchDepth.d": "Modifie la position horizontale du point de pivot de l'emmanchure avant", - "bella.frontArmholePitchDepth.t": "Profondeur du point de pivot de l'emmanchure avant", - "bella.backArmholePitchDepth.d": "Modifie la position horizontale du point de pivot de l'emmanchure dos", - "bella.backArmholePitchDepth.t": "Profondeur du point de pivot de l'emmanchure dos", - "bella.backNeckCutout.d": "Contrôle la profondeur de l'encolure à l'arrière du cou", - "bella.backNeckCutout.t": "Arrondi de l'encolure au dos", - "bella.backHemSlope.d": "Contrôle la pente de l'ourlet à l'arrière", - "bella.backHemSlope.t": "Pente de l'ourlet dos", - "bella.frontShoulderWidth.d": "Contrôle l'étroitesse des longueurs d'épaules de devant par rapport au dos", - "bella.frontShoulderWidth.t": "Largeur d'épaule devant", - "bella.highBustWidth.d": "Permet de modifier la largeur de buste supérieur à l'avant", - "bella.highBustWidth.t": "Largeur de buste supérieur", - "benjamin.adjustmentRibbon.d": "Si vous souhaitez inclure ou non un ruban d'ajustement", - "benjamin.adjustmentRibbon.t": "Ruban d'ajustement", - "benjamin.bandLength.d": "Longueur de la bande", - "benjamin.bandLength.t": "Longueur de bande", - "benjamin.tipWidth.d": "Largeur des pointes", - "benjamin.tipWidth.t": "Largeur de la pointe", - "benjamin.knotWidth.d": "Largeur du nœud", - "benjamin.knotWidth.t": "Largeur du noeud", - "benjamin.bowLength.d": "Longueur du nœud (lorsqu'il est noué)", - "benjamin.bowLength.t": "Longueur de nœud", - "benjamin.bowStyle.d": "Style du nœud", - "benjamin.bowStyle.t": "Style de nœud", - "benjamin.endStyle.d": "Style des extrémités du noeud", - "benjamin.endStyle.t": "Style de l'extrémité", - "bent.sleeveBend.d": "Contrôle la courbure de la manche au niveau du coude.", - "bent.sleeveBend.t": "Courbe de manche", - "bent.sleevecapHeight.d": "Contrôle la hauteur du tête de manche", - "bent.sleevecapHeight.t": "Hauteur du tête de manche", - "breanna.shoulderDart.d": "S'il faut ou non inclure une pince à l'épaule pour arrondir le dos", - "breanna.shoulderDart.t": "Pince d'épaule", - "breanna.shoulderDartSize.d": "La taille de la pince d'épaule", - "breanna.shoulderDartSize.t": "Taille de la pince de l'épaule", - "breanna.shoulderDartLength.d": "La longueur de la pince d'épaule", - "breanna.shoulderDartLength.t": "Longueur de la pince de l'épaule", - "breanna.waistDart.d": "S'il faut ou non inclure une pince à la taille pour arrondir le dos", - "breanna.waistDart.t": "Pince de taille", - "breanna.waistDartSize.d": "La taille de la pince de taille", - "breanna.waistDartSize.t": "Taille de la pince de taille", - "breanna.waistDartLength.d": "La longueur de la pince de taille", - "breanna.waistDartLength.t": "Longueur de la pince de taille", - "breanna.verticalEase.d": "La quantité d'aisance à répartir sur la longueur du vêtement", - "breanna.verticalEase.t": "Aisance verticale", - "breanna.waistEase.d": "L'ampleur d'aisance à votre taille", - "breanna.waistEase.t": "Aisance à la taille", - "breanna.primaryBustDart.d": "Où placer la pince poitrine pour s'adapter à la poitrine", - "breanna.primaryBustDart.t": "Pince poitrine", - "breanna.primaryBustDartLength.d": "La longueur de la pince de poitrine", - "breanna.primaryBustDartLength.t": "Longueur des pinces poitrine", - "breanna.secondaryBustDart.d": "Inclut éventuellement une poitrine secondaire pour répartir la mise en forme de la poitrine", - "breanna.secondaryBustDart.t": "Pince poitrine secondaire", - "breanna.secondaryBustDartLength.d": "La longueur de la pince poitrine secondaire", - "breanna.secondaryBustDartLength.t": "Longueur de la pince poitrine secondaire", - "breanna.primaryBustDartShaping.d": "Contrôle l'équilibre entre les pinces de buste principale et secondaire", - "breanna.primaryBustDartShaping.t": "Forme des pinces poitrine", - "brian.acrossBackFactor.d": "Contrôle la largeur de votre dos en jouant sur la mesure d'une épaule à l'autre.", - "brian.acrossBackFactor.t": "Largeur du dos", - "brian.armholeDepthFactor.d": "Contrôle la hauteur de l'emmanchure. Des valeurs plus élevées font une emmanchure plus profonde/basse.", - "brian.armholeDepthFactor.t": "Hauteur de l'emmanchure", - "brian.backNeckCutout.d": "Quelle est la profondeur de l'encolure dans le dos", - "brian.backNeckCutout.t": "Arrondi de l'encolure au dos", - "brian.bicepsEase.d": "L'ampleur d'aisance au niveau de votre bras supérieur. Veuillez noter que bien que nous essayons de respecter ce critère, l'ajustement de la manche jusqu'à l'emmanchure est prioritaire sur le respect de la quantité exacte d'aisance.", - "brian.bicepsEase.t": "Aisance au niveau des biceps", - "brian.collarEase.d": "L'ampleur d'aisance au niveau du cou.", - "brian.collarEase.t": "Aisance du cou", - "brian.chestEase.d": "L'ampleur d'aisance au niveau de votre poitrine.", - "brian.chestEase.t": "Aisance de poitrine", - "brian.cuffEase.d": "L'ampleur d'aisance à votre poignet.", - "brian.cuffEase.t": "Aisance de poignet", - "brian.frontArmholeDeeper.d": "Combien voulez-vous que l’emmanchure devant soit découpée plus profondément que le dos.", - "brian.frontArmholeDeeper.t": "Supplément de découpe sur l'emmanchure avant", - "brian.lengthBonus.d": "La quantité à ajouter pour rallonger le vêtement. Une valeur négative le raccourcira.", - "brian.lengthBonus.t": "Supplément de longueur", - "brian.s3Collar.d": "Increase this option to shift the shoulder seam forward on the collar side. Decreasing it shifts it backwards.", - "brian.s3Collar.t": "Shoulder seam shift: collar side", - "brian.s3Armhole.d": "Increase this option to shift the shoulder seam forward on the armhole side. Decreasing it shifts it backwards.", - "brian.s3Armhole.t": "Shoulder seam shift: armhole side", - "brian.shoulderEase.d": "La quantité d'aisance à votre épaule. Cela augmente la distance entre épaules pour accommoder des couches ou épaisseurs supplémentaires.", - "brian.shoulderEase.t": "Aisance des épaules", - "brian.shoulderSlopeReduction.d": "La quantité par laquelle la pente des épaules est réduite pour permettre un ajustement aux épaules.", - "brian.shoulderSlopeReduction.t": "Réduction de la pente d'épaule", - "brian.sleeveLengthBonus.d": "Le montant pour rallonger la manche. Une valeur négative le raccourcira.", - "brian.sleeveLengthBonus.t": "Bonus de longueur de manche", - "brian.sleevecapEase.d": "Le montant par lequel la couture du tête de manche est plus longue que celle des emmanchures.", - "brian.sleevecapEase.t": "Aisance tête de manche", - "brian.sleevecapTopFactorX.d": "Contrôle l'emplacement horizontal du tête de manche.", - "brian.sleevecapTopFactorX.t": "Tête de manche top X", - "brian.sleevecapTopFactorY.d": "Contrôle la hauteur du tête de manche. Plus la valeur est élevée, plus la tête de manche est haute et étroite.", - "brian.sleevecapTopFactorY.t": "Tête de manche top Y", - "brian.sleevecapBackFactorX.d": "Contrôle le positionnement du point d'inclinaison arrière du tête de manche sur l'axe des X (horizontal)", - "brian.sleevecapBackFactorX.t": "Tête de manche arrière X", - "brian.sleevecapBackFactorY.d": "Contrôle le positionnement du point d'inclinaison arrière du tête de manche sur l'axe des Y (vertical)", - "brian.sleevecapBackFactorY.t": "Tête de manche arrière Y", - "brian.sleevecapFrontFactorX.d": "Contrôle le positionnement du point d'inclinaison avant du tête de manche sur l'axe des X (horizontal)", - "brian.sleevecapFrontFactorX.t": "Tête de manche devant X", - "brian.sleevecapFrontFactorY.d": "Contrôle le positionnement du point d'inclinaison avant du tête de manche sur l'axe des Y (vertical)", - "brian.sleevecapFrontFactorY.t": "Tête de manche devant Y", - "brian.sleevecapQ1Offset.d": "Contrôle la courbure du tête de manche dans le premier quadrant (emmanchure devant).", - "brian.sleevecapQ1Offset.t": "Tête de manche décalage Q1", - "brian.sleevecapQ2Offset.d": "Contrôle la courbure du tête de manche dans le deuxième quadrant (épaule avant).", - "brian.sleevecapQ2Offset.t": "Tête de manche décalage Q2", - "brian.sleevecapQ3Offset.d": "Contrôle la courbure du tête de manche dans le troisième quadrant (épaule arrière).", - "brian.sleevecapQ3Offset.t": "Tête de manche décalage Q3", - "brian.sleevecapQ4Offset.d": "Contrôle la courbure du tête de manche dans le quatrième quadrant (emmanchure au dos).", - "brian.sleevecapQ4Offset.t": "Tête de manche décalage Q4", - "brian.sleevecapQ1Spread1.d": "Contrôle l'abaissement de la courbure du premier quadrant de la tête de manche vers l'emmanchure", - "brian.sleevecapQ1Spread1.t": "Tête de manche abaissement Q1", - "brian.sleevecapQ1Spread2.d": "Contrôle l'élévation de la courbure du premier quadrant de la tête de manche vers l'épaule", - "brian.sleevecapQ1Spread2.t": "Tête de manche élévation Q1", - "brian.sleevecapQ2Spread1.d": "Contrôle l'abaissement de la courbure du second quadrant de la tête de manche vers l'emmanchure", - "brian.sleevecapQ2Spread1.t": "Tête de manche abaissement Q2", - "brian.sleevecapQ2Spread2.d": "Contrôle l'élévation de la courbure du second quadrant de la tête de manche vers l'épaule", - "brian.sleevecapQ2Spread2.t": "Tête de manche élévation Q2", - "brian.sleevecapQ3Spread1.d": "Contrôle l'élévation de la courbure du troisième quadrant de la tête de manche vers l'épaule", - "brian.sleevecapQ3Spread1.t": "Tête de manche élévation Q3", - "brian.sleevecapQ3Spread2.d": "Contrôle l'abaissement de la courbure du troisième quadrant de la tête de manche vers l'emmanchure", - "brian.sleevecapQ3Spread2.t": "Tête de manche abaissement Q3", - "brian.sleevecapQ4Spread1.d": "Contrôle l'élévation de la courbure du quatrième quadrant de la tête de manche vers l'épaule", - "brian.sleevecapQ4Spread1.t": "Tête de manche élévation Q4", - "brian.sleevecapQ4Spread2.d": "Contrôle l'abaissement de la courbure du quatrième quadrant de la tête de manche vers l'emmanchure", - "brian.sleevecapQ4Spread2.t": "Tête de manche abaissement Q4", - "brian.sleeveWidthGuarantee.d": "Contrôle la largeur de manche garantie. Cela détermine à quel point nous pouvons modifier la largeur de la manche pour l'adapter à l'emmanchure.", - "brian.sleeveWidthGuarantee.t": "Largeur des manches garantie", - "bruce.bulge.d": "Augmentez l'angle pour créer plus d'espace dans la poche avant.", - "bruce.bulge.t": "Renflement", - "bruce.legBonus.d": "Longueur supplémentaire à ajouter aux jambes.", - "bruce.legBonus.t": "Bonus de longueur de jambes", - "bruce.rise.d": "Montant d'élévation pour la ceinture vers la taille. Une valeur négative l'abaissera.", - "bruce.rise.t": "Élévation de ceinture", - "bruce.stretch.d": "La quantité d'aisance négative.", - "bruce.stretch.t": "Élasticité", - "bruce.legStretch.d": "Pour de meilleurs résultats, vous souhaitez ajuster vos jambes plus étroitement - dites non à l'écart.", - "bruce.legStretch.t": "Élasticité des jambes", - "bruce.backRise.d": "Pourcentage selon lequel la taille sera relevée à l'arrière.", - "bruce.backRise.t": "Élévation dos", - "carlita.contour.d": "Contrôle à quel point la courbe de la découpe princesse sera saillante ou adoucie.", - "carlita.contour.t": "Angle des découpes princesses", - "carlton.seatEase.d": "Quantité d'aisance autour de vos fesses", - "carlton.seatEase.t": "Aisance d'assise", - "carlton.pocketPlacementHorizontal.d": "L'emplacement (horizontal) des poches", - "carlton.pocketPlacementHorizontal.t": "Placement horizontal des poches", - "carlton.pocketPlacementVertical.d": "L'emplacement (vertical) des poches", - "carlton.pocketPlacementVertical.t": "Placement vertical des poches", - "carlton.collarHeight.d": "Hauteur du col", - "carlton.collarHeight.t": "Hauteur du col", - "carlton.length.d": "Longueur totale", - "carlton.length.t": "Longeur", - "carlton.pocketFlapRadius.d": "Le montant par lequel le rabat de poche est arrondi", - "carlton.pocketFlapRadius.t": "Angle de rabat de poche", - "carlton.pocketRadius.d": "Le montant par lequel la poche est arrondie", - "carlton.pocketRadius.t": "Arrondi de poche", - "carlton.chestPocketHeight.d": "Hauteur de la poche de poitrine", - "carlton.chestPocketHeight.t": "Hauteur de la poche de poitrine", - "carlton.beltWidth.d": "Largeur de ceinture", - "carlton.beltWidth.t": "Largeur de ceinture", - "carlton.buttonSpacingHorizontal.d": "L'espacement horizontal des boutons détermine également le chevauchement de la fermeture avant", - "carlton.buttonSpacingHorizontal.t": "Espacement horizontal des boutons", - "cathrin.panels.d": "Le nombre de pièces à tracer. Plus il y a de pièces, mieux c'est pour l'ajustement des modèles avec courbes.", - "cathrin.panels.t": "Nombre de pièces", - "cathrin.waistReduction.d": "Le montant par lequel vous voulez que le corset resserre votre taille.", - "cathrin.waistReduction.t": "Réduction de la taille", - "cathrin.backOpening.d": "Ouverture au centre de la fermeture du dos.", - "cathrin.backOpening.t": "Ouverture arrière", - "cathrin.backRise.d": "À quel point les panneaux arrière s’élèvent de vos bras au centre de votre dos.", - "cathrin.backRise.t": "Élévation arrière", - "cathrin.backDrop.d": "Combien les panneaux arrière s'abaissent de vos hanches vers votre centre arrière Les valeurs négatives vont lever le dos.", - "cathrin.backDrop.t": "Abaissement du dos", - "cathrin.frontRise.d": "Élévation des panneaux avant au centre avant, entre vos seins. Les valeurs négatives les diminueront.", - "cathrin.frontRise.t": "Élévation avant", - "cathrin.frontDrop.d": "Combien les panneaux avant s'abaissent de vos hanches vers votre centre avant.", - "cathrin.frontDrop.t": "Abaissement avant", - "cathrin.hipRise.d": "Combien les panneaux latéraux montent sur vos hanches.", - "cathrin.hipRise.t": "Élévation des hanches", - "charlie.backPocketHorizontalPlacement.d": "Controls the horizontal placement of the back pocket", - "charlie.backPocketHorizontalPlacement.t": "Back pocket horizontal placement", - "charlie.backPocketVerticalPlacement.d": "Controls the vertical placement of the back pocket", - "charlie.backPocketVerticalPlacement.t": "Back pocket vertical placement", - "charlie.backPocketWidth.d": "Controls the width of the back pocket", - "charlie.backPocketWidth.t": "Back pocket width", - "charlie.backPocketDepth.d": "Controls the depth of the back pocket", - "charlie.backPocketDepth.t": "Back pocket depth", - "charlie.frontPocketSlantDepth.d": "Controls the depth of the (front) pocket slant", - "charlie.frontPocketSlantDepth.t": "Front pocket slant depth", - "charlie.frontPocketSlantWidth.d": "Controls the width of the (front) pocket slant", - "charlie.frontPocketSlantWidth.t": "Front pocket slant width", - "charlie.frontPocketSlantRound.d": "Controls how far from the end of the slant we start rounding into the outseam", - "charlie.frontPocketSlantRound.t": "Front pocket slant round", - "charlie.frontPocketSlantBend.d": "Controls the radius by which we round the pocket slant into the outseam", - "charlie.frontPocketSlantBend.t": "Front pocket slant bend", - "charlie.frontPocketWidth.d": "Controls the width of the front pocket bag", - "charlie.frontPocketWidth.t": "Front pocket width", - "charlie.frontPocketDepth.d": "Controls the depth of the front pocket bag", - "charlie.frontPocketDepth.t": "Front pocket depth", - "charlie.frontPocketFacing.d": "Controls how far the pocket facing extends into the pocket bag", - "charlie.frontPocketFacing.t": "Front pocket facing", - "charlie.beltLoops.d": "Controls the amount of belt loops", - "charlie.beltLoops.t": "Belt loops", - "charlie.flyCurve.d": "Controls the curvature of the fly J-seam", - "charlie.flyCurve.t": "Fly curve", - "charlie.flyLength.d": "Controls the length of the fly", - "charlie.flyLength.t": "Fly length", - "charlie.flyWidth.d": "Controls how far the J-seam of offset from the fly edge", - "charlie.flyWidth.t": "Fly width", - "charlie.waistbandCurve.d": "Controls how curved the waistband is.", - "charlie.waistbandCurve.t": "Waistband Curve", - "cornelius.fullness.d": "Contrôle l'ampleur de la culotte", - "cornelius.fullness.t": "Ampleur", - "cornelius.waistbandBelowWaist.d": "Pourcentage pour déplacer la ceinture sous la taille réelle", - "cornelius.waistbandBelowWaist.t": "Abaissement de la ceinture", - "cornelius.waistReduction.d": "Pourcentage de réduction de la ceinture", - "cornelius.waistReduction.t": "Réduction de la taille", - "cornelius.cuffWidth.d": "Largeur du bracelet de la jambe", - "cornelius.cuffWidth.t": "Largeur du bracelet", - "cornelius.cuffStyle.d": "Style du bracelet de la jambe", - "cornelius.cuffStyle.t": "Style de bracelet", - "cornelius.bandBelowKnee.d": "Contrôle la distance du bracelet sous le genou", - "cornelius.bandBelowKnee.t": "Bracelet sous le genou", - "cornelius.kneeToBelow.d": "Contrôle l'épaisseur du bracelet par rapport au genou", - "cornelius.kneeToBelow.t": "Longueur de bracelet", - "cornelius.ventLength.d": "Contrôle la longueur de la fente entre le genou et le bracelet", - "cornelius.ventLength.t": "Longueur de la fente", - "diana.shoulderSeamLength.d": "Contrôle la longueur de la couture d'épaule", - "diana.shoulderSeamLength.t": "Longueur de couture d'épaule", - "diana.drapeAngle.d": "Contrôle le montant du drapé", - "diana.drapeAngle.t": "Angle du drapé", - "florence.height.d": "Contrôle la hauteur du masque", - "florence.height.t": "Hauteur", - "florence.length.d": "Contrôle la longueur du masque", - "florence.length.t": "Longueur", - "florence.curve.d": "Contrôle la courbe du bord supérieur du masque", - "florence.curve.t": "Courbe", - "florent.headEase.d": "La quantité d'aisance autour de votre tête", - "florent.headEase.t": "Aisance de tour de tête", - "holmes.lengthRatio.d": "fixme", - "holmes.lengthRatio.t": "Profondeur de tête", - "holmes.goreNumber.d": "Le nombre de pans utilisés pour construire la semi-sphère", - "holmes.goreNumber.t": "Nombre de pans", - "holmes.brimAngle.d": "Contrôle l'angle de courbure des visières", - "holmes.brimAngle.t": "Angle des visières", - "holmes.brimWidth.d": "Contrôle la largeur des visières", - "holmes.brimWidth.t": "Largeur des visières", - "hortensia.size.d": "Contrôle la taille globale du sac à main", - "hortensia.size.t": "Taille", - "hortensia.zipperSize.d": "Quelle taille de zip utliser", - "hortensia.zipperSize.t": "Taille du Zip", - "hortensia.strapLength.d": "Contrôle la longueur des anses", - "hortensia.strapLength.t": "Longueur de l'anse", - "hortensia.handleWidth.d": "Contrôle la largeur de l'anse", - "hortensia.handleWidth.t": "Largeur d'anse", - "huey.pocket.d": "Inclure ou non des poches avant", - "huey.pocket.t": "Poche", - "huey.pocketHeight.d": "Contrôle la hauteur de la poche", - "huey.pocketHeight.t": "Hauteur de la poche", - "huey.hoodHeight.d": "Contrôle la hauteur de la capuche", - "huey.hoodHeight.t": "Hauteur de capuche", - "huey.hoodCutback.d": "Contrôle la courbure à l'arrière de la capuche", - "huey.hoodCutback.t": "Coupe arrière de capuche", - "huey.hoodClosure.d": "Contrôle la quantité de capuche sur la partie avant", - "huey.hoodClosure.t": "Fermeture de capuche", - "huey.hoodDepth.d": "Contrôle la profondeur de la capuche", - "huey.hoodDepth.t": "Profondeur du capuche", - "huey.hoodAngle.d": "Contrôle l'angle de fixation de la capuche", - "huey.hoodAngle.t": "Angle de capuche", - "hugo.hipsEase.d": "La marge d'aisance aux hanches.", - "hugo.hipsEase.t": "Aisance des hanches", - "jaeger.centerBackDart.d": "Dart at the center back of your neck to accommodate a rounded back", - "jaeger.centerBackDart.t": "Pinces milieu dos", - "jaeger.sleeveVentLength.d": "Longueur de la fente des manches", - "jaeger.sleeveVentLength.t": "Longueur de la fente des manches", - "jaeger.sleeveVentWidth.d": "Largeur de la fente des manches", - "jaeger.sleeveVentWidth.t": "Largeur de la fente des manches", - "jaeger.chestShaping.d": "Amount of shaping to accommodate for the chest curve", - "jaeger.chestShaping.t": "Courbe du col poitrine", - "jaeger.frontDartPlacement.d": "Emplacement des pinces devant", - "jaeger.frontDartPlacement.t": "Emplacement des pinces devant", - "jaeger.frontOverlap.d": "Taux de chevauchement du pan des boutonnières vers le pan des boutons (largeur de la croisure)", - "jaeger.frontOverlap.t": "Chevauchement avant", - "jaeger.sideFrontPlacement.d": "L'emplacement de la séparation côté / devant", - "jaeger.sideFrontPlacement.t": "Placement latéral/avant", - "jaeger.chestPocketDepth.d": "La profondeur de la poche de poitrine", - "jaeger.chestPocketDepth.t": "Profondeur de la poche de poitrine", - "jaeger.chestPocketWidth.d": "Largeur de la poche poitrine", - "jaeger.chestPocketWidth.t": "Largeur de la poche poitrine", - "jaeger.chestPocketPlacement.d": "L'emplacement de la poche de poitrine", - "jaeger.chestPocketPlacement.t": "Emplacement poche de poitrine", - "jaeger.chestPocketAngle.d": "Angle d'inclinaison de la poche de poitrine", - "jaeger.chestPocketAngle.t": "Angle de poche de poitrine", - "jaeger.chestPocketWeltSize.d": "La taille du revers de la poche de poitrine", - "jaeger.chestPocketWeltSize.t": "Taille du revers de la poche poitrine", - "jaeger.frontPocketPlacement.d": "Positionnement des poches avant", - "jaeger.frontPocketPlacement.t": "Emplacement des poches avant", - "jaeger.frontPocketWidth.d": "La largeur des poches avant", - "jaeger.frontPocketWidth.t": "Largeur des poches avant", - "jaeger.frontPocketDepth.d": "La profondeur des poches avant", - "jaeger.frontPocketDepth.t": "Profondeur des poches avant", - "jaeger.frontPocketRadius.d": "Le rayon par lequel la poche avant est arrondie", - "jaeger.frontPocketRadius.t": "Arrondi des poches avant", - "jaeger.innerPocketPlacement.d": "L'emplacement de la poche intérieure", - "jaeger.innerPocketPlacement.t": "Placement de la poche intérieure", - "jaeger.innerPocketWidth.d": "La largeur de la poche intérieure", - "jaeger.innerPocketWidth.t": "Largeur de la poche intérieure", - "jaeger.innerPocketDepth.d": "La profondeur de la poche intérieure", - "jaeger.innerPocketDepth.t": "Profondeur de la poche intérieure", - "jaeger.innerPocketWeltHeight.d": "La hauteur du revers de la poche intérieure", - "jaeger.innerPocketWeltHeight.t": "Hauteur du revers de la poche intérieure", - "jaeger.pocketFoldover.d": "Montant de recouvrement du tissu principal sur la poche", - "jaeger.pocketFoldover.t": "Recouvrement de la poche", - "jaeger.centerFrontHemDrop.d": "La valeur par laquelle la longueur de l'avant est abaissée", - "jaeger.centerFrontHemDrop.t": "Décalage de la longueur à l'avant", - "jaeger.backVent.d": "Nombre de fentes à l'arrière", - "jaeger.backVent.t": "Fentes arrière", - "jaeger.backVentLength.d": "La longueur du ou des fente(s) arrière(s)", - "jaeger.backVentLength.t": "Longueur de fente arrière", - "jaeger.buttonLength.d": "La distance sur laquelle les boutons sont répartis", - "jaeger.buttonLength.t": "Longueur de boutonnage", - "jaeger.frontCutawayAngle.d": "L'angle de découpe du pan avant", - "jaeger.frontCutawayAngle.t": "Angle de coupe avant", - "jaeger.frontCutawayStart.d": "L'endroit où le pan de la veste commence à s'ouvrir vers l'ourlet du bas", - "jaeger.frontCutawayStart.t": "Départ de l'arrondi de coupe avant", - "jaeger.frontCutawayEnd.d": "En augmentant cette valeur, l'arrondi du pan se terminera plus proche du milieu devant", - "jaeger.frontCutawayEnd.t": "Fin de l'arrondi de coupe avant", - "jaeger.collarSpread.d": "L'écartement du col contrôle la position des pointes du col - plus c'est grand, plus elles seront vers les épaules", - "jaeger.collarSpread.t": "Écartement du col", - "jaeger.lapelStart.d": "Emplacement où les revers démarrent sur le milieu devant", - "jaeger.lapelStart.t": "Début des revers", - "jaeger.lapelReduction.d": "Combien la pointe des revers se réduit vers l'intérieur", - "jaeger.lapelReduction.t": "Réduction de revers", - "jaeger.collarHeight.d": "Hauteur du col", - "jaeger.collarHeight.t": "Hauteur du col", - "jaeger.collarNotchDepth.d": "Profondeur du col cranté", - "jaeger.collarNotchDepth.t": "Profondeur du col cranté", - "jaeger.collarNotchAngle.d": "Angle du col cranté", - "jaeger.collarNotchAngle.t": "Angle du col cranté", - "jaeger.collarNotchReturn.d": "Combien le col dépasse du cran, par rapport au revers du bas", - "jaeger.collarNotchReturn.t": "Revers du col cranté", - "jaeger.rollLineCollarHeight.d": "Combien la ligne de cassure épouse le cou", - "jaeger.rollLineCollarHeight.t": "Hauteur de la ligne de cassure du col", - "jaeger.hemRadius.d": "Le montant par lequel l'ourlet est arrondi", - "jaeger.hemRadius.t": "Arrondi d'ourlet", - "paco.heelEase.d": "La quantité d'aisance à votre talon (au passage la jambe de pantalon)", - "paco.heelEase.t": "Aisance de talon", - "paco.frontPockets.d": "Si oui ou non ajouter des poches avant sur la couture latérale", - "paco.frontPockets.t": "Poches avant", - "paco.backPockets.d": "Si oui ou non ajouter des poches à l'arrière", - "paco.backPockets.t": "Poches arrière", - "paco.elasticatedHem.d": "Si vous voulez ou non un ourlet élastiqué", - "paco.elasticatedHem.t": "Ourlet élastiqué", - "paco.ankleElastic.d": "Largeur de l'élastique (optionnel) à la cheville/ourlet", - "paco.ankleElastic.t": "Largeur élastique de cheville/ourlet", - "penelope.backDartDepthFactor.d": "Jusqu'où va la pince arrière depuis la ceinture, facteur de la mensuration \"Hauteur taille bassin\".", - "penelope.backDartDepthFactor.t": "Profondeur de la pince dos", - "penelope.backVent.d": "Ajouter une fente au dos de la jupe.", - "penelope.backVent.t": "Fente dos", - "penelope.backVentLength.d": "Longueur de la fente dos par rapport à la longueur de la jupe.", - "penelope.backVentLength.t": "Longueur de la fente arrière", - "penelope.dartToSideSeamFactor.d": "Pourcentage de la part de la réduction de la hanche à la taille par rapport à la couture latérale.", - "penelope.dartToSideSeamFactor.t": "Pince de côté", - "penelope.frontDartDepthFactor.d": "Jusqu'où va la pince avant depuis la ceinture, facteur de la mensuration \"Hauteur taille bassin\".", - "penelope.frontDartDepthFactor.t": "Profondeur de la pince avant", - "penelope.hem.d": "La taille de l'ourlet. Mesure en valeurs absolues.", - "penelope.hem.t": "Taille de l'ourlet", - "penelope.hemBonus.d": "Cette option réduira la circonférence de la jupe à l'ourlet. Pourcentage de la mesure de l'assise.", - "penelope.hemBonus.t": "Bonus d'ourlet", - "penelope.lengthBonus.d": "Ceci définit la longueur de la jupe. Pourcentage de la mensuration \"Hauteur taille genou\".", - "penelope.lengthBonus.t": "Supplément de longueur", - "penelope.nrOfDarts.d": "Le nombre de pinces utilisées dans le patron. Maximum de 2. Cette option peut être réduite par le patron si les calculs créent des pinces trop petites.", - "penelope.nrOfDarts.t": "Nombre de pinces", - "penelope.seatEase.d": "Quantité d'aisance au niveau de l'assise.", - "penelope.seatEase.t": "Aisance d'assise", - "penelope.waistBand.d": "Ajouter une ceinture au patron.", - "penelope.waistBand.t": "Ceinture", - "penelope.waistBandWidth.d": "La largeur de la ceinture.", - "penelope.waistBandWidth.t": "Largeur de ceinture", - "penelope.waistEase.d": "Quantité d'aisance au niveau de la taille.", - "penelope.waistEase.t": "Aisance à la taille", - "penelope.zipperLocation.d": "L'emplacement du zip (fermeture éclair).", - "penelope.zipperLocation.t": "Emplacement du Zip", - "sandy.waistbandWidth.d": "Contrôle la largeur de la ceinture.", - "sandy.waistbandWidth.t": "Largeur de ceinture", - "sandy.waistbandPosition.d": "Contrôle la position de la ceinture.", - "sandy.waistbandPosition.t": "Position de ceinture", - "sandy.waistbandShape.d": "Si vous voulez une ceinture droite ou bien de forme particulière.", - "sandy.waistbandShape.t": "Forme de ceinture", - "sandy.circleRatio.d": "Le pourcentage d'un cercle auquel vous souhaitez que la jupe corresponde.", - "sandy.circleRatio.t": "Ratio circulaire", - "sandy.waistbandOverlap.d": "Le montant par lequel la taille se chevauche.", - "sandy.waistbandOverlap.t": "Chevauchement de la ceinture", - "sandy.gathering.d": "Le pourcent par lequel le tissu du haut de la jupe est plus long que celui du bas de la ceinture.", - "sandy.gathering.t": "Fronçage", - "sandy.seamlessFullCircle.d": "Permet une jupe totalement circulaire sans couture.", - "sandy.seamlessFullCircle.t": "Cercle entier sans couture", - "sandy.hemWidth.d": "Largeur de l'ourlet", - "sandy.hemWidth.t": "Hem width", - "shin.legReduction.d": "Réduit l'ouverture de la jambe pour éviter les effets de flottement", - "shin.legReduction.t": "Réduction de jambe", - "simon.backDarts.d": "Inclure ou non des pinces au dos", - "simon.backDarts.t": "Pinces dos", - "simon.backDartShaping.d": "L'ajustement résultant des pinces du dos", - "simon.backDartShaping.t": "Forme de la pince dos", - "simon.barrelCuffNarrowButton.d": "Détermine si on va inclure un bouton pour rendre les poignets de manche plus étroits. Cette option n'est pertinente que pour les poignets de manche classiques.", - "simon.barrelCuffNarrowButton.t": "Bouton de resserrage de poignet", - "simon.boxPleat.d": "Inclure ou non un pli plat au dos", - "simon.boxPleat.t": "Pli plat", - "simon.boxPleatWidth.d": "Largeur totale du pli plat", - "simon.boxPleatWidth.t": "Largeur du pli plat", - "simon.boxPleatFold.d": "La largeur du pli plat repliée à l'intérieur", - "simon.boxPleatFold.t": "Repli du pli plat", - "simon.buttonPlacketStyle.d": "Style de la patte de boutonnage", - "simon.buttonPlacketStyle.t": "Style de patte de boutonnage", - "simon.buttonPlacketWidth.d": "Largeur de la patte de boutonnage sur le côté des boutons.", - "simon.buttonPlacketWidth.t": "Largeur de patte de boutonnage - côté boutons", - "simon.buttonFreeLength.d": "Quelle distance laisser sans bouton à partir du bas devant de la chemise .", - "simon.buttonFreeLength.t": "Longueur sans bouton", - "simon.buttonholePlacketFoldWidth.d": "Largeur du pli de la gorge (patte de boutonnage, du côté des boutonnières).", - "simon.buttonholePlacketFoldWidth.t": "Largeur de repli de la gorge (patte de boutonnage - du côté boutonnières)", - "simon.buttonholePlacketStyle.d": "Style de la gorge (patte de boutonnage, côté boutonnières).", - "simon.buttonholePlacketStyle.t": "Style de gorge (patte de boutonnage - du côté boutonnières)", - "simon.buttonholePlacketWidth.d": "Largeur de la gorge (patte de boutonnage, côté des boutonnières).", - "simon.buttonholePlacketWidth.t": "Largeur de la gorge (patte de boutonnage - du côté boutonnières)", - "simon.buttons.d": "Le nombre de boutons sur la fermeture avant.", - "simon.buttons.t": "Nombre de boutons", - "simon.collarAngle.d": "L'angle des pointes de col.", - "simon.collarAngle.t": "Angle du col", - "simon.collarBend.d": "La courbure du col.", - "simon.collarBend.t": "Courbure du col", - "simon.collarFlare.d": "L'évasement des pointes du col.", - "simon.collarFlare.t": "Évasement du col", - "simon.collarGap.d": "L'écart entre les deux extrémités du col.", - "simon.collarGap.t": "Écart du col", - "simon.collarRoll.d": "La valeur rendant le tombant du col plus large que le pied de col.", - "simon.collarRoll.t": "Repli du col", - "simon.collarStandBend.d": "La courbure centrale du pied de col.", - "simon.collarStandBend.t": "Courbure centrale du pied de col", - "simon.collarStandCurve.d": "La courbe des extrémités du pied de col.", - "simon.collarStandCurve.t": "Courbe des extrémités du pied de col", - "simon.collarStandWidth.d": "Width of the collar stand.", - "simon.collarStandWidth.t": "Largeur du pied de col", - "simon.cuffButtonRows.d": "Simple ou double rangée de boutons de poignet. Cette option n'est pertinente que pour les poignets classiques.", - "simon.cuffButtonRows.t": "Rangée de boutons de manchette", - "simon.cuffDrape.d": "Il s'agit de la largeur supplémentaire de tissu de la manche par rapport au poignet, à l'endroit où ils sont joints.", - "simon.cuffDrape.t": "Drapé du bas de manche", - "simon.cuffLength.d": "La longueur des poignets.", - "simon.cuffLength.t": "Longueur de poignet", - "simon.cuffStyle.d": "Style de poignets.", - "simon.cuffStyle.t": "Style de poignet", - "simon.extraTopButton.d": "Inclure ou non un bouton supplémentaire en haut de fermeture avant.", - "simon.extraTopButton.t": "Bouton supérieur supplémentaire", - "simon.hemCurve.d": "La hauteur de l'arrondi sur un ourlet arrondi.", - "simon.hemCurve.t": "Courbe de l'ourlet", - "simon.hemStyle.d": "Le style de l'ourlet de la chemise.", - "simon.hemStyle.t": "Type d'ourlet", - "simon.roundBack.d": "To fit a round(er) back, this adds length to the center back (at the yoke) that tapers of towards the sides.", - "simon.roundBack.t": "Round back", - "simon.seperateButtonholePlacket.d": "Dessinez une gorge (patte de boutonnières) séparée.", - "simon.seperateButtonholePlacket.t": "Gorge (Patte de boutonnières) séparée", - "simon.seperateButtonPlacket.d": "Dessinez une patte de boutonnage séparée", - "simon.seperateButtonPlacket.t": "Patte de boutonnage séparée", - "simon.sleevePlacketLength.d": "La longueur de la patte de manche", - "simon.sleevePlacketLength.t": "Longueur de la patte de manche", - "simon.sleevePlacketWidth.d": "La largeur de la patte de manche", - "simon.sleevePlacketWidth.t": "Largeur de la patte de manche", - "simon.splitYoke.d": "Dessiner un empiècement divisé ou classique (une seule pièce).", - "simon.splitYoke.t": "Empiècement divisé", - "simon.waistEase.d": "La quantité d'aisance à votre taille (naturelle).", - "simon.waistEase.t": "Aisance à la taille", - "simon.yokeHeight.d": "Controls the height of the yoke", - "simon.yokeHeight.t": "Yoke height", - "simone.bustDartAngle.d": "Contrôle l'angle par lequel la pince poitrine (sur le côté) s'incline vers le bas", - "simone.bustDartAngle.t": "Angle des pinces poitrine", - "simone.bustDartLength.d": "Contrôle à quel point la pince poitrine sera proche de l'apex du buste (la pointe des seins)", - "simone.bustDartLength.t": "Longueur des pinces poitrine", - "simone.contour.d": "Contrôle à quel point le volume sera réduit sous les seins", - "simone.contour.t": "Contour", - "simone.frontDarts.d": "Inclure ou non des pinces de taille", - "simone.frontDarts.t": "Pinces de taille", - "simone.frontDartLength.d": "Contrôle à quel point la pince de taille sera proche de l'apex du buste (la pointe des seins)", - "simone.frontDartLength.t": "Longueur des pinces de taille", - "sven.ribbing.d": "Faut-il finir l'ourlet et les poignets avec un tissu pour bordures", - "sven.ribbing.t": "Bord côte", - "sven.ribbingHeight.d": "La hauteur du tissu pour le bord côte sur les poignets et le bas du sweat.", - "sven.ribbingHeight.t": "Hauteur de bord côte", - "sven.ribbingStretch.d": "L'élasticité du bord côte sur les poignets et le bas.", - "sven.ribbingStretch.t": "Élasticité du bord côte", - "tamiko.flare.d": "La quantité par laquelle le vêtement s'évase de votre poitrine vers le bas", - "tamiko.flare.t": "Évasement", - "tamiko.shoulderseamLength.d": "La longueur de la couture d'épaule, en tant que facteur de la mesure d'épaule à épaule", - "tamiko.shoulderseamLength.t": "Shoulder seam length", - "tamiko.shoulderSlope.d": "Controls the angle of the shoulder seams", - "tamiko.shoulderSlope.t": "Pente des épaules", - "teagan.draftForHighBust.d": "Tracer le patron pour la mesure de tour de poitrine supérieure (si disponible) plutôt que la poitrine (pleine). Il en résultera un vêtement plus ajusté pour les personnes qui ont des seins.", - "teagan.draftForHighBust.t": "Tracé pour le buste supérieur", - "teagan.sleeveEase.d": "Quantité d'aisance de vos manches", - "teagan.sleeveEase.t": "Aisance des manches", - "teagan.sleeveLength.d": "Contrôle la longueur de vos manches", - "teagan.sleeveLength.t": "Longueur des manches", - "teagan.necklineBend.d": "Contrôle la courbure de l'encolure.", - "teagan.necklineBend.t": "Courbure de l'encolure", - "teagan.necklineDepth.d": "Contrôle la profondeur de l'encolure.", - "teagan.necklineDepth.t": "Profondeur de l'encolure", - "teagan.necklineWidth.d": "Contrôle la largeur de l'encolure.", - "teagan.necklineWidth.t": "Largeur d'encolure", - "theo.wedge.d": "Controls the length of the cross seam", - "theo.wedge.t": "Fourche", - "theo.legWidth.d": "Contrôle la largeur des jambes", - "theo.legWidth.t": "Largeur de jambe", - "titan.kneeEase.d": "Contrôle la quantité d'aisance au genou", - "titan.kneeEase.t": "Aisance du genou", - "titan.waistHeight.d": "Contrôle la hauteur de la taille, 100% = hauteur de la taille, 0% = hauteur de la hanche", - "titan.waistHeight.t": "Hauteur de la taille", - "titan.lengthBonus.d": "Contrôle la longueur du pantalon", - "titan.lengthBonus.t": "Supplément de longueur", - "titan.crotchDrop.d": "Abaisse la fourche pour un tombé plus décontracté", - "titan.crotchDrop.t": "Hauteur d'enfourchure", - "titan.fitKnee.d": "Ajuste les jambes à partir de la circonférence du genou plutôt que de la circonférence du bassin", - "titan.fitKnee.t": "Ajuster au genou", - "titan.legBalance.d": "Contrôle le ratio entre le panneau avant et arrière de la jambe", - "titan.legBalance.t": "Équilibre des jambes", - "titan.crossSeamCurveStart.d": "Contrôle la distance à partir de laquelle la courbe démarre pour l'enfourchure dos", - "titan.crossSeamCurveStart.t": "Début de la courbe de l'enfourchure dos", - "titan.crossSeamCurveBend.d": "Contrôle la courbure de la couture de fourche dos", - "titan.crossSeamCurveBend.t": "Courbure de l'enfourchure dos", - "titan.crossSeamCurveAngle.d": "Controls the angle of the cross seam", - "titan.crossSeamCurveAngle.t": "Cross seam angle", - "titan.crotchSeamCurveStart.d": "Contrôle la distance à partir de laquelle la courbe démarre pour l'enfourchure avant", - "titan.crotchSeamCurveStart.t": "Début de la courbe de l'enfourchure avant", - "titan.crotchSeamCurveBend.d": "Contrôle la courbure de la couture de fourche avant", - "titan.crotchSeamCurveBend.t": "Courbure de la fourche avant", - "titan.crotchSeamCurveAngle.d": "Controls the angle of the crotch seam", - "titan.crotchSeamCurveAngle.t": "Crotch seam angle", - "titan.waistBalance.d": "Contrôle la position horizontale de la taille par rapport au bassin", - "titan.waistBalance.t": "Équilibre de la taille", - "titan.waistbandWidth.d": "The width of the waistband", - "titan.waistbandWidth.t": "Waistband width", - "titan.grainlinePosition.d": "Contrôle la position horizontale de la jambe par rapport au bassin", - "titan.grainlinePosition.t": "Position de la ligne de droit fil", - "trayvon.tipWidth.d": "La largeur de votre cravate au niveau de la pointe", - "trayvon.tipWidth.t": "Largeur de pointe", - "trayvon.knotWidth.d": "La largeur de votre cravate au niveau du noeud", - "trayvon.knotWidth.t": "Largeur du noeud", - "ursula.fabricStretch.d": "Adjust this for more or less stretchy fabrics", - "ursula.fabricStretch.t": "Fabric stretch", - "ursula.gussetWidth.d": "Controls the width of the gusset", - "ursula.gussetWidth.t": "Gusset width", - "ursula.gussetLength.d": "Controls the length of the gusset", - "ursula.gussetLength.t": "Gusset length", - "ursula.elasticStretch.d": "Adjust this for more or less stretchy elastic", - "ursula.elasticStretch.t": "Elastic stretch", - "ursula.rise.d": "Controls the height of the waist", - "ursula.rise.t": "Rise", - "ursula.legOpening.d": "Controls how high the leg is cut out", - "ursula.legOpening.t": "Leg opening", - "ursula.frontDip.d": "Controls how much the front waist curves (revealing more or less skin)", - "ursula.frontDip.t": "Front waist dip", - "ursula.backDip.d": "Controls how much the back waist curves (revealing more or less skin)", - "ursula.backDip.t": "Back waist dip", - "ursula.taperToGusset.d": "Controls the amount of exposed skin on the front", - "ursula.taperToGusset.t": "Front exposure", - "ursula.backExposure.d": "Controls the amount of exposed skin on the back", - "ursula.backExposure.t": "Back exposure", - "wahid.backScyeDart.d": "La valeur à retirer dans une pince de carrure (à l'emmanchure arrière).", - "wahid.backScyeDart.t": "Pince de carrure", - "wahid.frontScyeDart.d": "La quantité à retirer de la pince à l'avant de l'emmanchure.", - "wahid.frontScyeDart.t": "Pince d'emmanchure", - "wahid.pocketLocation.d": "Détermine l'emplacement de la poche", - "wahid.pocketLocation.t": "Emplacement de poche", - "wahid.pocketWidth.d": "Détermine la largeur de la poche", - "wahid.pocketWidth.t": "Largeur de poche", - "wahid.weltHeight.d": "Détermine la hauteur du revers de poche", - "wahid.weltHeight.t": "Hauteur du revers de poche", - "wahid.necklineDrop.d": "Détermine la profondeur d'encolure sur le devant", - "wahid.necklineDrop.t": "Profondeur d'encolure", - "wahid.frontStyle.d": "Style de l'encolure", - "wahid.frontStyle.t": "Style d'encolure", - "wahid.hemStyle.d": "Style de l'ourlet avant", - "wahid.hemStyle.t": "Style d'ourlet", - "wahid.hemRadius.d": "Rayon avec lequel l'ourlet est arrondi", - "wahid.hemRadius.t": "Arrondi d'ourlet", - "wahid.backInset.d": "A quel point l'arrière de l'emmanchure est coupée vers l'intérieur", - "wahid.backInset.t": "Échancrure emmanchure arrière", - "wahid.frontInset.d": "A quel point l'avant de l'emmanchure est coupée vers l'intérieur", - "wahid.frontInset.t": "Échancrure emmanchure avant", - "wahid.shoulderInset.d": "A quel point la couture d'épaule est éloignée des épaules", - "wahid.shoulderInset.t": "Réduction d'épaule", - "wahid.neckInset.d": "A quel point la couture d'épaule est éloignée du cou", - "wahid.neckInset.t": "Échancrure cou", - "wahid.pocketAngle.d": "Angle de l'ouverture de poche", - "wahid.pocketAngle.t": "Angle de poche", - "waralee.backPocket.d": "S'il faut inclure une poche arrière ou non", - "waralee.backPocket.t": "Poche arrière", - "waralee.frontPocket.d": "S'il faut inclure une poche avant ou non", - "waralee.frontPocket.t": "Poche avant", - "waralee.hem.d": "Taille de l'ourlet au bas du pantalon", - "waralee.hem.t": "Taille de l'ourlet", - "waralee.waistBand.d": "Taille de la bande de taille", - "waralee.waistBand.t": "Bande de taille", - "waralee.waistRaise.d": "Combien il faut élever la taille de la mesure de hauteur d'assise, ce qui influence la profondeur de la coupe de l'entre-jambe.", - "waralee.waistRaise.t": "Hauteur de taille", - "waralee.crotchBack.d": "Le pourcentage de la circonférence d'assise à l'arrière. Cela crée plus ou moins d'espace entre la couture latérale et le dos.", - "waralee.crotchBack.t": "Fourche arrière", - "waralee.crotchFront.d": "Le pourcentage de la circonférence d'assise à l'avant. Cela crée plus ou moins d'espace entre la couture latérale et le devant.", - "waralee.crotchFront.t": "Fourche avant", - "waralee.crotchFactorBackHor.d": "Utilisé pour déplacer la courbe de la fourche arrière horizontalement", - "waralee.crotchFactorBackHor.t": "Reculer la fourche arrière", - "waralee.crotchFactorBackVer.d": "Utilisé pour déplacer la courbe de la fourche arrière verticalement", - "waralee.crotchFactorBackVer.t": "Remonter la fourche arrière", - "waralee.crotchFactorFrontHor.d": "Utilisé pour déplacer la courbe de la fourche avant horizontalement", - "waralee.crotchFactorFrontHor.t": "Avancer la fourche avant", - "waralee.crotchFactorFrontVer.d": "Utilisé pour déplacer la courbe de la fourche avant verticalement", - "waralee.crotchFactorFrontVer.t": "Remonter la fourche avant", - "waralee.waistOverlap.d": "Cela indique combien vous voulez que les pans de la jambe se chevauchent à la taille. Un réglage de 0 les ferait rencontrer à la couture latérale, et un cadre de 100 les fait se rencontrer à l'avant/arrière.", - "waralee.waistOverlap.t": "Chevauchement de la ceinture", - "waralee.legShortening.d": "Cela indique la longueur du pantalon. C'est un facteur de la mesure de l'entrejambe. Plus la valeur est grande, plus elle sera retirée de la longueur.", - "waralee.legShortening.t": "Réduction des jambes", - "waralee.backRaise.d": "Ce réglage lève la taille dans le dos, la taille ne se pose pas horizontalement, mais est inclinée à l'arrière. Ce réglage vous permet de la relever dans le dos si vous en avez besoin pour un bon ajustement.", - "waralee.backRaise.t": "Élévation arrière" -} -export const nl = { - "acc.accountRemoved": "Account verwijderd", - "acc.accountRestricted": "Account beperkt", - "acc.avatar": "Profielafbeelding", - "acc.avatarInfo": "Uw avatar- of profielfoto wordt op uw profielpagina weergegeven.", - "acc.avatarTitle": "Stel je profielfoto in", - "acc.bio": "Biografie", - "acc.bioInfo": "Hier kunt U andere FreeSewing gebruikers een beetje over uzelf vertellen. Dit veld ondersteunt MarkDown, dus U kunt ook links opnemen. Als U een blog heeft, is dit waar U naar linkt, zodat anderen het kunnen ontdekken.", - "acc.bioTitle": "Schrijf een korte bio", - "acc.currentPassword": "Huidig wachtwoord", - "acc.email": "Email adres", - "acc.emailInfo": "Het e-mailadres dat aan uw account is gekoppeld, is belangrijk omdat het zal worden gebruikt om weer toegang te krijgen tot uw account als u uw wachtwoord bent vergeten. Daarom is voor het wijzigen van uw e-mailadres een bevestiging vereist.", - "acc.emailTitle": "Voer het e-mailadres in dat u aan dit account wilt linken", - "acc.exportYourData": "Exporteer je gegevens", - "acc.exportYourDataInfo": "De algemene verordening gegevensbescherming van de EU (AVG) waarborgt uw zogenaamd recht op gegevensportabiliteit: het recht om uw persoonlijke gegevens te verkrijgen voor uw eigen doeleinden of voor andere diensten.", - "acc.exportYourDataTitle": "Klik hieronder om uw persoonlijke gegevens te downloaden", - "acc.github": "Github", - "acc.githubInfo": "Als je je GitHub gebruikersnaam opgeeft, zal je profielpagina een link naar je Github account bevatten. Op die manier kunnen anderen je codebijdragen kunnen ontdekken, je een ster toekennen, of je volgen.", - "acc.githubTitle": "Vul je GitHub gebruikersnaam in", - "acc.instagramInfo": "Als je je Instagram gebruikersnaam opgeeft, zal je profielpagina een link naar je Instagram account bevatten. Op die manier kunnen anderen jouw foto's ontdekken en je volgen.", - "acc.instagram": "Instagram", - "acc.instagramTitle": "Vul je Instagram gebruikersnaam in", - "acc.languageInfo": "Deze taalkeuze bepaalt in welke taal u e-mails ontvangt van freesewing. Het bepaalt niet de taal van de website, die op elke pagina kan worden gekozen.", - "acc.language": "Taal", - "acc.languageTitle": "Selecteer de taal van uw keuze", - "acc.newPassword": "Nieuw wachtwoord", - "acc.newsletter": "Nieuwsbrief", - "acc.newsletterTitle": "Wil je graag de FreeSewing nieuwsbrief ontvangen?", - "acc.newsletterInfo": "Een keer om de 3 maanden sturen we een nieuwsbrief rond met eerlijke en waardevolle inhoud. Geen tracking, geen advertenties, geen nonsens.", - "acc.passwordInfo": "Het wijzigen van uw wachtwoord vereist uw huidige wachtwoord. Vul dat in, en vul ook uw nieuwe wachtwoord in.", - "acc.password": "Wachtwoord", - "acc.passwordTitle": "Voer je huidige wachtwoord en je nieuwe wachtwoord in", - "acc.patronInfo": "Mecenassen ondersteunen FreeSewing financieel. Het zijn loyale supporters die zorgen voor een duurzame toekomst voor freesewing.org, onze code, onze patronen en onze gemeenschap.", - "acc.patron": "Mecenas", - "acc.removeYourAccountInfo": "De Algemene Gegevens Verordening (AGV) van de EU garandeerd uw recht om uw persoonlijke gegevens te wissen.", - "acc.removeYourAccount": "Verwijder uw account", - "acc.removeYourAccountWarning": "Hiermee worden uw account, uw patroontekeningen, uw modellen en alle gegevens die we voor u hebben opgeslagen verwijderd. Er is geen weg terug.", - "acc.resetPasswordInfo": "Voer een nieuw wachtwoord in.", - "acc.resetPassword": "Wachtwoord opnieuw instellen", - "acc.resetPasswordTitle": "Voer je nieuwe wachtwoord in", - "acc.restrictProcessingOfYourDataInfo": "De algemene verordening gegevensbescherming van de EU (AVG) verzekert uw zogenaamde recht om verwerking te beperken - het recht om een einde te maken aan de verwerking van uw gegevens.", - "acc.restrictProcessingOfYourData": "Beperk de verwerking van uw gegevens", - "acc.restrictProcessingWarning": "Hoewel er geen gegevens worden verwijderd, resulteert dit in het bevriezen van uw account. Bovendien kunt u dit niet zelf ongedaan maken, maar u moet contact met ons opnemen wanneer u de toegang tot uw account wilt herstellen.", - "acc.reviewYourConsent": "Herzie uw toestemmingen", - "acc.socialInfo": "Als je je GitHub-, Twitter- of Instagram- gebruikersnaam opgeeft, bevat uw profielpagina links naar uw accounts op deze sites. Hiermee kunnen FreeSewing gebruikers je volgen.
We nemen namens jou geen contact op met een van deze sites. De enige bedoeling is om te laten weten dat bijvoorbeeld gebruiker @joost op freesewing dezelfde persoon is als gebruiker @j__st op twitter.", - "acc.social": "Sociaal", - "acc.socialTitle": "Laat mensen je elders volgen", - "acc.twitterInfo": "Als je je Twitter-gebruikersnaam opgeeft, zal je profielpagina een link naar je Twitter-account bevatten. Op die manier kunnen anderen jouw tweets ontdekken en je volgen.", - "acc.twitterTitle": "Vul je Twitter gebruikersnaam in", - "acc.twitter": "Twitter", - "acc.unitsInfo": "FreeSewing ondersteunt zowel het metrische systeem als imperiale eenheden.", - "acc.unitsTitle": "Selecteer het systeem waarmee u het meest vertrouwd bent", - "acc.units": "Eenheden", - "acc.usernameInfo": "Iedereen start met een willekeurig gegenereerde gebruikersnaam. Dat is niet erg persoonlijk, dus je kunt je gebruikersnaam veranderen in iets meer jij. Zoals je naam, of scheetje of wat dan ook. Typ gewoon de gebruikersnaam die u wilt hebben.", - "acc.usernameTitle": "Kies een gebruikersnaam", - "acc.username": "Gebruikersnaam", - "acc.accountIsInactive": "Je account is inactief", - "acc.accountNeedsActivation": "Vooraleer u kan inloggen, moet u uw account activeren. Controleer uw inbox voor onze registratie e-mail en klik op de link binnen deze e-mail.", - "acc.reloadAccount": "Account opnieuw laden", - "acc.reloadAccountDescription": "Dit zal de data van je account opnieuw laden vanuit de backend. Het heeft hetzelfde effect als jezelf afmelden en opnieuw aanmelden.", - "app.100PercentCommunity": "100% gemeenschap", - "app.100PercentFree": "100% gratis", - "app.100PercentOpenSource": "100% open source", - "app.aboutFreesewing": "Over FreeSewing", - "app.account": "Account", - "app.accountCreated": "Account aangemaakt", - "app.actions": "Acties", - "app.allDocumentation": "Alle documentatie", - "app.andThatIsAwesome": "En dat is geweldig", - "app.applyThisLayout": "Pas deze layout toe", - "app.areYouSureYouWantToContinue": "Weet je zeker dat je door wilt gaan?", - "app.askForHelp": "Vraag om hulp", - "app.automatic": "Automatisch", - "app.averagePeopleDoNotExist": "Gemiddelde mensen bestaan niet", - "app.awesome": "Super", - "app.back": "Terug", - "app.becauseThatWouldBeReallyHelpful": "Want dat zou ons echt vooruit helpen.", - "app.becomeAPatron": "Word mecenas", - "app.blog": "Blog", - "app.browseBlogposts": "Bekijk de blogposts", - "app.browsePatterns": "Bekijk de patronen", - "app.browseShowcases": "Bekijk de voorbeelden", - "app.butThatCouldChange": "Maar dat kan veranderen", - "app.cancel": "Annuleren", - "app.changePerson": "Verander persoon", - "app.changePattern": "Ander patroon", - "app.chatOnDiscord": "Chat on Discord", - "app.checkInboxClickLinkInConfirmationEmail": "We hebben je een Email gestuurd ter bevestiging. Check je mailbox en klik op de link in onze Email.", - "app.chest": "Borst", - "app.chestInfo": "Borsten hebben extra maten nodig. Als deze persoon geen borsten heeft zullen overbodige maten verborgen worden bij het configureren. Dit heeft geen invloed op hoe patronen getekend worden.", - "app.chooseASize": "Kies een maat", - "app.chooseAPerson": "Kies een persoon", - "app.chooseADesign": "Kies een ontwerp", - "app.chooseAPattern": "Kies een patroon", - "app.chooseYourOptions": "Kies je opties", - "app.close": "Sluiten", - "app.community": "Gemeenschap", - "app.configureLayout": "Configureer layout", - "app.configureYourDraft": "Configureer je patroontekening", - "app.contactUs": "Neem contact op", - "app.contentLocaleFallback": "Daarom tonen we je de Engelstalige versie.", - "app.contents": "Inhoud", - "app.continue": "Doorgaan", - "app.copiedToClipboard": "Gekopieerd naar het klembord", - "app.copy": "Kopiëren", - "app.couldYouTranslateThis": "Kan jij dit vertalen?", - "app.countModelsLackingForPattern": "{count} van je mensen hebben niet de nodige maten op {pattern} te tekenen", - "app.created": "Aangemaakt", - "app.custom": "Aangepast", - "app.customSeamAllowance": "Aangepaste naadtoeslag", - "app.lightMode": "Lichte modus", - "app.data": "Data", - "app.darkMode": "Donkere modus", - "app.default": "Standaard", - "app.demo": "Demo", - "app.designOptions": "Design opties", - "app.designs": "Designs", - "app.docs": "Documentatie", - "app.docsFooterMsg": "Documentatie is nooit af. Hopelijk hebben we al je vragen kunnen beantwoorden, maar als dat niet het geval is, is er hulp beschikbaar.", - "app.docsNotFoundMsg": "We konden deze documentatie niet vinden, wat meestal betekent dat deze nog niet is geschreven.", - "app.docsNotFoundTitle": "Deze documentatie ontbreekt", - "app.documentationForDevelopers": "Documentatie voor ontwikkelaars", - "app.documentationForEditors": "Documentatie voor redacteuren", - "app.documentationForTranslators": "Documentatie voor vertalers", - "app.documentationOverview": "Overzicht documentatie", - "app.download": "Download", - "app.draft": "Patroontekening", - "app.draftPattern": "Teken {pattern}", - "app.draftPatternForModel": "Teken {pattern} voor {model}", - "app.drafts": "Patroontekeningen", - "app.draftSettings": "Instellingen patroontekening", - "app.dragAndDropImageHere": "Drag and drop an image here, or select one manually with the button below", - "app.emailAddress": "Email adres", - "app.emailWorksToo": "Als je je gebruikersnaam niet meer weet, vul dan je email adres in, dat werkt ook", - "app.enterEmailPickPassword": "Voer je email adres in, en kies een wachtwoord", - "app.export": "Exporteren", - "app.exportTiledPDF": "Gepagineerde PDF exporteren", - "app.faq": "Vaak gestelde vragen", - "app.fieldRemoved": "{field} verwijderd", - "app.fieldSaved": "{field} opgeslagen", - "app.filterByPattern": "Filter op patroon", - "app.filterPatterns": "Patronen filteren", - "app.forgotLoginInstructions": "Als je je wachtwoord niet meer weet, vul dan hieronder je gebruikersnaam of email adres in, en klik op de Herstel wachtwoord knop", - "app.freesewing": "Freesewing", - "app.freesewingOnGithub": "FreeSewing op GitHub", - "app.github": "GitHub", - "app.goAheadWeWillWait": "Doe maar, we wachten wel.", - "app.goodJob": "Goed gedaan", - "app.goodToSeeYouAgain": "Leuk je weer te zien {user}", - "app.handle": "Referentie", - "app.helpUsTranslate": "Help ons met vertalen", - "app.home": "Startpagina", - "app.howCanWeHelpYou": "Hoe kunnen we je helpen?", - "app.howToTakeMeasurements": "Leer hoe je maten neemt", - "app.i18n": "Internationalisering", - "app.imperialUnits": "Imperiale (Engelse) eenheden (duim)", - "app.instagram": "Instagram", - "app.invalidTldMessage": ".{tld} is geen geldige TLD", - "app.joinTheChatMsg": "We have a community on Discord with friendly people you can chat to.", - "app.justAMoment": "Een ogenblikje", - "app.layout": "Layout", - "app.logIn": "Aanmelden", - "app.loginWithProvider": "Log in with {provider}", - "app.logOut": "Afmelden", - "app.manual": "Manueel", - "app.markdownHelp": "MarkDown hulp", - "app.measurements": "Maten", - "app.menu": "Menu", - "app.metadata": "Metadata", - "app.metricUnits": "Metrische eenheden (cm)", - "app.person": "Persoon", - "app.people": "Mensen", - "app.nameInfo": "Een naam helpt om dingen uit elkaar te houden. Je kan eender welke naam kiezen.", - "app.name": "Naam", - "app.addThing": "Voeg {thing} toe", - "app.newThing": "Nieuw {thing}", - "app.newPatternForModel": "Nieuwe {pattern} voor {model}", - "app.noChanges": "Geen wijzigingen", - "app.no": false, - "app.noPasswordPolicy": "We handhaven geen wachtwoordbeleid", - "app.noSeamAllowance": "Geen naadtoeslag", - "app.notAllOfThisContentIsAvailableInLanguage": "Niet al deze inhoud is beschikbaar in het Nederlands", - "app.notesInfo": "Dit zijn je aantekeningen; Je kunt hier alles schrijven wat je wil", - "app.notes": "Aantekeningen", - "app.ohNo": "Oh nee!", - "app.oneMoreThing": "En dan nog dit", - "app.options": "Opties", - "app.orPayPerYear": "Of betaal per jaar", - "app.other": "Andere", - "app.otherThing": "Andere {thing}", - "app.ourPatrons": "Onze mecenassen", - "app.ourRevenuePledge": "Our revenue pledge", - "app.patron-2": "Poeder aap", - "app.patron-4": "Eerste stuurman", - "app.patron-8": "Kapitein", - "app.patronHelp": "Neem contact op met ons als u vragen heeft of wijzigingen wilt aanbrengen in uw Patron-status", - "app.patron": "Mecenas", - "app.patronPitch": "Als je denkt dat wat wij doen de moeite is, en je kan elke maand een paar centen missen zonder al te veel problemen, steun dan alsjeblieft ons werk", - "app.patronsKeepUsAfloat": "FreeSewing wordt mogelijk gemaakt door de financiële steun van onze mecenassen. Ze houden dit schip drijvend.", - "app.patternInstructions": "Patroon instructies", - "app.patternOptions": "Patroon opties", - "app.pattern": "patroon", - "app.sewingPatterns": "Naaipatronen", - "app.patterns": "Patronen", - "app.pendingConfirmation": "In afwachting van bevestiging", - "app.perMonth": "Per maand", - "app.pleaseEnterAValidEmailAddress": "Gelieve een geldig email adres in te voeren", - "app.pleaseIncludeTheInformationBelow": "Gelieve onderstaande informatie mee te geven", - "app.preview": "Voorbeeld", - "app.privacyNotice": "Privacy melding", - "app.proceedWithCaution": "Ga voorzichtig te werk", - "app.profile": "Profiel", - "app.relatedLinks": "Gerelateerde links", - "app.remove": "Verwijderen", - "app.removeThing": "{thing} verwijderen", - "app.reportThisOnGithub": "Melden via GitHub", - "app.requiredMeasurements": "Vereiste maten", - "app.resendActivationEmailMessage": "Vul het e-mailadres waarmee je je account aangemaakt hebt in en we zullen je een nieuwe bevestigingsmail sturen.", - "app.resendActivationEmail": "Stuur een nieuwe activatie email", - "app.resetPassword": "Herstel wachtwoord", - "app.reset": "Reset", - "app.restoreDefaults": "Standaardwaarden herstellen", - "app.restoreDesignDefaults": "Standaardwaarden ontwerp herstellen", - "app.restorePatternDefaults": "Standaardwaarden patroon herstellen", - "app.saveDraftToYourAccount": "Patroontekening opslaan in je account", - "app.save": "Opslaan", - "app.searchLanguageMsg": "Elke taal heeft een eigen zoekindex. Aangezien niet al onze inhoud is vertaald, vindt u mogelijk meer resultaten via een Engelse zoekopdracht.", - "app.searchLanguageTitle": "Kunt u niet vinden waarnaar u op zoek bent?", - "app.search": "Zoeken", - "app.selectAPartToMoveMirrorOrRotate": "Selecteer een onderdeel om te verplaatsen, spiegelen of draaien", - "app.selectImage": "Selecteer afbeelding", - "app.sendAnEmail": "Stuur een email", - "app.settings": "Instellingen", - "app.sewingHelp": "Naai hulp", - "app.sewingPatternsForNonAveragePeople": "Naaipatronen voor niet-gemiddelde mensen", - "app.share": "Delen", - "app.shareFreesewing": "Deel FreeSewing", - "app.showcase": "Voorbeelden", - "app.signUpForAFreeAccount": "Schrijf je gratis in", - "app.signUp": "Inschrijven", - "app.signupWithProvider": "Sign up with {provider}", - "app.sortByField": "Sorteren op {field}", - "app.standardSeamAllowance": "Standaard naadtoeslag", - "app.startOver": "Begin opnieuw", - "app.startTranslatingNowOrRead": "{startTranslatingNow}, of lees eerst de {documentationForTranslators}.", - "app.startTranslatingNow": "Begin meteen te vertalen", - "app.subscribe": "Abonneren", - "app.support": "Ondersteuning", - "app.supportFreesewing": "Ondersteun freesewing", - "app.tellMeMore": "Vertel me meer", - "app.thanksForYourSupport": "Bedankt voor je steun", - "app.thisContentIsNotAvailableInLanguage": "Deze inhoud is niet beschikbaar in het Nederlands", - "app.thisFieldSupportsMarkdown": "Dit veld ondersteunt Markdown", - "app.thisPageRequiresAuthentication": "Deze pagina vereist authenticatie", - "app.troubleLoggingIn": "Problemen met aanmelden?", - "app.twitter": "Twitter", - "app.txt-footer": "Freesewing is made by a community of contributors
with the financial support of our Patrons", - "app.txt-tier2": "Onze meest democratisch geprijsde optie. Het is minder dan de prijs van een latte, maar jouw steun betekent alles voor ons.", - "app.txt-tier4": "Abonneer je op deze optie en we sturen wat van onze erg gegeerde FreeSewing swag naar je thuis. Waar ook ter wereld dat mag zijn.", - "app.txt-tier8": "Als je ons niet louter wil steunen, maar FreeSewing wil zien groeien, dan is dit de optie voor jou. Ook: extra swag!", - "app.txt-tiers": "FreeSewing draait op een vrijwillig subscriptiemodel", - "app.unitsInfo": "FreeSewing ondersteunt zowel het metrieke stelsel als de imperiale eenheden. Kies eenvoudig welke u hier wilt gebruiken. (de standaard is om de eenheden te gebruiken die in uw account zijn geconfigureerd).", - "app.updated": "Bijgewerkt", - "app.update": "Bijwerken", - "app.userHasBeenWithUsSince": "{user} hoort erbij sinds {since}", - "app.users": "Gebruikers", - "app.weAreValidatingYourConfirmationCode": "We valideren je bevestigingscode", - "app.weCouldNotValidateYourConfirmationCode": "We kunnen uw bevestigingscode niet valideren", - "app.weEncounteredAProblem": "We zijn op een probleem gestoten", - "app.weEncourageYouToReportThis": "We nodigen je uit om dit te melden", - "app.welcomeAboard": "Welkom aan boord", - "app.welcome": "Welkom", - "app.weNeverShareYourEmail": "We geven jouw email adres nooit door aan derden", - "app.whatIsThis": "What betekent dit?", - "app.withBreasts": "Met borsten", - "app.withoutBreasts": "Zonder borsten", - "app.yay": "Joehoew!", - "app.yes": true, - "app.youAreAPatron": "Je bent een mecenas", - "app.youAreNotAPatron": "Je bent geen mecenas", - "app.youAreNotLoggedIn": "Je bent niet ingelogd", - "app.yourRights": "Jouw rechten", - "app.makerDocs": "Maker documentatie", - "app.devDocs": "Documentatie voor ontwikkelaars", - "app.slogan": "Een JavaScript bibliotheek voor naaipatronen op maat", - "app.getStarted": "Aan de slag", - "app.apiReference": "API Referentie", - "app.tutorial": "Handleiding", - "app.editThisPage": "Deze pagina bewerken", - "app.loginRequiredRedirect": "U bent doorgestuurd naar de inlogpagina omdat {page} authenticatie vereist", - "app.various": "Overige", - "app.sewing": "Naaien", - "app.examples": "Voorbeelden", - "app.by": "door", - "app.years": "Jaren", - "app.pricing": "Prijzen", - "app.createFirst": "Begin een nieuw patroon te maken", - "app.noPattern": "Je hebt (nog) geen patronen. Maak een nieuw patroon, en sla het op in je account.", - "app.modelFirst": "Begin met maten toe te voegen", - "app.noModel": "Je hebt (nog) geen maten toegevoegd. FreeSewing can naaipatronen op maat genereren. Maar daarvoor hebben we maten nodig.", - "app.noModel2": "Dus het eerste dat je zou moeten doen is een persoon toevoegen, en je lintmeter bovenhalen.", - "app.noUserBrowsingTitle": "Je kan niet zomaar door alle gebruikers grasduinen", - "app.noUserBrowsingText": "We hebben er duizenden. Je hebt toch wel wat beters te doen?", - "app.usePatternMeasurements": "Gebruik de maten van het originele patroon", - "app.createReplica": "Creëer een replica", - "app.showDetails": "Toon details", - "app.hideDetails": "Verberg details", - "app.clickBelowToLogOut": "Klik hieronder om uit te loggen", - "app.compare": "Vergelijk", - "app.savePattern": "Bewaar patroon", - "app.recreate": "Opnieuw aanmaken", - "app.recreateThing": "Maak {thing} opnieuw", - "app.recreateThingForPerson": "Maak {thing} opnieuw voor {person}", - "app.seeYouLaterUser": "Tot later {user}", - "app.exportForPrinting": "Exporteren om te printen", - "app.exportForEditing": "Exporteren om te bewerken", - "app.startWithNeckTitle": "Begin met de omtrek van de hals", - "app.startWithNeckDescription": "We kunnen je helpen fouten in je maten te vinden, gebaseerd op je halsomtrek.", - "app.whatYouNeed": "Wat je nodig hebt", - "app.fabricOptions": "Stofkeuze", - "app.cutting": "Knippen", - "app.instructions": "Instructies", - "app.hide": "Verberg", - "app.show": "Toon", - "app.oneMomentPlease": "Een momentje alsjeblieft", - "app.loadingMagic": "De magie is aan het laden", - "app.estimate": "Schatting", - "app.actual": "Feitelijk", - "app.weEstimateYM2B": "We schatten uw {measurement} op ongeveer:", - "app.exportAsData": "Exporteer als data", - "app.availablePatterns": "Beschikbare patronen", - "app.browseCollection": "Grasduin door de collectie", - "app.browseYourPatterns": "Snuister door jouw patronen", - "app.yourPatterns": "Jouw patronen", - "app.loginNeededToSavePatternsMsg": "Je moet aangemeld zijn om je patronen te bewaren", - "app.docsForContributors": "Documentatie voor kabouterhulpjes", - "app.patternDocs": "Patroon documentatie", - "app.socialMedia": "Social media", - "app.create": "Creëer", - "app.browse": "Blader", - "app.patrons": "Patrons", - "app.scrollToTop": "Scroll naar boven", - "app.sitemap": "Sitemap", - "app.contributeToThing": "Draag bij aan {thing}", - "app.mtmIsOurJam": "Naaipatronen op maat is onze specialiteit", - "app.fitYouDeserve": "Je mist heel wat als je voor standaard maten gaat.
Dus schrijf je vandaag in, en krijg de pasvorm die je verdient.", - "app.supportNag": "FreeSewing is gratis, maar we zouden het appreciëren mocht je overwegen ons te steunen.", - "app.madeToMeasure": "Op maat gemaakt", - "app.sizes": "Maten", - "app.standardSizes": "Standaardmaten", - "app.accountRequired": "Deze functie vereist een FreeSewing account", - "app.size": "Maat", - "app.switchToThing": "Schakel over naar {thing}", - "app.saveThing": "Bewaar {thing}", - "app.shareThing": "Deel {thing}", - "app.link": "Link", - "app.cloneThing": "Kopieer {thing}", - "app.cloneDescription": "Maak een exacte kopie die de maten van het originele patroon gebruikt.", - "app.furtherReading": "Further reading", - "app.saveAsNewPattern": "Bewaar Als Nieuw Patroon", - "app.saveAsNewPattern-txt": "Sla (een kopie van) dit patroon op in je FreeSewing account", - "app.exportPattern": "Patroon exporteren", - "app.printPattern": "Print patroon", - "app.exportPattern-txt": "Exporteer een PDF geschikt voor jouw printer, of download dit patroon in verschillende formaten", - "app.editThing": "Bewerk {thing}", - "app.editPattern-txt": "Laad dit patroon in de patroonbewerker", - "app.featureRequiresAccount": "Deze functie vereist een FreeSewing account", - "app.zoom": "Zoom", - "app.zoomIn": "Zoom in", - "app.zoomOut": "Zoom out", - "app.zoom-txt": "Wisselt tussen het beperken van de hoogte of breedte van het patroon zodat het op je scherm past", - "app.savePattern-txt": "Bewaar dit patroon in je FreeSewing account", - "app.comparePattern": "Vergelijk patroon", - "app.showPattern": "Patroon tonen", - "app.comparePattern-txt": "Vergelijk je patroon met een aantal standaardmaten om mogelijke pasproblemen te vinden", - "app.recreatePattern": "Maak patroon opnieuw", - "app.recreatePattern-txt": "Kies een ander persoon en maak dit patroon opnieuw voor deze persoon", - "app.editOwnPatternsOnly": "Je kan alleen je eigen patronen bewerken", - "app.editOwnPatternsOnly-txt": "Je kan dit patroon niet bewerken omdat het niet van jou is. Maar je kan het als basis gebruiken om je eigen patroon te maken.", - "app.updateNotes-txt": "Hou de notities die je bij je patroon maakt up to date", - "app.franceWarning": "Let op, Franse gebruikers", - "app.franceWarning-txt": "Verschillende Franse e-mailproviders- onder andere free.fr, laposte.net, orange.fr en sfr.fr- houden onze e-mails regelmatig tegen.", - "app.emailNotReceived": "Indien je de activatiemail niet ontvangt, laat ons dan iets weten zodat we je kunnen helpen.", - "app.error": "Error", - "app.info": "Info", - "app.warning": "Waarschuwing", - "app.debug": "Debug", - "app.unsubscribe": "Uitschrijven", - "app.slogan-come": "Kom voor de naaipatronen", - "app.slogan-stay": "Blijf voor het gezelschap", - "cfp.author": "Auteur", - "cfp.githubRepo": "GitHub repository", - "cfp.packageManager": "Pakketbeheerder", - "cfp.patternName": "Patroon naam", - "cfp.patternType": "Patroon type", - "cfp.patternCreated": "Het skelet van je patroon is aangemaakt in", - "cfp.runTheseCommands": "To get started, run this command", - "cfp.startRollup": "In één terminal, start de rollup bundler in de volgmodus", - "cfp.startWebpack": "It will enter the 'example' folder, and start the development environment.", - "cfp.devDocsAvailableAt": "Documentatie voor ontwikkelaars is beschikbaar op", - "cfp.talkToUs": "For questions, feedback or suggestions, join our Discord server", - "cfp.draftYourPattern": "Teken je patroon", - "cfp.testYourPattern": "Test je patroon", - "cfp.draftThing": "Draft {thing}", - "cfp.testThing": "Test {thing}", - "cfp.renderInBrowser": "Klik hieronder om je patroon in de browser te tonen.", - "cfp.weWillReRender": "Wanneer je wijzigingen maakt, renderen we opnieuw.", - "cfp.youCan": "Je kan", - "cfp.enterMeasurements": "Maten manueel invoeren", - "cfp.preloadMeasurements": "Een set van maten inladen", - "cfp.size": "Maat", - "cfp.noRequiredMeasurements": "Dit patroon heeft geen vereiste maten", - "cfp.howtoAddMeasurements": "Om maten te vereisen, voeg je ze toe aan de measurements sectie van het configuratiebestand van het patroon.", - "cfp.seeDocsAt": "Documentatie over dit onderwerp is beschikbaar op", - "cfp.clearDesignMode": "Ontwerp modus wissen", - "cfp.designMode": "Ontwerp modus", - "cfp.exportMode": "Export modus", - "cfp.thingIsEnabled": "{thing} is ingeschakeld", - "cfp.thingIsDisabled": "{thing} is uitgeschakeld", - "cfp.turnOn": "Inschakelen", - "cfp.turnOff": "Uitschakelen", - "cfp.validNameWarning": "Kies een andere naam, deze zou voor problemen zorgen.\nWe (her)gebruiken de patroonnaam als naam voor het NPM-pakket.\nPakketnamen mogen geen hoofdletters of speciale tekens bevatten.\nDus geef je patroon een geschikte naam, zoals:", - "designs.aaron.d": "Aaron is een sportief mouwloos hemdje of onderhemd.", - "designs.aaron.t": "Aaron Onderhemd", - "designs.albert.d": "Albert is an apron.", - "designs.albert.t": "Albert apron", - "designs.bella.d": "Bella is a basic body block for people with breasts.", - "designs.bella.t": "Bella body block", - "designs.benjamin.d": "Benjamin is een vlinderdas met vier verschillende mogelijke vormen.", - "designs.benjamin.t": "Benjamin vlinderdas", - "designs.bent.d": "Dit patroon met tweedelige mouw is de basis voor onze jassen- en jasjespatronen.", - "designs.bent.t": "Bent Basisvorm", - "designs.breanna.d": "Breanna is a basic body block for people with breasts.", - "designs.breanna.t": "Breanna basispatroon", - "designs.brian.d": "Brian is a basic body block for people without breasts.", - "designs.brian.t": "Brian Basisvorm", - "designs.bruce.d": "Bruce is een boxershort die zowel comfortabel als stylish is.", - "designs.bruce.t": "Bruce Boxershort", - "designs.carlita.d": "The version for breasts of our Carlton coat, aka Sherlock Holmes coat.", - "designs.carlita.t": "Carlita jas", - "designs.carlton.d": "Voor als je Sherlock Holmes wil spelen, of gewoon een heel mooie jas zoekt.", - "designs.carlton.t": "Carlton jas", - "designs.cathrin.d": "Cathrin is een underbust korset of waist trainer.", - "designs.cathrin.t": "Cathrin korset", - "designs.charlie.d": "Charlie is a chino trouser pattern.", - "designs.charlie.t": "Charlie chinos", - "designs.cornelius.d": "Cornelius are cycling breeches based on the Keystone drafting method.", - "designs.cornelius.t": "Cornelius cycling breeches", - "designs.diana.d": "Diana is een top met een gedrapeerde halslijn.", - "designs.diana.t": "Diana top met drapage", - "designs.florent.d": "Florent is een klassieke platte pet, rond bovenaan met een kleine klep vooraan.", - "designs.florent.t": "Florent pet", - "designs.florence.d": "Florence is een mondmasker", - "designs.florence.t": "Florence mondmasker", - "designs.holmes.d": "Voor als je Sherlock Holmes wil spelen, of gewoon een leuk hoedje zoekt", - "designs.holmes.t": "Holmes deerstalker hat", - "designs.hortensia.d": "Hortensia is a handbag", - "designs.hortensia.t": "Hortensia handbag", - "designs.huey.d": "Huey is een trui met kap met een rits, en optionele voorzakken.", - "designs.huey.t": "Huey hoodie", - "designs.hugo.d": "Hugo is een trui met kap en een raglanmouw.", - "designs.hugo.t": "Hugo hoodie", - "designs.jaeger.d": "Jaeger is een sportief jasje met twee knopen en opgestikte zakken.", - "designs.jaeger.t": "Jaeger jasje", - "designs.paco.d": "Paco is een casual maar stijlvolle zomerbroek", - "designs.paco.t": "Paco broek", - "designs.penelope.d": "Penelope is een smalle rok, met of zonder split achteraan.", - "designs.penelope.t": "Penelope potloodrok", - "designs.sandy.d": "Sandy is een veelzijdig patroon voor een cirkelrok", - "designs.sandy.t": "Sandy cirkelrok", - "designs.shin.d": "Shin are athletic swim trunks", - "designs.shin.t": "Shin zwembroek", - "designs.simon.d": "Simon is a highly adaptable shirt pattern for people without breasts.", - "designs.simon.t": "Simon hemd", - "designs.simone.d": "Simone is simon, adapted for breasts.", - "designs.simone.t": "Simone hemd", - "designs.sven.d": "Sven is een no-nonsense basic trui.", - "designs.sven.t": "Sven sweater", - "designs.tamiko.d": "Tamiko is een top die geen stof verspilt.", - "designs.tamiko.t": "Tamiko top", - "designs.teagan.d": "Teagan is een patroon voor een aansluitend t-shirt", - "designs.teagan.t": "Teagan T-shirt", - "designs.theo.d": "Theo is een klassiek broekpatroon.", - "designs.theo.t": "Theo Broek", - "designs.titan.d": "Titan is een unisex basispatroon voor een broek zonder nepen", - "designs.titan.t": "Titan basispatroon broek", - "designs.trayvon.d": "Trayvon is een das zoals het hoort, voor een professioneel resultaat.", - "designs.trayvon.t": "Trayvon das", - "designs.ursula.d": "Ursula is a basic, highly-customizable underwear pattern", - "designs.ursula.t": "Ursula undies", - "designs.wahid.d": "Wahid is een klassiek aansluitend gilet.", - "designs.wahid.t": "Wahid gilet", - "designs.waralee.d": "Waralee is een wikkelbroek", - "designs.waralee.t": "Waralee wikkelbroek", - "email.chatWithUs": "Chat met ons", - "email.emailchangeActionText": "Bevestig uw nieuwe e-mailadres", - "email.emailchangeCopy1": "U heeft verzocht het e-mailadres dat aan uw account is gekoppeld te wijzigen op freesewing.org .

Voordat we dat doen, moet u uw nieuwe e-mailadres bevestigen. Klik op de onderstaande link om dat te doen:", - "email.emailchangeHeaderOpeningLine": "We zorgen ervoor dat we u kunnen bereiken wanneer dat nodig is", - "email.emailchangeHiddenIntro": "Laten we uw nieuwe e-mailadres bevestigen", - "email.emailchangeSubject": "Bevestig uw nieuwe e-mailadres", - "email.emailchangeTitle": "Bevestig uw nieuwe e-mailadres", - "email.emailchangeWhy": "You received this E-mail because you changed the E-mail address linked to your account on freesewing.org", - "email.footerCredits": "Gemaakt door joost & vrijwilligers met de financiële steun van onze Patrons ❤️ ", - "email.footerSlogan": "FreeSewing is een open source platform voor naaipatronen op maat", - "email.goodbyeCopy1": "Als je wilt delen waarom je vertrekt, kun je dit bericht beantwoorden.
Van onze kant zullen we je niet opnieuw lastig vallen.", - "email.goodbyeHeaderOpeningLine": "Weet gewoon dat je altijd terug kunt komen", - "email.goodbyeHiddenIntro": "Bedankt dat je freesewing.org een kans hebt gegeven", - "email.goodbyeSubject": "Vaarwel 👋", - "email.goodbyeTitle": "Bedankt dat je freesewing.org een kans hebt gegeven", - "email.goodbyeWhy": "U ontving deze e-mail als een laatste adieu na het verwijderen van uw account op freesewing.org", - "email.joostFromFreesewing": "Joost van FreeSewing", - "email.passwordresetActionText": "Krijg toegang tot uw account", - "email.passwordresetCopy1": "U bent uw wachtwoord voor uw account vergeten op freesewing.org.

Klik op de onderstaande link om uw wachtwoord opnieuw in te stellen:", - "email.passwordresetHeaderOpeningLine": "Maak je geen zorgen, deze dingen gebeuren met ons allemaal", - "email.passwordresetHiddenIntro": "Krijg toegang tot uw account", - "email.passwordresetSubject": "Krijg toegang tot uw account op freesewing.org", - "email.passwordresetTitle": "Stel uw wachtwoord opnieuw in en verkrijg opnieuw toegang tot uw account", - "email.passwordresetWhy": "U hebt deze e-mail ontvangen omdat u heeft gevraagd om uw wachtwoord opnieuw in te stellen op freesewing.org", - "email.questionsJustReply": "Zit je met vragen? Stuur ze dan als antwoord op deze E-mail. Ik ben steeds bereid om een handje te helpen. 🙂", - "email.signature": "Liefs,", - "email.signupActionText": "Bevestig je E-mail adres", - "email.signupCopy1": "Leuk dat je je hebt ingeschreven op freesewing.org.

Vooraleer we aan de slag kunnen, moeten we eerst je E-mail adres bevestigen. Klik op onderstaande link om dat te doen:", - "email.signupHeaderOpeningLine": "We zijn verheugd dat je deel wil uitmaken van de freesewing gemeenschap.", - "email.signupHiddenIntro": "Nu gewoon nog even je E-mail adres bevestigen", - "email.signupSubject": "Welkom bij freesewing.org", - "email.signupTitle": "Welkom aan boord", - "email.signupWhy": "Je ontving deze E-mail omdat je je zonet ingeschreven hebt op freesewing.org", - "errors.404": "De pagina waarnaar u op zoek bent, kan niet gevonden worden", - "errors.confirmationNotFound": "Als u op deze pagina bent aangekomen via de link in een bevestigingsmail, raden we u aan dit probleem te melden.", - "errors.emailExists": "We hebben al een gebruiker met dat email adres. Misschien wil u zich eerder aanmelden?", - "errors.networkError": "Backend of netwerk probleem", - "errors.notAValidImageFormat": "Geen geldig beeldformaat", - "errors.requestFailedWithStatusCode400": "Verzoek mislukt", - "errors.requestFailedWithStatusCode401": "Authenticatie mislukt", - "errors.requestFailedWithStatusCode403": "Verboden", - "errors.requestFailedWithStatusCode500": "Er was een onverwacht probleem. Rapporteer dit alstublieft.", - "errors.something": "Er ging iets mis", - "gdpr.compliant": "Freesewing.org respecteert jouw privacy en je rechten. We passen de Algemene Verordening Gegevensbescherming (AVG) van de Europese Unie (EU) toe.", - "gdpr.consent": "Toestemming", - "gdpr.consentForModelData": "Toestemming voor modelgegevens", - "gdpr.consentForProfileData": "Toestemming voor profielgegevens", - "gdpr.consentGiven": "Toestemming gegeven", - "gdpr.consentNotGiven": "Toestemming niet gegeven", - "gdpr.consentWhyAnswer": "Onder de AVG is voor het verwerken van je persoonlijke gegevens je toestemming vereist.", - "gdpr.createMyAccount": "Maak mijn account aan", - "gdpr.furtherReading": "Meer lezen", - "gdpr.modelQuestion": "Geeft je de toestemming voor je modelgegevens te verwerken?", - "gdpr.modelWarning": "Als u deze toestemming intrekt, verliest u toegang tot je modelgegevens en wordt de functionaliteit die ervan afhankelijk is uitgeschakeld.", - "gdpr.modelWhatAnswer": "Voor elk model hun lichaamsmaten en borst-instelling.", - "gdpr.modelWhatAnswerOptional": "Optioneel: een model afbeelding en de naam die je aan je model geeft.", - "gdpr.modelWhatQuestion": "Wat zijn modelgegevens?", - "gdpr.modelWhyAnswer": "Voor het tekenen van op maat gemaakte naaipatronen hebben we lichaamsmaten nodig.", - "gdpr.noConsentNoAccount": "Zonder deze toestemming kunnen we je account niet aanmaken", - "gdpr.noConsentNoPatterns": "Zonder deze toestemming kunt u geen patronen creëren", - "gdpr.noIDoNot": "Neen, ik geef geen toestemming", - "gdpr.openDataInfo": "Deze gegevens worden gebruikt om de menselijke vorm in al zijn vormen te bestuderen en te begrijpen, zodat we betere naaipatronen en beter passende kledingstukken kunnen krijgen. Hoewel deze gegevens anoniem zijn, hebt u het recht hiertegen bezwaar te maken.", - "gdpr.openDataQuestion": "Deel geanonimiseerde lichaamsmaten als open data", - "gdpr.profileQuestion": "Geeft je de toestemming om je profielgegevens te verwerken?", - "gdpr.profileShareAnswer": " Nee , nooit.", - "gdpr.profileTimingAnswer": " 12 maanden na je laatste aanmelding of totdat je je account verwijdert of deze toestemming intrekt.", - "gdpr.profileWarning": "Als u deze toestemming intrekt, worden al je gegevens verwijderd. Het heeft precies hetzelfde effect als het verwijderen van je account.", - "gdpr.profileWhatAnswerOptional": "Optioneel: een profielfoto, bio, en accounts voor sociale media", - "gdpr.profileWhatAnswer": "Je e-mailadres , gebruikersnaam en wachtwoord .", - "gdpr.profileWhatQuestion": "Wat zijn profielgegevens?", - "gdpr.profileWhyAnswer": "Om je te authenticeren, je te contacteren wanneer nodig, en een gemeenschap te bouwen.", - "gdpr.readMore": "Lees onze privacyverklaring voor meer informatie.", - "gdpr.readRights": "Lees alles over uw rechten voor meer informatie.", - "gdpr.revokeConsent": "Toestemming intrekken", - "gdpr.shareQuestion": "Delen we ze met anderen?", - "gdpr.timingQuestion": "Hoe lang houden we ze?", - "gdpr.whatYouNeedToKnow": "Wat je moet weten", - "gdpr.whyQuestion": "Waarom hebben we ze nodig?", - "gdpr.yesIDoObject": "Ja, ik maak bezwaar", - "gdpr.yesIDo": "Ja, ik geef mijn toestemming", - "gdpr.openData": "Opmerking: FreeSewing publiceert geanonimmiseerde maten als open gegevens voor wetenschappelijk onderzoek. U heeft het recht om hier bezwaar tegen te maken", - "i18n.de": "Duits", - "i18n.en": "Engels", - "i18n.es": "Spaans", - "i18n.fr": "Frans", - "i18n.nl": "Nederlands", - "jargon.basting.d": "Zie Driegen in deDocumentatie naaien", - "jargon.basting.term": "driegen", - "jargon.coverlock.d": "Zie Coverlock in deDocumentatie naaien", - "jargon.coverlock.term": "coverlock", - "jargon.cutting.d": "Zie Knippen in deDocumentatie naaien", - "jargon.cutting.term": "knippen", - "jargon.darts.d": "Zie Nepen in deDocumentatie naaien", - "jargon.darts.term": "nepen", - "jargon.doubleWeltPockets.d": "Zie Dubbele paspelzak in deDocumentatie naaien", - "jargon.doubleWeltPockets.term": "dubbele paspelzak", - "jargon.ease.d": "Zie Overwijdte in deDocumentatie naaien", - "jargon.ease.term": "overwijdte", - "jargon.fabricGrain.d": "Zie Draadrichting in deDocumentatie naaien", - "jargon.fabricGrain.term": "draadrichting", - "jargon.goodSidesTogether.d": "Zie Goede kanten op elkaar bij de Documentatie naaien", - "jargon.goodSidesTogether.term": "goede kanten op elkaar", - "jargon.onTheFold.d": "Zie Aan de stofvouw bij de Documentatie naaien", - "jargon.onTheFold.term": "aan de stofvouw", - "jargon.hemming.d": "Zie Zomen in deDocumentatie naaien", - "jargon.hemming.term": "zomen", - "jargon.jersey.d": "Zie Jersey in deDocumentatie naaien", - "jargon.jersey.term": "jersey", - "jargon.knitBinding.d": "Zie Jersey biezen in deDocumentatie naaien", - "jargon.knitBinding.term": "jersey biezen", - "jargon.knitFabric.d": "Zie Gebreide stof in deDocumentatie naaien", - "jargon.knitFabric.term": "gebreide stof", - "jargon.pinning.d": "Zie Spelden in deDocumentatie naaien", - "jargon.pinning.term": "spelden", - "jargon.rayon.d": "Zie Rayon in deDocumentatie naaien", - "jargon.rayon.term": "rayon", - "jargon.sa.d": "Zie Naadtoeslag in deDocumentatie naaien", - "jargon.sa.term": "naadtoeslag", - "jargon.serger.d": "Zie Serger/Overlock in deDocumentatie naaien", - "jargon.serger.term": "serger/overlock", - "jargon.topstitching.d": "Zie Sierstiksel in deDocumentatie naaien", - "jargon.topstitching.term": "sierstiksel", - "jargon.trimming.d": "Zie Bijknippen in deDocumentatie naaien", - "jargon.trimming.term": "bijknippen", - "jargon.twinNeedle.d": "Zie Tweelingnaald in deDocumentatie naaien", - "jargon.twinNeedle.term": "tweelingnaald", - "jargon.zigZag.d": "Zie Zigzagsteek in deDocumentatie naaien", - "jargon.zigZag.term": "zigzagsteek", - "jargon.freesewing.d": "FreeSewing is een open source platform voor naaipatronen op maat", - "jargon.freesewing.term": "freesewing", - "jargon.patternOptions.d": "De patroon opties staan je toe het ontwerp van het patroon aan te passen", - "jargon.patternOptions.term": "patroon opties", - "jargon.draftSettings.d": "De instellingen patroontekening geven je controle over goe een patroon gegenereerd wordt", - "jargon.draftSettings.term": "instellingen patroontekening", - "jargon.patrons.d": "Mecenassen ondersteunen FreeSewing financieel. Het zijn loyale supporters die zorgen voor een duurzame toekomst voor freesewing.org, onze code, onze patronen en onze gemeenschap.", - "jargon.patrons.term": "mecenas", - "jargon.msf.d": "Médecins Sans Frontières/Artsen Zonder Grenzen - Ziemsf.org", - "jargon.msf.term": "msf", - "m.ankle": "Omtrek Enkel", - "m.biceps": "Omtrek biceps", - "m.bustFront": "Buste voor", - "m.bustSpan": "Borstwijdte", - "m.chest": "Borstomtrek", - "m.crossSeam": "Kruisnaad", - "m.crossSeamFront": "Kruisnaad vooraan", - "m.head": "Hoofdomtrek", - "m.heel": "Omtrek Hiel", - "m.highBustFront": "Hoge buste vooraan", - "m.highBust": "Hoge borstomtrek", - "m.hips": "Heupomtrek", - "m.hpsToBust": "HPS tot buste", - "m.hpsToWaistBack": "HPS tot taille achter", - "m.hpsToWaistFront": "HPS tot taille voor", - "m.inseam": "Binnenbeennaad", - "m.knee": "Omtrek knie", - "m.neck": "Nekomtrek", - "m.seat": "Omtrek zitvlak", - "m.seatBack": "Zitvlak achterkant", - "m.crotchDepth": "Diepte kruis", - "m.shoulderSlope": "Schouderhelling", - "m.shoulderToElbow": "Schouder tot elleboog", - "m.shoulderToShoulder": "Schouder tot schouder", - "m.shoulderToWrist": "Schouder tot pols", - "m.underbust": "Onderborstomtrek", - "m.upperLeg": "Omtrek bovenbeen", - "m.waist": "Omtrek taille", - "m.waistBack": "Taille achteraan", - "m.waistToFloor": "Taille tot vloer", - "m.waistToHips": "Taille tot heupen", - "m.waistToKnee": "Taille tot knie", - "m.waistToSeat": "Taille tot zitvlak", - "m.waistToUnderbust": "Taille tot onderbuste", - "m.waistToUpperLeg": "Taille tot bovenbeen", - "m.wrist": "Polsomtrek", - "og.advanced": "Geavanceerd", - "og.armhole": "Armhole", - "og.closure": "Sluiting", - "og.collar": "Kraag", - "og.construction": "Constructie", - "og.cuffs": "Manchetten", - "og.darts": "Darts", - "og.elastic": "Elastiek", - "og.fit": "Pasvorm", - "og.pockets": "Zakken", - "og.preferences": "Voorkeuren", - "og.sleevecap": "Mouwkop", - "og.sleeves": "Mouwen", - "og.style": "Stijl", - "og.backPockets": "Back pockets", - "og.frontPockets": "Front pockets", - "og.waistband": "Waistband", - "og.fly": "Fly", - "parts.back": "Rug", - "parts.backBase": "Basis rug", - "parts.base": "Basis", - "parts.bentBack": "Achterzijde Bent", - "parts.bentBase": "Basis Bent", - "parts.bentFront": "Voorzijde Bent", - "parts.bentSleeve": "Mouw Bent", - "parts.bentTopSleeve": "Bovenmouw Bent", - "parts.bentUnderSleeve": "Ondermouw Bent", - "parts.buttonholePlacket": "Knoopsgatenpat", - "parts.buttonPlacket": "Knopenpad", - "parts.collar": "Kraag", - "parts.collarStand": "Kraagstaander", - "parts.cuff": "Manchette", - "parts.fabricTail": "Stof staart", - "parts.fabricTip": "Stof tip", - "parts.frontBase": "Basis voorzijde", - "parts.frontFacing": "Beleg vooraan", - "parts.front": "Voorzijde", - "parts.frontLeft": "Voorzijde links", - "parts.frontLining": "Voering vooraan", - "parts.frontRight": "Voorzijde rechts", - "parts.hoodCenter": "Capuchon midden", - "parts.hood": "Capuchon", - "parts.hoodSide": "Capuchon zijkant", - "parts.inset": "Inzet", - "parts.interfacingTail": "Interfacing staart", - "parts.interfacingTip": "Interfacing tip", - "parts.liningTail": "Voering staart", - "parts.liningTip": "Voering tip", - "parts.loop": "Lus", - "parts.panel1": "Deel 1", - "parts.panel2": "Deel 2", - "parts.panel3": "Deel 3", - "parts.panel4": "Deel 4", - "parts.panel5": "Deel 5", - "parts.panel6": "Deel 6", - "parts.panels": "Delen", - "parts.pocketBag": "Zak", - "parts.pocketFacing": "Zak doublure", - "parts.pocketInterfacing": "Interfacing zak", - "parts.pocket": "Zak", - "parts.pocketWelt": "Paspel zak", - "parts.side": "Zijkant", - "parts.sleeveBase": "Basis mouw", - "parts.sleevecap": "Mouwkop", - "parts.sleevePlacketOverlap": "Mouwsplit bovendeel", - "parts.sleevePlacketUnderlap": "Mouwsplit onder", - "parts.sleeve": "Mouw", - "parts.topSleeve": "Bovenmouw", - "parts.top": "Top", - "parts.underCollar": "Onderkraag", - "parts.underSleeve": "Ondermouw", - "parts.waistband": "Tailleband", - "parts.yoke": "Schouderpas", - "patterns.back": "Achterzijde", - "patterns.bottomPanel": "Bottom Panel", - "patterns.buttonholePlacket": "Knoopsgatenpat", - "patterns.buttonPlacket": "Knopenpat", - "patterns.collarAndUndercollar": "Kraag en Onderkraag", - "patterns.collarStand": "Kraagstaander", - "patterns.cuff": "Manchet", - "patterns.cutOneStripToFinishTheNeckOpening": "Knip een strip om de halsopening te voltooien", - "patterns.cutTwoStripsToFinishTheArmholes": "Knip twee stroken om de armsgaten af te werken", - "patterns.cutUndercollarSlightlySmaller": "Knip de onderkraag een beetje kleiner", - "patterns.frontBackPanel": "Front and Back Panel", - "patterns.frontLeft": "Voorzijde links", - "patterns.frontRight": "Voorzijde rechts", - "patterns.front": "Voorzijde", - "patterns.fullLengthFromHps": "Afgewerkte lengte (vanaf HPS)", - "patterns.handleWidth": "Width of the handles", - "patterns.hello": "Hallo", - "patterns.hoodCenter": "Midden kap", - "patterns.hoodSide": "Zijkant kap", - "patterns.inset": "Inzet", - "patterns.length": "Lengte", - "patterns.matchHere": "Laat de stof langs deze lijn uitkomen", - "patterns.pocketFacing": "Zak beleg", - "patterns.pocket": "Zak", - "patterns.sideOfTheCollarStand": "Kant van de kraagstaander", - "patterns.sidePanelReinforcement": "Side Reinforcement Panel", - "patterns.sidePanel": "Side Panel", - "patterns.side": "Zijkant", - "patterns.sleeve": "Mouw", - "patterns.sleevePlacketOverlap": "Mouwsplit boven", - "patterns.sleevePlacketUnderlap": "Mouwsplit onder", - "patterns.strap": "Handle", - "patterns.strapLength": "Length of the Handles", - "patterns.vent": "Vent", - "patterns.waistband": "Tailleband", - "patterns.width": "Breedte", - "patterns.yoke": "Schouderpas", - "patterns.zipperPanel": "Zipper Panel", - "patterns.zipperSize": "Standard zipper size", - "patterns.cut": "Knip", - "patterns.cutOnFoldAndGrainline": "Knip op stofvouw / Draadrichting", - "patterns.cutOnFold": "Knip op stofvouw", - "patterns.grainline": "Draadrichting", - "patterns.onFold": "Aan de stofvouw", - "patterns.supportFreesewingBecomeAPatron": "Steun FreeSewing, wordt een Patron", - "patterns.theBlackOutsideOfThisBoxShouldMeasure": "De buitenkant van dit kader meet", - "patterns.theWhiteInsideOfThisBoxShouldMeasure": "De binnenkant van dit kader meet", - "settings.advanced.d": "Bepaalt of de geavanceerde patroonopties wel of niet getoond worden", - "settings.advanced.t": "Expert modus", - "settings.paperless.d": "Hiermee tekent u een patroon met alle afmetingen zodat u het op stof of een ander medium kunt overbrengen zonder dat u het hoeft af te drukken", - "settings.paperless.t": "Papierloos", - "settings.sa.d": "Bepaalt de hoeveelheid naadtoeslag die is inbegrepen in uw patroon", - "settings.sa.t": "Naadtoeslag", - "settings.locale.d": "Bepaalt de taal die op uw patroon wordt gebruikt", - "settings.locale.t": "Taal", - "settings.only.d": "Hiermee kunt u precies bepalen welke patroononderdelen in uw patroon worden opgenomen", - "settings.only.t": "Inhoud", - "settings.units.d": "Bepaalt de eenheden die op uw patroon worden gebruikt", - "settings.units.t": "Eenheden", - "settings.margin.d": "Bepaalt de marge rond patroondelen", - "settings.margin.t": "Marge", - "settings.complete.d": "Bepaalt hoe gedetailleerd het patroon is; Ofwel een patroon met alle details, ofwel een eenvoudiger patroon met slechts de contouren van de verschillende patroondelen", - "settings.complete.t": "Detail", - "settings.layout.d": "Bepaalt hoe de afzonderlijke patroondelen op uw patroon worden geplaatst", - "settings.layout.t": "Layout", - "settings.debug.d": "Schakel debug in om extra informatie te krijgen over hoe je patroon tot stand kwam", - "settings.debug.t": "Debug", - "becomeAPatron": "Word mecenas", - "blog": "Blog", - "collection": "Collectie", - "colors": "Kleuren", - "community": "Gemeenschap", - "designs": "Ontwerpen", - "docs": "Documentatie", - "forByMakers": "Voor/Door makers", - "home": "Start", - "inspiration": "Inspiratie", - "language": "Taal", - "search": "Zoeken", - "showcase": "Voorbeelden", - "support": "Ondersteuning", - "supportUs": "Steun ons", - "theme": "Pallet", - "makes": "projecten", - "onX": "Op {{x}}", - "ourX": "Onze {{x}}", - "xThis": "{{x}} dit", - "yourX": "Jouw {{x}}", - "note": "Noteer", - "tip": "Tip", - "warning": "Waarschuwing", - "fixme": "Fixme", - "link": "Link", - "related": "Gerelateerd", - "by": "Door", - "developerBlog": "Blog voor ontwikkelaars", - "made": "Maakte", - "makerBlog": "Maker blog", - "wrote": "Schreef", - "theme.light": "Helder", - "theme.dark": "Donker", - "theme.bureaucrats": "Bureaucraten", - "theme.hax0r": "Computerclub", - "theme.kindergarten": "Kleuterschool", - "cutting": "Uitknippen", - "fabricOptions": "Stofkeuze", - "instructions": "Instructies", - "patternOptions": "Patroon opties", - "requiredMeasurements": "Vereiste maten", - "whatYouNeed": "Wat je nodig hebt", - "welcome.units": "Selecteer de units die je wil gebruiken", - "welcome.username": "Kies een gebruikersnaam", - "welcome.avatar": "Voeg een profielfoto toe", - "welcome.bio": "Vertel ons een beetje over jezelf", - "welcome.social": "Laat ons weten waar we je kunnen volgen", - "welcome.newsletter": "Geef ons je voorkeur met betrekking tot de nieuwsbrief", - "welcome.letUsSetupYourAccount": "Laten we je account instellen.", - "welcome.walkYouThrough": "We zullen je door de volgende stappen begeleiden:", - "welcome.someOptional": "Hoewel al deze stappen optioneel zijn, raden we je toch aan alles te doen om het meeste uit FreeSewing te halen.", - "aaron.armholeDrop.d": "Verlaag het armsgat met deze hoeveelheid. Een negatieve waarde maakt het hoger.", - "aaron.armholeDrop.t": "Armsgat verlagen/verhogen", - "aaron.backlineBend.d": "Bepaalt de vorm/curve van de achterkant van het armsgat.", - "aaron.backlineBend.t": "Vorm armsgat achter", - "aaron.hipsEase.d": "De hoeveelheid overwijdte aan je heupen.", - "aaron.hipsEase.t": "Overwijdte heup", - "aaron.necklineBend.d": "Bepaalt de vorm/kromming van de halslijn aan het middenvoor.", - "aaron.necklineBend.t": "Vorm halslijn", - "aaron.necklineDrop.d": "De hoeveelheid waarmee de halslijn vooraan weggesneden wordt.", - "aaron.necklineDrop.t": "Hoogte halslijn", - "aaron.shoulderStrapPlacement.d": "Bepaalt of de schouderbandjes dichter bij de nek (lager cijfer) of dichter bij de schouder (hoger cijfer) geplaatst worden.", - "aaron.shoulderStrapPlacement.t": "Plaatsing schouderbandjes", - "aaron.shoulderStrapWidth.d": "De breedte van de schouderbandjes.", - "aaron.shoulderStrapWidth.t": "Breedte schouderbandjes", - "aaron.stretchFactor.d": "Bepaalt hoeveel kleiner de horizontale omtrek is dan je lichaamsmaten. In andere woorden, hoe strak alles zit.", - "aaron.stretchFactor.t": "Rek", - "albert.backOpening.d": "Controls the opening at the back of the apron", - "albert.backOpening.t": "Back opening", - "albert.chestDepth.d": "Controls the length of the straps", - "albert.chestDepth.t": "Strap length", - "albert.lengthBonus.d": "Controls the length of the apron", - "albert.lengthBonus.t": "Length bonus", - "albert.bibLength.d": "Controls the length of the bib", - "albert.bibLength.t": "Bib length", - "albert.bibWidth.d": "Controls the width of the bib", - "albert.bibWidth.t": "Bib width", - "albert.strapWidth.d": "Controls the width of the strap", - "albert.strapWidth.t": "Strap width", - "bella.chestEase.d": "Controls the amount of ease at the fullest part of your chest", - "bella.chestEase.t": "Chest ease", - "bella.waistEase.d": "Controls the amount of ease at your waist", - "bella.waistEase.t": "Waist ease", - "bella.bustSpanEase.d": "Controls the amount of (horizontal) ease added to your bust span when locating the bust point.", - "bella.bustSpanEase.t": "Bust span ease", - "bella.backDartHeight.d": "Controls the height of the back dart", - "bella.backDartHeight.t": "Back dart height", - "bella.bustDartLength.d": "Controls the length of the bust dart", - "bella.bustDartLength.t": "Bust dart length", - "bella.waistDartLength.d": "Controls the length of the waist dart", - "bella.waistDartLength.t": "Waist dart length", - "bella.bustDartCurve.d": "Controls the curvature of the bust dart", - "bella.bustDartCurve.t": "Bust dart curve", - "bella.armholeDepth.d": "Controls the depth of the armhole", - "bella.armholeDepth.t": "Armhole depth", - "bella.backArmholeSlant.d": "Slightly rotates the armhole around its pitch point", - "bella.backArmholeSlant.t": "Back armhole slant", - "bella.backArmholeCurvature.d": "Controls how deep the armhole is scooped out at the back bottom", - "bella.backArmholeCurvature.t": "Back armhole curvature", - "bella.frontArmholePitchDepth.d": "Tweaks the horizontal placement of the front armhole pitch point", - "bella.frontArmholePitchDepth.t": "Front armhole pitch depth", - "bella.backArmholePitchDepth.d": "Tweaks the horizontal placement of the back armhole pitch point", - "bella.backArmholePitchDepth.t": "Back armhole pitch depth", - "bella.backNeckCutout.d": "Controls how deep the neck opening is scooped out at at the back", - "bella.backNeckCutout.t": "Back neck cutout", - "bella.backHemSlope.d": "Controls the slope of the hem at the back", - "bella.backHemSlope.t": "Back hem slope", - "bella.frontShoulderWidth.d": "Controls the narrowness of the front shoulders relative to the back", - "bella.frontShoulderWidth.t": "Front shoulder width", - "bella.highBustWidth.d": "Allows you to tweak the hight bust width at the front", - "bella.highBustWidth.t": "High bust width", - "benjamin.adjustmentRibbon.d": "Of je wel of geen aanpaslintje wil", - "benjamin.adjustmentRibbon.t": "Aanpaslintje", - "benjamin.bandLength.d": "Lengte van de band", - "benjamin.bandLength.t": "Lengte band", - "benjamin.tipWidth.d": "Breedte van de punten", - "benjamin.tipWidth.t": "Breedte punten", - "benjamin.knotWidth.d": "Breedte van de knoop", - "benjamin.knotWidth.t": "Breedte knoop", - "benjamin.bowLength.d": "Lengte van de strik (wanneer geknoopt)", - "benjamin.bowLength.t": "Lengte strik", - "benjamin.bowStyle.d": "Stijl van de strik", - "benjamin.bowStyle.t": "Stijl strik", - "benjamin.endStyle.d": "Stijl van de puntjes van de strik", - "benjamin.endStyle.t": "Stijl punt", - "bent.sleeveBend.d": "Buiging van de mouw aan de elleboog", - "bent.sleeveBend.t": "Mouw kromming", - "bent.sleevecapHeight.d": "Bepaalt de hoogte van de mouwkop", - "bent.sleevecapHeight.t": "Hoogte mouwkop", - "breanna.shoulderDart.d": "Whether or not to inlude a dart at the shoulder to round the back", - "breanna.shoulderDart.t": "Shoulder dart", - "breanna.shoulderDartSize.d": "The size of the shoulder dart", - "breanna.shoulderDartSize.t": "Shoulder dart size", - "breanna.shoulderDartLength.d": "The length of the shoulder dart", - "breanna.shoulderDartLength.t": "Shoulder dart length", - "breanna.waistDart.d": "Whether or not to inlude a dart at the waist to round the back", - "breanna.waistDart.t": "Waist dart", - "breanna.waistDartSize.d": "The size of the waist dart", - "breanna.waistDartSize.t": "Waist dart size", - "breanna.waistDartLength.d": "The length of the waist dart", - "breanna.waistDartLength.t": "Waist dart length", - "breanna.verticalEase.d": "The amount of ease to distribute along the length of the garment", - "breanna.verticalEase.t": "Vertical ease", - "breanna.waistEase.d": "The amount of ease at the waist", - "breanna.waistEase.t": "Waist ease", - "breanna.primaryBustDart.d": "Where to place the bust dart to shape the chest", - "breanna.primaryBustDart.t": "Bust dart", - "breanna.primaryBustDartLength.d": "The length of the bust dart", - "breanna.primaryBustDartLength.t": "Bust dart length", - "breanna.secondaryBustDart.d": "Optionally include a secondary bust dart to distribute the shaping of the chest", - "breanna.secondaryBustDart.t": "Secondary bust dart", - "breanna.secondaryBustDartLength.d": "The length of the secondary bust dart", - "breanna.secondaryBustDartLength.t": "Secondary bust dart length", - "breanna.primaryBustDartShaping.d": "Controls the balance between the main and secondary bust darts", - "breanna.primaryBustDartShaping.t": "Bust darts shaping", - "brian.acrossBackFactor.d": "Geeft controle over de breedte van je rug als een factor van je schouder tot schouder maat.", - "brian.acrossBackFactor.t": "Rugwijdte", - "brian.armholeDepthFactor.d": "Controleert de diepte van het armsgat. Hoe hoger deze waarde, hoe dieper het armsgat.", - "brian.armholeDepthFactor.t": "Diepte armsgat factor", - "brian.backNeckCutout.d": "Hoe diep de nek wordt uitgesneden aan de rug", - "brian.backNeckCutout.t": "Hals uitsnijding achteraan", - "brian.bicepsEase.d": "De hoeveelheid overwijdte aan je bovenarm. Let op dat we proberen dit te respecteren, maar dat de mouw in het armsgat laten passen voorrang krijgt op de hoeveelheid overwijdte. ", - "brian.bicepsEase.t": "Overwijdte biceps", - "brian.collarEase.d": "De hoeveelheid overwijdte rond je nek.", - "brian.collarEase.t": "Overwijdte kraag", - "brian.chestEase.d": "De hoeveelheid overwijdte aan je borst.", - "brian.chestEase.t": "Overwijdte borst", - "brian.cuffEase.d": "De hoeveelheid overwijdte aan je pols.", - "brian.cuffEase.t": "Overwijdte manchet", - "brian.frontArmholeDeeper.d": "Hoeveel dieper moet het armsgat vooraan zijn uitgesneden, in vergelijking met het armsgat achteraan.", - "brian.frontArmholeDeeper.t": "Extra uitsnijding armsgat vooraan", - "brian.lengthBonus.d": "De hoeveelheid waarmee het kledingstuk verlengd wordt. Een negatieve waarde maakte het korter.", - "brian.lengthBonus.t": "Bonus lengte", - "brian.s3Collar.d": "Increase this option to shift the shoulder seam forward on the collar side. Decreasing it shifts it backwards.", - "brian.s3Collar.t": "Shoulder seam shift: collar side", - "brian.s3Armhole.d": "Increase this option to shift the shoulder seam forward on the armhole side. Decreasing it shifts it backwards.", - "brian.s3Armhole.t": "Shoulder seam shift: armhole side", - "brian.shoulderEase.d": "De hoeveelheid overwijdte aan je schouder. Dit vergroot de afstand van schouder tot schouder om ruimte te maken voor wat je onder je jas draagt.", - "brian.shoulderEase.t": "Overwijdte schouder", - "brian.shoulderSlopeReduction.d": "De hoeveelheid waarmee de helling van de schouder verminderd wordt om ruimte te maken voor epauletten.", - "brian.shoulderSlopeReduction.t": "Reductie helling schouder", - "brian.sleeveLengthBonus.d": "De hoeveelheid waarmee de mouw verlengd wordt. Een negatieve waarde zal ze korter maken.", - "brian.sleeveLengthBonus.t": "Bonus mouwlengte", - "brian.sleevecapEase.d": "Hoeveel langer de naad van de mouwkop is dan de naad van het armsgat.", - "brian.sleevecapEase.t": "Extra ruimte mouwkop", - "brian.sleevecapTopFactorX.d": "Bepaalt de horizontale locatie van de top van de mouwkop", - "brian.sleevecapTopFactorX.t": "Mouwkop top X", - "brian.sleevecapTopFactorY.d": "Controleert de hoogte van de mouwkop. Een hogere waarde heeft als resultaat een hogere en smallere mouwkop.", - "brian.sleevecapTopFactorY.t": "Mouwkop top X", - "brian.sleevecapBackFactorX.d": "Bepaalt de plaatsing op de X-as (horizontaal) van het ankerpunt van het achterste deel van de mouwkop", - "brian.sleevecapBackFactorX.t": "Mouwkop X achteraan", - "brian.sleevecapBackFactorY.d": "Bepaalt de plaatsing op de Y-as (verticaal) van het ankerpunt van het achterste deel van de mouwkop", - "brian.sleevecapBackFactorY.t": "Mouwkop Y achteraan", - "brian.sleevecapFrontFactorX.d": "Bepaalt de plaatsing op de X-as (horizontaal) van het ankerpunt van het voorste deel van de mouwkop", - "brian.sleevecapFrontFactorX.t": "Mouwkop X vooraan", - "brian.sleevecapFrontFactorY.d": "Bepaalt de plaatsing op de Y-as (verticaal) van het ankerpunt van het voorste deel van de mouwkop", - "brian.sleevecapFrontFactorY.t": "Mouwkop Y vooraan", - "brian.sleevecapQ1Offset.d": "Bepaalt de kromming van de mouwkop in het eerste quadrant (armsgat vooraan)", - "brian.sleevecapQ1Offset.t": "Mouwkop Q1 offset", - "brian.sleevecapQ2Offset.d": "Bepaalt de kromming van de mouwkop in het tweede quadrant (schouder vooraan)", - "brian.sleevecapQ2Offset.t": "Mouwkop Q2 offset", - "brian.sleevecapQ3Offset.d": "Bepaalt de kromming van de mouwkop in het derde quadrant (schouder achteraan)", - "brian.sleevecapQ3Offset.t": "Mouwkop Q3 offset", - "brian.sleevecapQ4Offset.d": "Bepaalt de kromming van de mouwkop in het vierde quadrant (armsgat vooraan)", - "brian.sleevecapQ4Offset.t": "Mouwkop Q4 offset", - "brian.sleevecapQ1Spread1.d": "Bepaalt de spreiding van de kromming in het eerste quadrant van de mouwkop, in de richting van het armsgat", - "brian.sleevecapQ1Spread1.t": "Mouwkop Q1 neerwaardse spreiding", - "brian.sleevecapQ1Spread2.d": "Bepaalt de spreiding van de kromming in het eerste quadrant van de mouwkop, in de richting van de shouder", - "brian.sleevecapQ1Spread2.t": "Mouwkop Q1 opwaardse spreiding", - "brian.sleevecapQ2Spread1.d": "Bepaalt de spreiding van de kromming in het tweede quadrant van de mouwkop, in de richting van het armsgat", - "brian.sleevecapQ2Spread1.t": "Mouwkop Q2 neerwaardse spreiding", - "brian.sleevecapQ2Spread2.d": "Bepaalt de spreiding van de kromming in het tweede quadrant van de mouwkop, in de richting van de shouder", - "brian.sleevecapQ2Spread2.t": "Mouwkop Q2 opwaardse spreiding", - "brian.sleevecapQ3Spread1.d": "Bepaalt de spreiding van de kromming in het derde quadrant van de mouwkop, in de richting van de shouder", - "brian.sleevecapQ3Spread1.t": "Mouwkop Q3 opwaardse spreiding", - "brian.sleevecapQ3Spread2.d": "Bepaalt de spreiding van de kromming in het derde quadrant van de mouwkop, in de richting van het armsgat", - "brian.sleevecapQ3Spread2.t": "Mouwkop Q3 neerwaardse spreiding", - "brian.sleevecapQ4Spread1.d": "Bepaalt de spreiding van de kromming in het vierde quadrant van de mouwkop, in de richting van de shouder", - "brian.sleevecapQ4Spread1.t": "Mouwkop Q4 opwaardse spreiding", - "brian.sleevecapQ4Spread2.d": "Bepaalt de spreiding van de kromming in het vierde quadrant van de mouwkop, in de richting van het armsgat", - "brian.sleevecapQ4Spread2.t": "Mouwkop Q4 neerwaardse spreiding", - "brian.sleeveWidthGuarantee.d": "Bepaalt hoeveel van de mouwbreedte we garanderen wanneer we de mouw aan het armsgat aanpassen.", - "brian.sleeveWidthGuarantee.t": "Gegarandeerde mouw breedte", - "bruce.bulge.d": "Maak de hoek groter voor meer ruimte in het kruisstuk.", - "bruce.bulge.t": "Kruisstuk", - "bruce.legBonus.d": "Extra lengte om aan de benen toe te voegen.", - "bruce.legBonus.t": "Bonus beenlengte", - "bruce.rise.d": "Hoeveelheid waarmee de taille verhoogd wordt. Een negatieve waarde zal de taille verlagen.", - "bruce.rise.t": "Hoogte", - "bruce.stretch.d": "Hoeveel kleiner de omtrek is dan je lichaamsmaten. In andere woorden, hoe strak alles zit.", - "bruce.stretch.t": "Rek", - "bruce.legStretch.d": "Voor het beste resultaat wil je de pijp wat strakker om je been.", - "bruce.legStretch.t": "Stretch pijp", - "bruce.backRise.d": "Het percentage waarmee de taille verhoogd wordt aan de rug.", - "bruce.backRise.t": "Hoogte achter", - "carlita.contour.d": "Controleert hoe nauw de prinsessennaad aansluit.", - "carlita.contour.t": "Contour", - "carlton.seatEase.d": "De hoeveelheid overwijdte aan je zitvlak", - "carlton.seatEase.t": "Overwijdte zitvlak", - "carlton.pocketPlacementHorizontal.d": "De horizontale plaatsing van de zakken", - "carlton.pocketPlacementHorizontal.t": "Plaatsing zakken (horizontaal)", - "carlton.pocketPlacementVertical.d": "De verticale plaatsing van de zakken", - "carlton.pocketPlacementVertical.t": "Plaatsing zakken (verticaal)", - "carlton.collarHeight.d": "De hoogte van de kraag", - "carlton.collarHeight.t": "Hoogte kraag", - "carlton.length.d": "De totale lengte", - "carlton.length.t": "Lengte", - "carlton.pocketFlapRadius.d": "De mate waarin de flap van de zak is afgerond", - "carlton.pocketFlapRadius.t": "Ronding zak flap", - "carlton.pocketRadius.d": "De mate waarin de zak is afgerond", - "carlton.pocketRadius.t": "Ronding zak", - "carlton.chestPocketHeight.d": "De hoogte van de borstzak", - "carlton.chestPocketHeight.t": "Hoogte borstzak", - "carlton.beltWidth.d": "De breedte van de riem", - "carlton.beltWidth.t": "Breedte riem", - "carlton.buttonSpacingHorizontal.d": "De spreiding van de knopen horizontaal. Bepaalt ook de mate waarin de sluiting vooraan overlapt", - "carlton.buttonSpacingHorizontal.t": "Spreiding knopen horizontaal", - "cathrin.panels.d": "Het aantal panelen. Meer panelen werken beter voor een ronder figuur.", - "cathrin.panels.t": "Aantal panelen", - "cathrin.waistReduction.d": "Hoeveel smaller je wil dat het korset je taille maakt.", - "cathrin.waistReduction.t": "Reductie taille", - "cathrin.backOpening.d": "Opening aan de sluiting op de middenrug.", - "cathrin.backOpening.t": "Rugopening", - "cathrin.backRise.d": "Hoe ver de rugpanden stijgen van je armen tot je middenrug.", - "cathrin.backRise.t": "Hoogte achter", - "cathrin.backDrop.d": "Hoeveel lager de rugpanden worden vanaf de heupen tot de middenrug. Een negatieve waarde maakt ze hoger.", - "cathrin.backDrop.t": "Verlaging rug", - "cathrin.frontRise.d": "De hoogte van de panelen middenvoor, tussen je borsten. Een negatieve waarde maakte ze lager.", - "cathrin.frontRise.t": "Hoogte voorpand", - "cathrin.frontDrop.d": "Hoeveel de voorpanden verlagen van je heupen tot middenvoor.", - "cathrin.frontDrop.t": "Verlaging voorpand", - "cathrin.hipRise.d": "Hoe hoog de zijpanelen vallen op je heupen.", - "cathrin.hipRise.t": "Hoogte heup", - "charlie.backPocketHorizontalPlacement.d": "Controls the horizontal placement of the back pocket", - "charlie.backPocketHorizontalPlacement.t": "Back pocket horizontal placement", - "charlie.backPocketVerticalPlacement.d": "Controls the vertical placement of the back pocket", - "charlie.backPocketVerticalPlacement.t": "Back pocket vertical placement", - "charlie.backPocketWidth.d": "Controls the width of the back pocket", - "charlie.backPocketWidth.t": "Back pocket width", - "charlie.backPocketDepth.d": "Controls the depth of the back pocket", - "charlie.backPocketDepth.t": "Back pocket depth", - "charlie.frontPocketSlantDepth.d": "Controls the depth of the (front) pocket slant", - "charlie.frontPocketSlantDepth.t": "Front pocket slant depth", - "charlie.frontPocketSlantWidth.d": "Controls the width of the (front) pocket slant", - "charlie.frontPocketSlantWidth.t": "Front pocket slant width", - "charlie.frontPocketSlantRound.d": "Controls how far from the end of the slant we start rounding into the outseam", - "charlie.frontPocketSlantRound.t": "Front pocket slant round", - "charlie.frontPocketSlantBend.d": "Controls the radius by which we round the pocket slant into the outseam", - "charlie.frontPocketSlantBend.t": "Front pocket slant bend", - "charlie.frontPocketWidth.d": "Controls the width of the front pocket bag", - "charlie.frontPocketWidth.t": "Front pocket width", - "charlie.frontPocketDepth.d": "Controls the depth of the front pocket bag", - "charlie.frontPocketDepth.t": "Front pocket depth", - "charlie.frontPocketFacing.d": "Controls how far the pocket facing extends into the pocket bag", - "charlie.frontPocketFacing.t": "Front pocket facing", - "charlie.beltLoops.d": "Controls the amount of belt loops", - "charlie.beltLoops.t": "Belt loops", - "charlie.flyCurve.d": "Controls the curvature of the fly J-seam", - "charlie.flyCurve.t": "Fly curve", - "charlie.flyLength.d": "Controls the length of the fly", - "charlie.flyLength.t": "Fly length", - "charlie.flyWidth.d": "Controls how far the J-seam of offset from the fly edge", - "charlie.flyWidth.t": "Fly width", - "charlie.waistbandCurve.d": "Controls how curved the waistband is.", - "charlie.waistbandCurve.t": "Waistband Curve", - "cornelius.fullness.d": "Controls the fullness of the breeches", - "cornelius.fullness.t": "Fullness", - "cornelius.waistbandBelowWaist.d": "Percentage to move the waistband below the actual waist", - "cornelius.waistbandBelowWaist.t": "Lower waistband", - "cornelius.waistReduction.d": "Percentage to reduce the waistband", - "cornelius.waistReduction.t": "Waist reduction", - "cornelius.cuffWidth.d": "Width of the leg cuff", - "cornelius.cuffWidth.t": "Cuff width", - "cornelius.cuffStyle.d": "Style of the leg cuff", - "cornelius.cuffStyle.t": "Cuff style", - "cornelius.bandBelowKnee.d": "Controls the cuff distance from the knee", - "cornelius.bandBelowKnee.t": "Cuff below knee", - "cornelius.kneeToBelow.d": "Controls the tightness of the cuff as compared to the knee", - "cornelius.kneeToBelow.t": "Cuff length", - "cornelius.ventLength.d": "Controls the length of the vent between knee and cuff", - "cornelius.ventLength.t": "Vent length", - "diana.shoulderSeamLength.d": "Bepaalt de lengte van de schoudernaad", - "diana.shoulderSeamLength.t": "Lengte schoudernaad", - "diana.drapeAngle.d": "Controls the amount of drape", - "diana.drapeAngle.t": "Drape angle", - "florence.height.d": "Bepaalt de hoogte van het mondmasker", - "florence.height.t": "Hoogte", - "florence.length.d": "Bepaalt de lengte van het mondmasker", - "florence.length.t": "Lengte", - "florence.curve.d": "Bepaalt de curve van de bovenrand van het mondmasker", - "florence.curve.t": "Curve", - "florent.headEase.d": "De hoeveelheid overwijdte rond je hoofd", - "florent.headEase.t": "Overwijdte hoofd", - "holmes.lengthRatio.d": "fixme", - "holmes.lengthRatio.t": "Lengteratio", - "holmes.goreNumber.d": "Het aantal panden dat gebruikt wordt om de halve bol op te bouwen", - "holmes.goreNumber.t": "Aantal panden", - "holmes.brimAngle.d": "Bepaalt de kromming van de klep", - "holmes.brimAngle.t": "Hoek klep", - "holmes.brimWidth.d": "Bepaalt de breedte van de klep", - "holmes.brimWidth.t": "Breedte klep", - "hortensia.size.d": "Controls the overall size of the handbag", - "hortensia.size.t": "Size", - "hortensia.zipperSize.d": "Which size of zipper to use", - "hortensia.zipperSize.t": "Zipper size", - "hortensia.strapLength.d": "Controls the length of the strap", - "hortensia.strapLength.t": "Strap length", - "hortensia.handleWidth.d": "Controls the width of the handle", - "hortensia.handleWidth.t": "Handle width", - "huey.pocket.d": "Of een voorzak moet worden toegevoegd of niet", - "huey.pocket.t": "Zak", - "huey.pocketHeight.d": "Bepaalt de hoogte van de zak", - "huey.pocketHeight.t": "Zak hoogte", - "huey.hoodHeight.d": "Bepaalt de hoogte van de capuchon", - "huey.hoodHeight.t": "Capuchon hoogte", - "huey.hoodCutback.d": "Bepaalt hoever de capuchon opening is ingekort", - "huey.hoodCutback.t": "Capuchon inkorting", - "huey.hoodClosure.d": "Bepaalt hoeveel van de capuchon deel uitmaakt van de sluiting vooraan", - "huey.hoodClosure.t": "Capuchon sluiting", - "huey.hoodDepth.d": "Bepaalt de diepte van de capuchon", - "huey.hoodDepth.t": "Capuchon diepte", - "huey.hoodAngle.d": "Bepaalt de hoek waaronder de capuchon is geplaatst", - "huey.hoodAngle.t": "Capuchon hoek", - "hugo.hipsEase.d": "De hoeveelheid overwijdte aan je heupen.", - "hugo.hipsEase.t": "Overwijdte heup", - "jaeger.centerBackDart.d": "Dart at the center back of your neck to accommodate a rounded back", - "jaeger.centerBackDart.t": "Nek neep", - "jaeger.sleeveVentLength.d": "De lengte van de mouwvent", - "jaeger.sleeveVentLength.t": "Lengte mouwvent", - "jaeger.sleeveVentWidth.d": "De breedte van de mouwvent", - "jaeger.sleeveVentWidth.t": "Breedte mouwvent", - "jaeger.chestShaping.d": "Amount of shaping to accommodate for the chest curve", - "jaeger.chestShaping.t": "Borstvorming", - "jaeger.frontDartPlacement.d": "Locatie van de nepen vooraan", - "jaeger.frontDartPlacement.t": "Plaatsing neep vooran", - "jaeger.frontOverlap.d": "De mate waaarin de stof verder reikt dat de sluitingsknopen", - "jaeger.frontOverlap.t": "Overlap voorzijde", - "jaeger.sideFrontPlacement.d": "De grens tussen het voor en zij paneel", - "jaeger.sideFrontPlacement.t": "Voor/Zijkant plaatsing", - "jaeger.chestPocketDepth.d": "De diepte van de borstzak", - "jaeger.chestPocketDepth.t": "Borstzakdiepte", - "jaeger.chestPocketWidth.d": "De breedte van de borstzak", - "jaeger.chestPocketWidth.t": "Borstzakbreedte", - "jaeger.chestPocketPlacement.d": "De locatie van de borszak", - "jaeger.chestPocketPlacement.t": "Plaatsing borstzak", - "jaeger.chestPocketAngle.d": "De hoek waaronder de borstzak geplaatst wordt", - "jaeger.chestPocketAngle.t": "Hoek borstzak", - "jaeger.chestPocketWeltSize.d": "Grootte van de paspel van de borstzak", - "jaeger.chestPocketWeltSize.t": "Paspel borstzak", - "jaeger.frontPocketPlacement.d": "Plaatsing van de zakken", - "jaeger.frontPocketPlacement.t": "Plaatsing zak", - "jaeger.frontPocketWidth.d": "Breedte van de zakken", - "jaeger.frontPocketWidth.t": "Breedte zak", - "jaeger.frontPocketDepth.d": "Diepte van de zakken", - "jaeger.frontPocketDepth.t": "Diepte zak", - "jaeger.frontPocketRadius.d": "De mate waarin de zakken zijn afgerond", - "jaeger.frontPocketRadius.t": "Ronding zak", - "jaeger.innerPocketPlacement.d": "De locatie van de binnenzakken", - "jaeger.innerPocketPlacement.t": "Plaatsing binnenzak", - "jaeger.innerPocketWidth.d": "De breedte van de binnenzakken", - "jaeger.innerPocketWidth.t": "Breedte binnenzak", - "jaeger.innerPocketDepth.d": "De diepte van de binnenzakken", - "jaeger.innerPocketDepth.t": "Diepte binnenzak", - "jaeger.innerPocketWeltHeight.d": "de maat van de paspel van de binnenzakken", - "jaeger.innerPocketWeltHeight.t": "Paspel binnenzak", - "jaeger.pocketFoldover.d": "De mate waarin de hoofstof doorloopt binnenin de zakken", - "jaeger.pocketFoldover.t": "Zak overvouw", - "jaeger.centerFrontHemDrop.d": "De mate waarin de zoom vooraan verlaagd is", - "jaeger.centerFrontHemDrop.t": "Verlaging zoom vooraan", - "jaeger.backVent.d": "Het aantal vents achteraan", - "jaeger.backVent.t": "Vent achteraan", - "jaeger.backVentLength.d": "De lengte van de vent(s) achteraan", - "jaeger.backVentLength.t": "Lengte vent achteraan", - "jaeger.buttonLength.d": "De lengte waarover de knopen zijn gespreid", - "jaeger.buttonLength.t": "Lengte knopen", - "jaeger.frontCutawayAngle.d": "De hoek waaronder de voorzijde wordt weggesneden naar de zoom toe", - "jaeger.frontCutawayAngle.t": "Snijhoek vooraan", - "jaeger.frontCutawayStart.d": "De plaats waar de voorzijde begint te verlopen naar de zoom toe", - "jaeger.frontCutawayStart.t": "Start uitsnijding vooraan", - "jaeger.frontCutawayEnd.d": "Door dit te verhogen blijft de verloping vooraan bij het midden", - "jaeger.frontCutawayEnd.t": "Einde uitsnijding vooraan", - "jaeger.collarSpread.d": "De kraagspreiding bepaalt hoe de kraag over de schouders valt", - "jaeger.collarSpread.t": "Spreiding kraag", - "jaeger.lapelStart.d": "Start van de revers", - "jaeger.lapelStart.t": "Revers start", - "jaeger.lapelReduction.d": "Mate waarin het einde van de revers weer inwaards keren", - "jaeger.lapelReduction.t": "Reductie revers", - "jaeger.collarHeight.d": "De hoogte van de kraag", - "jaeger.collarHeight.t": "Hoogte kraag", - "jaeger.collarNotchDepth.d": "Diepte van de kraaginkeping", - "jaeger.collarNotchDepth.t": "Diepte inkeping kraag", - "jaeger.collarNotchAngle.d": "Hoek waaronder de kraag is ingekeept", - "jaeger.collarNotchAngle.t": "Hoek inkeping kraag", - "jaeger.collarNotchReturn.d": "De mate waarin de kraag terugkomt na de inkeping, in vergelijking met de revers", - "jaeger.collarNotchReturn.t": "Kraag inkeping terugloop", - "jaeger.rollLineCollarHeight.d": "Hoeveel de kraag de nek omhelst", - "jaeger.rollLineCollarHeight.t": "Rollijn kraaghoogte", - "jaeger.hemRadius.d": "De mate waarin de zoom is afgerond", - "jaeger.hemRadius.t": "Ronding zoom", - "paco.heelEase.d": "De hoeveelheid overwijdte aan de hiel (wanneer je je been door de broekspijp steekt)", - "paco.heelEase.t": "Overwijdte hiel", - "paco.frontPockets.d": "Of je al dan niet zakken in de zijnaad wil", - "paco.frontPockets.t": "Voorzakken", - "paco.backPockets.d": "Of je al dan niet paspelzakken op de achterkant wil", - "paco.backPockets.t": "Achterzakken", - "paco.elasticatedHem.d": "Of je wel of niet elastiek aan de zoom wil", - "paco.elasticatedHem.t": "Elastische zoom", - "paco.ankleElastic.d": "Breedte van de (optionele) elastiek aan de enkel/zoom", - "paco.ankleElastic.t": "Breedte enkel/zoom elastiek", - "penelope.backDartDepthFactor.d": "Hoe ver de neep achteraan naar beneden komt vanaf de tailleband. Dit is een factor van de Natuurlijke Taille Tot Zitvlak-maat.", - "penelope.backDartDepthFactor.t": "Factor lengte neep rug", - "penelope.backVent.d": "Voeg een split toe aan de achterkant van de rok.", - "penelope.backVent.t": "Split achter", - "penelope.backVentLength.d": "Lengte van het loopsplit als een percentage van de lengte van de rok.", - "penelope.backVentLength.t": "Lengte split achter", - "penelope.dartToSideSeamFactor.d": "Hoeveel van de reductie van heupen naar taille door de nepen ingenomen wordt, tegenover de zijnaad, uitgedrukt in een percentage.", - "penelope.dartToSideSeamFactor.t": "Factor neep tot zijnaad", - "penelope.frontDartDepthFactor.d": "Hoe ver de neep vooraan naar beneden komt vanaf de tailleband. Dit is een factor van de Natuurlijke Taille Tot Zitvlak-maat.", - "penelope.frontDartDepthFactor.t": "Factor lengte neep vooraan", - "penelope.hem.d": "De afmeting van de zoom. Een maat in absolute waarden.", - "penelope.hem.t": "Afmeting van de zoom", - "penelope.hemBonus.d": "Deze optie maakt de omtrek van de rok aan de zoom kleiner. Percentage van de Omtrek Zitvlak-maat.", - "penelope.hemBonus.t": "Bonus zoom", - "penelope.lengthBonus.d": "Dit bepaalt de lengte van de rok. Een percentage van de Taille tot Knie-maat.", - "penelope.lengthBonus.t": "Bonus lengte", - "penelope.nrOfDarts.d": "Het aantal nepen in het patroon. Het maximum is 2. Deze optie kan aangepast worden door het patroon als de berekeningen te kleine nepen als resultaat hebben.", - "penelope.nrOfDarts.t": "Aantal nepen", - "penelope.seatEase.d": "Hoeveelheid overwijdte aan het zitvlak.", - "penelope.seatEase.t": "Overwijdte zitvlak", - "penelope.waistBand.d": "Voeg een tailleband toe aan het patroon.", - "penelope.waistBand.t": "Tailleband", - "penelope.waistBandWidth.d": "De breedte van de tailleband.", - "penelope.waistBandWidth.t": "Breedte tailleband", - "penelope.waistEase.d": "Hoeveelheid overwijdte aan de taille.", - "penelope.waistEase.t": "Overwijdte taille", - "penelope.zipperLocation.d": "De locatie van de rits.", - "penelope.zipperLocation.t": "Locatie rits", - "sandy.waistbandWidth.d": "De breedte van de tailleband.", - "sandy.waistbandWidth.t": "Breedte tailleband", - "sandy.waistbandPosition.d": "Bepaalt de positie van de tailleband.", - "sandy.waistbandPosition.t": "Positie tailleband", - "sandy.waistbandShape.d": "Wil je een rechte of gebogen tailleband?", - "sandy.waistbandShape.t": "Vorm tailleband", - "sandy.circleRatio.d": "Hoeveel procent van een cirkel wil je dat de rok is?", - "sandy.circleRatio.t": "Cirkel ratio", - "sandy.waistbandOverlap.d": "Hoeveel de tailleband overlapt.", - "sandy.waistbandOverlap.t": "Overlap Tailleband", - "sandy.gathering.d": "Met hoeveel procent de bovenrand van de rok langer is dan de onderrand van de tailleband.", - "sandy.gathering.t": "Fronsen", - "sandy.seamlessFullCircle.d": "Maakt een naadloze volle cirkelrok mogelijk.", - "sandy.seamlessFullCircle.t": "Naadloze volledige cirkel", - "sandy.hemWidth.d": "Breedte van de zoom", - "sandy.hemWidth.t": "Hem width", - "shin.legReduction.d": "Maakt de beenopening kleiner zodat ze niet openstaat", - "shin.legReduction.t": "Reductie pijp", - "simon.backDarts.d": "Of je nepen wil toevoegen aan de rug of niet", - "simon.backDarts.t": "Nepen rug", - "simon.backDartShaping.d": "Hoeveel invloed de nepen in de rug hebben op de pasvorm", - "simon.backDartShaping.t": "Vorm nepen rug", - "simon.barrelCuffNarrowButton.d": "Of je al dan niet een knoop wil om de manchetten smaller te maken. Deze optie is enkel relevant bij klassieke manchetten (zonder manchetknopen).", - "simon.barrelCuffNarrowButton.t": "Extra knoop manchet", - "simon.boxPleat.d": "Of je wel of niet een stolpplooi in de rug wil", - "simon.boxPleat.t": "Stolpplooi", - "simon.boxPleatWidth.d": "De totale breedte van de stolpplooi", - "simon.boxPleatWidth.t": "Breedte stolpplooi", - "simon.boxPleatFold.d": "Hoe ver de stolpplooi naar binnen vouwt", - "simon.boxPleatFold.t": "Vouw stolpplooi", - "simon.buttonPlacketStyle.d": "De stijl van het knopenpat.", - "simon.buttonPlacketStyle.t": "Stijl knopenpat", - "simon.buttonPlacketWidth.d": "De breedte van het knopenpat.", - "simon.buttonPlacketWidth.t": "Breedte knopenpat", - "simon.buttonFreeLength.d": "Hoe lang het stuk zonder knopen onderaan de sluiting moet zijn.", - "simon.buttonFreeLength.t": "Lengte knooploos stuk", - "simon.buttonholePlacketFoldWidth.d": "De breedte van de vouw in het knoopsgatenpat.", - "simon.buttonholePlacketFoldWidth.t": "Breedte vouw knoopsgatenpat", - "simon.buttonholePlacketStyle.d": "De stijl van het knoopsgatenpat.", - "simon.buttonholePlacketStyle.t": "Stijl knoopsgatenpat", - "simon.buttonholePlacketWidth.d": "De breedte van het knoopsgatenpat.", - "simon.buttonholePlacketWidth.t": "Breedte knoopsgatenpat", - "simon.buttons.d": "Het aantal knopen op de sluiting vooraan.", - "simon.buttons.t": "Aantal knopen", - "simon.collarAngle.d": "De hoek van de punten van de kraag.", - "simon.collarAngle.t": "Hoekjes kraag", - "simon.collarBend.d": "De kromming van de kraag.", - "simon.collarBend.t": "Kromming kraag", - "simon.collarFlare.d": "Hoe ver de punten van de kraag spreiden.", - "simon.collarFlare.t": "Spreiding kraag", - "simon.collarGap.d": "De open ruimte tussen de uiteindes van de kraag.", - "simon.collarGap.t": "Afstand kraag", - "simon.collarRoll.d": "Hoeveel groter de bovenkraag is dan de onderkraag.", - "simon.collarRoll.t": "Omval kraag", - "simon.collarStandBend.d": "De kromming van de staander in het midden, achteraan de nek.", - "simon.collarStandBend.t": "Kromming staander", - "simon.collarStandCurve.d": "De curve van de uiteindes van de staander.", - "simon.collarStandCurve.t": "Curve staander", - "simon.collarStandWidth.d": "Width of the collar stand.", - "simon.collarStandWidth.t": "Breedte staander", - "simon.cuffButtonRows.d": "Of je een enkele of dubbele rij knopen op de manchet wil. Deze optie is enkel relevant voor klassieke manchetten.", - "simon.cuffButtonRows.t": "Rijen knopen op manchet", - "simon.cuffDrape.d": "Hoeveel wijder de mouw is dan de manchet op het punt waar ze wordt aangezet.", - "simon.cuffDrape.t": "Verschil mouw/manchet", - "simon.cuffLength.d": "De lengte van de manchetten.", - "simon.cuffLength.t": "Lengte manchet", - "simon.cuffStyle.d": "De stijl van de manchetten.", - "simon.cuffStyle.t": "Stijl manchet", - "simon.extraTopButton.d": "Of je al dan niet een extra knoop bovenaan de sluiting wil.", - "simon.extraTopButton.t": "Extra knoop bovenaan", - "simon.hemCurve.d": "De hoogte van de curve op een afgeronde zoom.", - "simon.hemCurve.t": "Curve zoom", - "simon.hemStyle.d": "De vorm van de zoom van het hemd.", - "simon.hemStyle.t": "Vorm zoom", - "simon.roundBack.d": "To fit a round(er) back, this adds length to the center back (at the yoke) that tapers of towards the sides.", - "simon.roundBack.t": "Round back", - "simon.seperateButtonholePlacket.d": "Teken een apart knoopsgatenpat.", - "simon.seperateButtonholePlacket.t": "Apart knoopsgatenpat", - "simon.seperateButtonPlacket.d": "Teken een apart knopenpat", - "simon.seperateButtonPlacket.t": "Apart knopenpat", - "simon.sleevePlacketLength.d": "De lengte van het mouwsplit.", - "simon.sleevePlacketLength.t": "Lengte mouwsplit", - "simon.sleevePlacketWidth.d": "De breedte van het mouwsplit.", - "simon.sleevePlacketWidth.t": "Breedte mouwsplit", - "simon.splitYoke.d": "Wil je een tweedelige schouderpas?", - "simon.splitYoke.t": "Tweedelige schouderpas", - "simon.waistEase.d": "De hoeveelheid extra ruimte aan je (natuurlijke) taille.", - "simon.waistEase.t": "Overwijdte taille", - "simon.yokeHeight.d": "Controls the height of the yoke", - "simon.yokeHeight.t": "Yoke height", - "simone.bustDartAngle.d": "Bepaalt de hoek waarin de busteneep vanuit de zijnaad naar beneden wijst", - "simone.bustDartAngle.t": "Hoek busteneep", - "simone.bustDartLength.d": "Bepaalt hoe dicht de punt van de busteneep bij het bustepunt komt", - "simone.bustDartLength.t": "Lengte busteneep", - "simone.contour.d": "Bepaalt in hoeverre de extra ruimte voor borsten onder de buste verwijderd wordt", - "simone.contour.t": "Contour", - "simone.frontDarts.d": "Of je vooraan nepen wil of niet", - "simone.frontDarts.t": "Nepen voor", - "simone.frontDartLength.d": "Bepaalt hoe dicht de punt van de voorste neep bij het bustepunt komt", - "simone.frontDartLength.t": "Lengte nepen voor", - "sven.ribbing.d": "Of we boordstof plaatsen aan de zoom en manchetten of niet.", - "sven.ribbing.t": "Boordstof", - "sven.ribbingHeight.d": "De hoogte van de boordstof aan zoom en manchetten.", - "sven.ribbingHeight.t": "Hoogte boordstof", - "sven.ribbingStretch.d": "De hoeveelheid stretch in de boordstof voor zoom en manchetten.", - "sven.ribbingStretch.t": "Stretch boordstof", - "tamiko.flare.d": "De mate waarin het kledingstuk van je borst naar beneden uitwaaierd", - "tamiko.flare.t": "Waaier", - "tamiko.shoulderseamLength.d": "De lengte van de schouderzoom, als een factor van schouder tot schouder maat", - "tamiko.shoulderseamLength.t": "Shoulder seam length", - "tamiko.shoulderSlope.d": "Controls the angle of the shoulder seams", - "tamiko.shoulderSlope.t": "Schoulder helling", - "teagan.draftForHighBust.d": "Teken het patroon voor de hoge bustemaat (indien beschikbaar) in plaats van de volle borstomtrek. Dit heeft een aansluitender kledingstuk als resultaat voor mensen met borsten.", - "teagan.draftForHighBust.t": "Teken voor hoge buste", - "teagan.sleeveEase.d": "De hoeveelheid extra ruimte in je mouwen", - "teagan.sleeveEase.t": "Overwijdte mouw", - "teagan.sleeveLength.d": "Bepaalt de lengte van je mouwen", - "teagan.sleeveLength.t": "Mouwlengte", - "teagan.necklineBend.d": "Bepaalt de curve van de halsuitsnijding.", - "teagan.necklineBend.t": "Curve halslijn", - "teagan.necklineDepth.d": "Bepaalt hoe diep de halsopening is.", - "teagan.necklineDepth.t": "Diepte halsuitsnijding", - "teagan.necklineWidth.d": "Bepaalt hoe breed de halsopening is.", - "teagan.necklineWidth.t": "Breedte halsuitsnijding", - "theo.wedge.d": "Controls the length of the cross seam", - "theo.wedge.t": "Spie", - "theo.legWidth.d": "Bepaalt de breedte van de broekspijpen", - "theo.legWidth.t": "Breedte been", - "titan.kneeEase.d": "Bepaalt de hoeveelheid overwijdte aan de knie", - "titan.kneeEase.t": "Overwijdte knie", - "titan.waistHeight.d": "Bepaalt de hoogte van de taille, 100% = natuurlijke taille, 0% = heuphoogte", - "titan.waistHeight.t": "Taillehoogte", - "titan.lengthBonus.d": "Bepaalt de lengte van de broek", - "titan.lengthBonus.t": "Lengtebonus", - "titan.crotchDrop.d": "Verlaagt het kruis voor een lossere pasvorm", - "titan.crotchDrop.t": "Diepte kruis", - "titan.fitKnee.d": "Past de broekspijpen aan gebaseerd op de omtrek van de knie in plaats van de omtrek van het zitvlak", - "titan.fitKnee.t": "Pas de knie aan", - "titan.legBalance.d": "Bepaalt de verhouding tussen de voor-en achterkant van de broekspijp", - "titan.legBalance.t": "Balans been", - "titan.crossSeamCurveStart.d": "Bepaalt hoe ver in de binnenbeennaad de curve start", - "titan.crossSeamCurveStart.t": "Begin van de curve van de binnenbeennaad", - "titan.crossSeamCurveBend.d": "Bepaalt de curve van de binnenbeennaad", - "titan.crossSeamCurveBend.t": "Buiging binnenbeennaad", - "titan.crossSeamCurveAngle.d": "Controls the angle of the cross seam", - "titan.crossSeamCurveAngle.t": "Cross seam angle", - "titan.crotchSeamCurveStart.d": "Bepaalt hoe ver in de kruisnaad de curve start", - "titan.crotchSeamCurveStart.t": "Begin van de curve van de kruisnaad", - "titan.crotchSeamCurveBend.d": "Bepaalt de curve van de kruisnaad", - "titan.crotchSeamCurveBend.t": "Buiging kruisnaad", - "titan.crotchSeamCurveAngle.d": "Controls the angle of the crotch seam", - "titan.crotchSeamCurveAngle.t": "Crotch seam angle", - "titan.waistBalance.d": "Bepaalt de horizontale positie van de taille in relatie tot het zitvlak", - "titan.waistBalance.t": "Balans taille", - "titan.waistbandWidth.d": "The width of the waistband", - "titan.waistbandWidth.t": "Waistband width", - "titan.grainlinePosition.d": "Bepaalt de horizontale positie van het been in relatie tot het zitvlak", - "titan.grainlinePosition.t": "Positie draadrichting", - "trayvon.tipWidth.d": "De breedte van je stropdas aan het uiteinde", - "trayvon.tipWidth.t": "Tip breedte", - "trayvon.knotWidth.d": "De breedte van je stropdas aan de knoop", - "trayvon.knotWidth.t": "Knoop breedte", - "ursula.fabricStretch.d": "Adjust this for more or less stretchy fabrics", - "ursula.fabricStretch.t": "Fabric stretch", - "ursula.gussetWidth.d": "Controls the width of the gusset", - "ursula.gussetWidth.t": "Gusset width", - "ursula.gussetLength.d": "Controls the length of the gusset", - "ursula.gussetLength.t": "Gusset length", - "ursula.elasticStretch.d": "Adjust this for more or less stretchy elastic", - "ursula.elasticStretch.t": "Elastic stretch", - "ursula.rise.d": "Controls the height of the waist", - "ursula.rise.t": "Rise", - "ursula.legOpening.d": "Controls how high the leg is cut out", - "ursula.legOpening.t": "Leg opening", - "ursula.frontDip.d": "Controls how much the front waist curves (revealing more or less skin)", - "ursula.frontDip.t": "Front waist dip", - "ursula.backDip.d": "Controls how much the back waist curves (revealing more or less skin)", - "ursula.backDip.t": "Back waist dip", - "ursula.taperToGusset.d": "Controls the amount of exposed skin on the front", - "ursula.taperToGusset.t": "Front exposure", - "ursula.backExposure.d": "Controls the amount of exposed skin on the back", - "ursula.backExposure.t": "Back exposure", - "wahid.backScyeDart.d": "De hoeveelheid die verwijderd wordt met een neep aan de achterkant van het armsgat.", - "wahid.backScyeDart.t": "Neep armsgat achter", - "wahid.frontScyeDart.d": "De hoeveelheid die verwijderd wordt met een neep aan de voorkant van het armsgat.", - "wahid.frontScyeDart.t": "Neep armsgat voor", - "wahid.pocketLocation.d": "Bepaalt de locatie van de zak", - "wahid.pocketLocation.t": "Locatie van de zak", - "wahid.pocketWidth.d": "Bepaalt de breedte van de zak", - "wahid.pocketWidth.t": "Breedte van de zak", - "wahid.weltHeight.d": "De hoogte van de paspel van de zak", - "wahid.weltHeight.t": "Hoogte paspel zak", - "wahid.necklineDrop.d": "Bepaalt hoe laag de halslijn vooraan wordt", - "wahid.necklineDrop.t": "Diepte halslijn", - "wahid.frontStyle.d": "Stijl van de halsopening", - "wahid.frontStyle.t": "Stijl halsopening", - "wahid.hemStyle.d": "De vorm van de zoom vooraan", - "wahid.hemStyle.t": "Vorm zoom", - "wahid.hemRadius.d": "De straal van de ronding van de zoom", - "wahid.hemRadius.t": "Ronding zoom", - "wahid.backInset.d": "Hoeveel het armsgat achteraan naar binnen gaat", - "wahid.backInset.t": "Insnede rug", - "wahid.frontInset.d": "Hoeveel het armsgat vooraan naar binnen gaat", - "wahid.frontInset.t": "Insnede voorpand", - "wahid.shoulderInset.d": "Hoeveel de schoudernaad aan de schouder naar binnen gaat", - "wahid.shoulderInset.t": "Insnede schouder", - "wahid.neckInset.d": "Hoeveel de schoudernaad aan de hals naar binnen gaat", - "wahid.neckInset.t": "Insnede nek", - "wahid.pocketAngle.d": "De hoek van de zakopening", - "wahid.pocketAngle.t": "Hoek zak", - "waralee.backPocket.d": "Of een achterzak moet worden toegevoegd of niet", - "waralee.backPocket.t": "Achterzak", - "waralee.frontPocket.d": "Of een voorzak moet worden toegevoegd of niet", - "waralee.frontPocket.t": "Voorzak", - "waralee.hem.d": "De afmeting van de zoom onderaan de broek", - "waralee.hem.t": "Afmeting zoom", - "waralee.waistBand.d": "Grootte van de tailleband", - "waralee.waistBand.t": "Tailleband", - "waralee.waistRaise.d": "Hoeveel hoger de taille zit dan de hoogte zitvlak-maat. Dit beïnvloedt de diepte van het kruis.", - "waralee.waistRaise.t": "Hoogte Taille", - "waralee.crotchBack.d": "Het percentage van de omtrek zitvlak dat je het kruis achteraan nodig heeft. Dit creëert meer of minder ruimte tussen de zijnaad en de middenachternaad.", - "waralee.crotchBack.t": "Kruis achter", - "waralee.crotchFront.d": "Het percentage van de omtrek zitvlak dat je het kruis vooraan nodig heeft. Dit creëert meer of minder ruimte tussen de zijnaad en de middenvoornaad.", - "waralee.crotchFront.t": "Kruis Voor", - "waralee.crotchFactorBackHor.d": "Wordt gebruikt om de curve van het kruis achteraan horizontaal te verplaatsen", - "waralee.crotchFactorBackHor.t": "Kruis Achter Factor Horizontaal", - "waralee.crotchFactorBackVer.d": "Wordt gebruikt om de curve van het kruis achteraan verticaal te verplaatsen", - "waralee.crotchFactorBackVer.t": "Kruis Achter Factor Verticaal", - "waralee.crotchFactorFrontHor.d": "Wordt gebruikt om de curve van het kruis vooraan horizontaal te verplaatsen", - "waralee.crotchFactorFrontHor.t": "Kruis Voor Factor Horizontaal", - "waralee.crotchFactorFrontVer.d": "Wordt gebruikt om de curve van het kruis vooraan verticaal te verplaatsen", - "waralee.crotchFactorFrontVer.t": "Kruis Voor Factor Verticaal", - "waralee.waistOverlap.d": "Dit bepaalt in hoeverre dat je de beenflappen wil laten overlappen aan de taille. Als je 0 instelt komen ze elkaar tegen ze aan de zijnaad, een instelling van 100 zorgt dat ze aan middenvoor/achter tegen elkaar komen.", - "waralee.waistOverlap.t": "Overlap Taille", - "waralee.legShortening.d": "Dit bepaalt hoe lang de broek zal zijn. Het is een factor van de binnenbeennaad. Hoe groter de waarde, hoe meer van de lengte verwijderd zal worden.", - "waralee.legShortening.t": "Been Inkorten", - "waralee.backRaise.d": "Deze instelling verhoogt de taille in de rug. Onze taille zit niet horizontaal, maar ligt wat hoger in de rug. Deze instelling staat je toe de rug te verhogen als dit nodig is voor een goede pasvorm.", - "waralee.backRaise.t": "Hoogte Rug" -} diff --git a/packages/i18n/scripts/prebuilder.mjs b/packages/i18n/scripts/prebuilder.mjs deleted file mode 100644 index bc8b8be6395..00000000000 --- a/packages/i18n/scripts/prebuilder.mjs +++ /dev/null @@ -1,7 +0,0 @@ -//import { build } from '../src/prebuild.mjs' - -// use a deny-list to keep locales that aren't ready out of the build -export const denyList = ['uk'] - -// call this here instead of in the src/prebuild.mjs so that build isn't called by other files importing that build function -//build((loc) => denyList.indexOf(loc) === -1) diff --git a/packages/i18n/scripts/sort.sh b/packages/i18n/scripts/sort.sh deleted file mode 100644 index 6a22125101b..00000000000 --- a/packages/i18n/scripts/sort.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash -for locale in $(ls --hide index.js src/locales); do - echo Sorting $locale - for file in $(ls src/locales/$locale/*.yaml); do - sort $file -o $file - sed -i '/^$/d' $file - done - for file in $(ls src/locales/$locale/plugin/patterns/*.yaml); do - sort $file -o $file - sed -i '/^$/d' $file - done - for file in $(ls src/locales/$locale/plugin/plugins/*.yaml); do - sort $file -o $file - sed -i '/^$/d' $file - done -done diff --git a/packages/i18n/src/locales/de/account.yaml b/packages/i18n/src/locales/de/account.yaml deleted file mode 100644 index c28a8665e5a..00000000000 --- a/packages/i18n/src/locales/de/account.yaml +++ /dev/null @@ -1,60 +0,0 @@ ---- -accountRemoved: Account entfernt -accountRestricted: Account eingeschränkt -avatar: Profilbild -avatarInfo: Dein Avatar oder Profilbild wird auf deiner Profilseite angezeigt. -avatarTitle: Stell dein Profilbild ein -bio: Über mich -bioInfo: Hier kannst du anderen Freesewing-Benutzern etwas über dich erzählen. Dieses Feld unterstützt MarkDown, sodass du auch Links einfügen kannst. Wenn du einen Blog hast, kannst du ihn hier verlinken, damit andere ihn entdecken können. -bioTitle: Schreibe eine kurze Beschreibung über dich -currentPassword: Derzeitiges Passwort -email: E-Mail-Adresse -emailInfo: Die mit deinem Account verknüpfte E-Mail-Adresse ist wichtig, da sie verwendet wird, um wieder Zugriff auf dein Konto zu erhalten, falls du dein Passwort vergessen solltest. Aus diesem Grund erfordert das Ändern deiner E-Mail-Adresse eine Bestätigung. -emailTitle: Gib die E-Mail-Adresse ein, die du mit diesem Account verknüpfen möchtest -exportYourData: Exportiere deine Daten -exportYourDataInfo: Die Datenschutzgrundverordnung der EU (DSGVO) sichert dein sogenanntes Recht auf Datenportabilität. Dies ist dein Recht darauf, deine Daten zu erhalten und sie für deine eigenen Zwecke oder an anderer Stelle wiederzuverwenden. -exportYourDataTitle: Klicke hier unten, um deine persönlichen Daten herunterzuladen -github: Github -githubInfo: Wenn du deinen GitHub-Benutzernamen angibst, enthält deine Profilseite einen Link zu deinem Github-Konto, sodass Besucher deine Beiträge zum Code entdecken, dich als Favoriten markieren oder dir folgen können. -githubTitle: Gib deinen Github-Benutzernamen ein -instagramInfo: Wenn du deinen Instagram-Benutzernamen angibst, enthält deine Profilseite einen Link zu deinem Instagram-Konto, damit Besucher deine Bilder entdecken und dir folgen können. -instagram: Instagram -instagramTitle: Gib deinen Instagram-Benutzernamen ein -languageInfo: Diese Sprachauswahl bestimmt, in welcher Sprache du E-Mails von Freesewing erhältst. Es bestimmt nicht die Sprache der Website, die auf jeder Seite ausgewählt werden kann. -language: Sprache -languageTitle: Lege die Sprache deiner Wahl fest -newPassword: Neues Passwort -newsletter: Newsletter -newsletterTitle: Würdest du gerne den FreeSewing-Newsletter erhalten? -newsletterInfo: Alle drei Monate versenden wir unseren Newsletter, gefüllt mit ehrlichen und wertvollen Inhalten. Kein Tracking, keine Werbung, kein Nonsens. -passwordInfo: Das Ändern deines Passworts erfordert dein aktuelles Passwort. Gib dieses ein und gib danach auch dein neues Passwort ein. -password: Passwort -passwordTitle: Gib dein aktuelles Passwort und dein neues Passwort ein -patronInfo: Förderer/-innen unterstützen Freesewing finanziell. Sie sind treue Unterstützer/-innen, die für eine nachhaltige Zukunft für freesewing.org, unseren Code, unsere Schnittmuster und unsere Community sorgen. -patron: Förderer/in -removeYourAccountInfo: Die Datenschutzgrundverordnung (DSGVO) der EU gewährt dir das Recht auf Datenlöschung — das Recht, die Löschung deiner persönlichen Daten zu verlangen. -removeYourAccount: Entferne deinen Account -removeYourAccountWarning: Dies wird deinen Account entfernen, mitsamt Entwürfen, Schnittmustern, Modellen und allen Daten, die wir für dich gespeichert haben. Es gibt keinen Weg zurück. -resetPasswordInfo: Gib dein neues Passwort ein. -resetPassword: Passwort zurücksetzen -resetPasswordTitle: Gib dein neues Passwort ein -restrictProcessingOfYourDataInfo: Die Datenschutzgrundverordnung (DSGVO) der EU gewährleistet dein sogenanntes Recht auf Einschränkung der Verarbeitung - das Recht, die Verarbeitung deiner Daten zu unterbinden. -restrictProcessingOfYourData: Verarbeitung deiner Daten einschränken -restrictProcessingWarning: Es werden zwar keine Daten gelöscht, dies wird dich jedoch abmelden und deinen Account einfrieren. Du kannst dies nicht selber rückgängig machen. Wenn du den Zugriff auf deinen Account reaktivieren möchtest, musst du uns kontaktieren. -reviewYourConsent: Überprüfe deine Einwilligungen -socialInfo: Wenn du deinen GitHub-, Twitter- oder Instagram-Benutzernamen angibst, enthält deine Profilseite Links zu deinen Konten auf diesen Websites. Dadurch können dir Nutzer von FreeSewing dort folgen.
Wir kontaktieren keine dieser Seiten in deinem Namen. Dies ist nur dafür da, damit sich andere Leute ein richtiges Bild machen können und wissen, dass zum Beispiel Benutzer @joost bei FreeSewing dieselbe Person ist wie Benutzer @j__st bei Twitter. -social: Soziale Medien -socialTitle: Lass die Leute dir anderswo folgen -twitterInfo: Wenn du uns deinen Twitter-Benutzernamen angibst, enthält deine Profilseite einen Link zu deinem Twitter-Account, sodass Besucher deine Tweets entdecken und dir folgen können. -twitterTitle: Gib deinen Twitter-Benutzernamen ein -twitter: Twitter -unitsInfo: Freesewing unterstützt sowohl das metrische System als auch imperiale Maßeinheiten. -unitsTitle: Bitte wähle die Maßeinheit aus, mit der du am besten vertraut bist -units: Maßeinheiten -usernameInfo: Jeder beginnt mit einem zufälligen Benutzernamen. Das ist nicht sehr persönlich, also kannst du deinen Benutzernamen in etwas persönlicheres ändern, wie zum Beispiel deinen Namen, oder queenoffarts, oder was auch immer dir gefällt. -usernameTitle: Bitte wähle deinen Benutzernamen -username: Benutzername -accountIsInactive: Dein Account ist inaktiv -accountNeedsActivation: Bevor du dch anmelden kannst, musst du deinen Account aktivieren. Bitte überprüfe deinen Posteingang auf die Registrierungs-E-Mail und klicke auf den enthaltenen Link. -reloadAccount: Account neu laden -reloadAccountDescription: Dies lädt deine Kontodaten neu aus dem Backend. Das hat den gleichen Effekt wie sich einmal ausloggen und dann wieder einloggen. diff --git a/packages/i18n/src/locales/de/app.yaml b/packages/i18n/src/locales/de/app.yaml deleted file mode 100644 index 1d5f8588c46..00000000000 --- a/packages/i18n/src/locales/de/app.yaml +++ /dev/null @@ -1,348 +0,0 @@ ---- -100PercentCommunity: 100% Community -100PercentFree: 100% kostenlos -100PercentOpenSource: 100% Open Source -aboutFreesewing: Über Freesewing -accessoryPatterns: Ac­ces­soire-Schnittmuster -account: Account -accountCreated: Account erstellt -actions: Aktionen -allDocumentation: Alle Dokumentationen -andThatIsAwesome: Und das ist großartig -applyThisLayout: Dieses Layout anwenden -areYouSureYouWantToContinue: Bist du sicher, dass du fortfahren möchtest? -askForHelp: Nach Hilfe fragen -automatic: Automatisch -averagePeopleDoNotExist: "Durchschnittliche Menschen existieren nicht" -awesome: Großartig -back: Zurück -becauseThatWouldBeReallyHelpful: Weil das wirklich hilfreich wäre. -becomeAPatron: Förderer/in werden -blockPatterns: Block/Basisschnittmuster -blog: Blog -browseBlogposts: Blogeinträge durchsuchen -browsePatterns: Schnittmuster durchsuchen -browseShowcases: Showcases durchsuchen -butThatCouldChange: Das könnte sich aber ändern -cancel: Abbrechen -changePerson: Person ändern -changePattern: Schnittmuster ändern -chatOnDiscord: Chatte auf Discord -checkInboxClickLinkInConfirmationEmail: Überprüfe nun deinen Posteingang und klicke auf den Link in der Bestätigungs-E-Mail, die wir dir gesendet haben. -chest: Brust -chestInfo: Brüste erfordern zusätzliche Maße. Falls diese Person keine Brüste hat, werden beim Konfigurieren irrelevante Maße ausgeblendet. Das hat keinen Einfluss darauf, wie Schnittmuster entworfen werden. -chooseASize: Wähle eine Größe -chooseAPerson: Wähle eine Person -chooseADesign: Wähle ein Design -chooseAPattern: Wähle ein Schnittmuster -chooseYourOptions: Wähle deine Optionen -close: Schließen -community: Community -configureLayout: Layout konfigurieren -configureYourDraft: Deinen Entwurf konfigurieren -contactUs: Kontaktiere uns -contentLocaleFallback: Deshalb wird dir stattdessen die englische Version angezeigt. -contents: Inhalte -continue: Fortsetzen -copiedToClipboard: In die Zwischenablage kopiert -copy: Kopieren -couldYouTranslateThis: Könntest du dies übersetzen? -countModelsLackingForPattern: '{count} deiner Personen fehlen die erforderlichen Maße, um {pattern} zu entwerfen' -created: Erstellt -custom: Benutzerdefiniert -customSeamAllowance: Benutzerdefinierte Nahtzugabe -lightMode: Heller Modus -data: Daten -darkMode: Dunkler Modus -default: Standard -demo: Vorschau -designOptions: Designoptionen -designs: Designs -docs: Dokumentation -docsFooterMsg: Die Dokumentation ist nie fertig. Hoffentlich konnten wir alle deine Fragen beantworten, aber wenn dies nicht der Fall war, ist immer Hilfe verfügbar. -docsNotFoundMsg: Wir konnten diese Dokumentation nicht finden, was normalerweise bedeutet, dass sie noch nicht geschrieben wurde. -docsNotFoundTitle: Diese Dokumentation fehlt -documentationForDevelopers: Dokumentation für Entwickler/-innen -documentationForEditors: Dokumentation für Redakteure -documentationForTranslators: Dokumentation für Übersetzer/-innen -documentationOverview: Überblick über die Dokumentation -dolls: Puppen -download: Herunterladen -draft: Entwurf -draftPattern: '{pattern} erstellen' -testPattern: '{pattern} testen' -draftPatternForModel: 'Entwerfe {pattern} für {model}' -drafts: Entwürfe -draftSettings: Entwurfseinstellungen -dragAndDropImageHere: Du kannst das Bild hier per Drag-and-Drop ablegen oder es unten manuell auswählen -emailAddress: E-Mail-Adresse -emailWorksToo: "Falls du deinen Benutzername nicht weißt: deine E-Mail-Adresse funktioniert auch" -enterEmailPickPassword: Gib deine E-Mail Adresse ein und wähle ein Passwort -export: Exportieren -exportTiledPDF: Exportieren als paginiertes PDF -faq: Häufig gestellte Fragen -fieldRemoved: '{field} entfernt' -fieldSaved: '{field} gespeichert' -filterByPattern: Filtern nach Schnittmuster -filterPatterns: Schnittmuster filtern -forgotLoginInstructions: "Wenn du dein Passwort nicht mehr weißt: Benutzername oder E-Mail-Adresse eingeben und den Passwort zurücksetzen Knopf drücken" -freesewing: Freesewing -freesewingOnGithub: Freesewing auf GitHub -garmentPatterns: Bekleidungsschnittmuster -giants: Giants -github: GitHub -goAheadWeWillWait: Mach weiter, wir warten. -goodJob: Gut gemacht -goodToSeeYouAgain: Schön, dich wieder zu sehen, {user} -handle: Identifikator -helpUsTranslate: Hilf uns beim Übersetzen -home: Startseite -howCanWeHelpYou: Wie können wir dir helfen? -howToTakeMeasurements: Richtig Maßnehmen -i18n: Internationalisierung -imperialUnits: Imperiale Einheiten (inch) -instagram: Instagram -invalidTldMessage: '.{tld} ist keine gültige TLD' -joinTheChatMsg: Wir haben auf Discord eine Community mit freundlichen Leuten, mit denen du dich austauschen kannst. -justAMoment: Einen Moment bitte -layout: Layout -logIn: Anmelden -loginWithProvider: 'Mit {provider} anmelden' -logOut: Abmelden -manual: Manuell -markdownHelp: Markdown-Hilfe -measurements: Maße -menu: Menü -metadata: Metadaten -metricUnits: Metrische Einheiten (cm) -person: Person -people: Personen -nameInfo: Ein Name hilft dabei, Dinge auseinanderzuhalten. Du kannst einen beliebigen Namen auswählen. -name: Name -addThing: '{thing} hinzufügen' -newThing: Neu {thing} -newPatternForModel: '{pattern} für {model} neu erstellen' -noChanges: Keine Änderungen -no: 'Nein' #Keep in quotes or it will evaluate to false -noPasswordPolicy: Wir haben keine strikten Passwort-Rictlinien -noSeamAllowance: Keine Nahtzugabe -notAllOfThisContentIsAvailableInLanguage: Nicht alle Inhalte sind auf Deutsch verfügbar -notesInfo: Dies sind deine Notizen. Du kannst hier alles schreiben, was du möchtest. -notes: Notizen -ohNo: Oh nein! -oneMoreThing: Und zum Schluss -optionalMeasurements: Optionale Maße -options: Optionen -orPayPerYear: Oder pro Jahr bezahlen -other: Andere -otherThing: 'Andere {thing}' -ourPatrons: Unsere Förderer -ourRevenuePledge: Unser Umsatzversprechen -patron-2: Pulveraffe -patron-4: Steuermann -patron-8: Kapitän -patronHelp: Solltest du Fragen haben oder deinen Förder/in-Status ändern wollen, kannst du uns gerne kontaktieren -patron: Förderer/in -patronPitch: Wenn du unsere Arbeit für wertvoll hältst und jeden Monat ein paar Münzen übrig hast, ohne in finanzielle Not zu geraten, unterstütze bitte unsere Arbeit -patronsKeepUsAfloat: Freesewing wird durch die finanzielle Unterstützung unserer Förderer ermöglicht. Sie halten dieses Schiff über Wasser. -patternInstructions: Anleitungen für das Schnittmuster -patternOptions: Schnittmusteroptionen -pattern: Schnittmuster -sewingPatterns: Schnittmuster -patterns: Schnittmuster -pendingConfirmation: Bestätigung ausstehend -perMonth: pro Monat -pleaseEnterAValidEmailAddress: Bitte eine gültige E-Mail-Adresse angeben -pleaseIncludeTheInformationBelow: Bitte gib die Informationen unten an -preview: Vorschau -privacyNotice: Datenschutzerklärung -proceedWithCaution: Bitte mit Vorsicht fortfahren -profile: Profil -relatedLinks: Weiterführende Links -remove: Entfernen -removeThing: '{thing} entfernen' -reportThisOnGithub: Melde dies auf GitHub -requiredMeasurements: Erforderliche Maße -resendActivationEmailMessage: "Trage die E-Mail-Adresse ein, mit der du dich angemeldet hast, und wir senden dir eine neue Bestätigungsnachricht." -resendActivationEmail: Aktivierungs-E-Mail erneut senden -resetPassword: Passwort zurücksetzen -reset: Zurücksetzen -restoreDefaults: Standardeinstellungen wiederherstellen -restoreDesignDefaults: Designeinstellungen zurücksetzen -restorePatternDefaults: Standardwerte für Schnittmuster wiederherstellen -saveDraftToYourAccount: Entwurf in deinem Account speichern -save: Speichern -searchLanguageMsg: Jede Sprache hat ihren eigenen Suchindex. Da nicht alle Inhalte übersetzt sind, findest du möglicherweise mehr Ergebnisse in der Suche auf Englisch. -searchLanguageTitle: Nicht das gefunden, wonach du suchst? -search: Suche -selectAPartToMoveMirrorOrRotate: Wähle ein Teil zum Verschieben, Spiegeln oder Drehen -selectImage: Bild auswählen -sendAnEmail: Eine E-Mail senden -settings: Einstellungen -sewingHelp: Nähhilfe -sewingPatternsForNonAveragePeople: Schnittmuster für nicht-durchschnittliche Menschen -share: Teilen -shareFreesewing: Teile FreeSewing -showcase: Galerie -signUpForAFreeAccount: Registriere dich für einen kostenlosen Account -signUp: Registrieren -signupWithProvider: 'Mit {provider} registrieren' -sortByField: Nach {field} sortieren -standardSeamAllowance: Standardnahtzugabe -startOver: Von vorn anfangen -startTranslatingNowOrRead: '{startTranslatingNow}, oder lies zuerst die {documentationForTranslators}.' -startTranslatingNow: Beginne jetzt mit dem Übersetzen -subscribe: Abonnieren -support: Support -supportFreesewing: Unterstütze Freesewing -tellMeMore: Erzähl mir mehr -thanksForYourSupport: Danke für deine Unterstützung -thisContentIsNotAvailableInLanguage: Dieser Inhalt ist nicht auf Deutsch verfügbar -thisFieldSupportsMarkdown: Dieses Feld unterstützt Markdown -thisPageRequiresAuthentication: Diese Seite erfordert eine Authentifizierung -troubleLoggingIn: Probleme beim Einloggen? -twitter: Twitter -txt-footer: Freesewing wird erstellt von einer Gemeinschaft von Mitwirkenden
mit der finanziellen Unterstützung unserer Förderer/-innen -txt-tier2: Unsere Kategorie mit dem demokratischsten Preis. Es ist vielleicht weniger als der Preis eines Lattes, aber deine Unterstützung bedeutet uns sehr viel. -txt-tier4: Wähle diese Stufe, und wir senden dir etwas von unserem heiß begehrten Freesewing-Swag nach Hause. Egal, wo in der Welt das auch sein mag. -txt-tier8: "Wenn du uns nicht nur unterstützen möchtest, sondern Freesewing zum Gedeihen bringen willst, ist das die Stufe für dich. Außerdem: extra Swag!" -txt-tiers: 'FreeSewing wird durch ein freiwilliges Abonnement-Modell unterstützt' -unitsInfo: Freesewing unterstützt sowohl das metrische System als auch imperiale Einheiten. Wähle einfach aus, was von beiden du hier verwenden möchtest. (Standardmäßig werden die in deinem Account konfigurierten Einheiten verwendet). -updated: Aktualisiert -update: Aktualisieren -userHasBeenWithUsSince: '{user} ist seit {since} bei uns' -users: Benutzer -utilityPatterns: Hilfsschnittmuster -weAreValidatingYourConfirmationCode: Wir prüfen deinen Bestätigungs-Code. -weCouldNotValidateYourConfirmationCode: Wir konnten deinen Bestätigungscode nicht validieren -weEncounteredAProblem: Wir sind auf ein Problem gestoßen -weEncourageYouToReportThis: Wir empfehlen dir, dies zu melden -welcomeAboard: Willkommen an Bord -welcome: Willkommen -weNeverShareYourEmail: Wir werden deine E-Mail-Adresse niemals an andere weitergeben -whatIsThis: Was ist das? -withBreasts: Mit Brüsten -withoutBreasts: Ohne Brüste -yay: Juhuu! -yes: 'Ja' #Keep in quotes or it will evaluate to true -youAreAPatron: Du bist ein/e Förder/in -youAreNotAPatron: Du bist kein/e Förder/in -youAreNotLoggedIn: Du bist nicht eingeloggt -yourRights: Deine Rechte -makerDocs: Erstellerdokumentation -devDocs: Entwicklerdokumentation -slogan: Eine JavaScript-Bibliothek für maßgeschneiderte Schnittmuster -getStarted: Jetzt loslegen -apiReference: API-Referenz -tutorial: Anleitung -editThisPage: Diese Seite bearbeiten -loginRequiredRedirect: 'Du wurdest auf die Login-Seite weitergeleitet, da {page} eine Authentifizierung benötigt' -various: Verschiedenes -sewing: Nähen -examples: Beispiele -by: von -years: Jahre -pricing: Preisgestaltung -createFirst: Beginne mit dem Erstellen eines neuen Schnittmusters -noPattern: Du hast (noch) keine Schnittmuster. Erstelle ein neues Schnittmuster und speichere es dann in deinem Account. -modelFirst: Beginne damit, Maße hinzuzufügen -noModel: Du hast (noch) keine Maße hinzugefügt. FreeSewing kann maßgeschneiderte Schnittmuster erzeugen. Dafür benötigen wir jedoch Maße. -noModel2: Das erste, was du tun solltest, ist, eine Person hinzuzufügen und das Maßband auszupacken. -noUserBrowsingTitle: "Du kannst nicht einfach alle Benutzer durchsuchen" -noUserBrowsingText: "Wir haben Tausende von ihnen. Sicher gibt es Interessanteres auf unserer Seite zu tun?" -usePatternMeasurements: 'Verwende die Maße des Originalschnittmusters' -createReplica: Duplikat erstellen -showDetails: Details anzeigen -hideDetails: Details ausblenden -clickBelowToLogOut: Klicke unten, um dich abzumelden -compare: Vergleichen -savePattern: Schnittmuster speichern -recreate: Neu erstellen -recreateThing: '{thing} neu erstellen' -recreateThingForPerson: '{thing} für {person} neu erstellen' -seeYouLaterUser: Bis später, {user} -exportForPrinting: Für den Druck exportieren -exportForEditing: Für die Bearbeitung exportieren -startWithNeckTitle: Beginne mit dem Halsumfang -startWithNeckDescription: Auf Basis deines Halsumfangs können wir dir helfen, Fehler in deinen Maßen zu erkennen. -whatYouNeed: Was du brauchst -fabricOptions: Stoffoptionen -cutting: Zuschnitt -instructions: Anleitungen -hide: Verbergen -show: Anzeigen -oneMomentPlease: Einen Moment bitte -loadingMagic: Wir sind dabei, die Magie zu laden -estimate: Schätzung -actual: Tatsächlich -weEstimateYM2B: 'Wir schätzen {measurement} von dir auf etwa:' -exportAsData: Als Daten exportieren -availablePatterns: Verfügbare Schnittmuster -browseCollection: Sammlung durchsuchen -browseYourPatterns: Deine Schnittmuster durchsuchen -yourPatterns: Deine Schnittmuster -loginNeededToSavePatternsMsg: Du musst angemeldet sein, um deine Schnittmuster zu speichern -docsForContributors: Dokumentation für Mitwirkende -patternDocs: Schnittmuster-Dokumentation -socialMedia: Soziale Medien -create: Erstellen -browse: Durchsuchen -patrons: Förderer/-innen -scrollToTop: Zum Seitenanfang -sitemap: Seitenübersicht -contributeToThing: An {thing} mitwirken -mtmIsOurJam: Maßgeschneiderte Schnittmuster sind unser Spezialgebiet -fitYouDeserve: Du verpasst wirklich etwas, wenn du standardisierte Größen verwendest.
Also melde dich heute an und erhalte die Passform, die du verdienst. -supportNag: FreeSewing ist kostenfrei, aber wir würden es sehr schätzen, wenn du in Betracht ziehen würdest, uns zu unterstützen. -madeToMeasure: Hergestellt nach Maß -sizes: Größen -standardSizes: Standardgrößen -accountRequired: Diese Funktion erfordert einen FreeSewing-Account -size: Größe -switchToThing: 'Zu {thing} wechseln' -saveThing: '{thing} speichern' -shareThing: '{thing} teilen' -link: Link -cloneThing: '{thing} klonen' -cloneDescription: Erstelle eine exakte Kopie mit den Maßen des Originalschnittmusters. -furtherReading: Weiterführende Informationen -saveAsNewPattern: Als neues Schnittmuster speichern -saveAsNewPattern-txt: (Eine Kopie von diesem) Schnittmuster in deinem FreeSewing-Account speichern -exportPattern: Schnittmuster exportieren -printPattern: Schnittmuster drucken -exportPattern-txt: Ein für deinen Heimdrucker geeignetes PDF exportieren, oder das Schnittmuster in verschiedenen Formaten herunterladen -editThing: '{thing} bearbeiten' -editPattern-txt: Dieses Schnittmuster im Schnittmuster-Editor laden -featureRequiresAccount: Diese Funktion erfordert einen FreeSewing-Account -zoom: Zoom -zoomIn: Vergrößern -zoomOut: Verkleinern -zoom-txt: Wechselt zwischen Beschränkung der Höhe und der Breite deines Schnittmusters, um es passend auf deinem Bildschirm anzuzeigen -savePattern-txt: Dieses Schnittmuster in deinem FreeSewing-Account speichern -comparePattern: Schnittmuster vergleichen -showPattern: Schnittmuster anzeigen -comparePattern-txt: Vergleiche dein Schnittmuster mit einer Reihe von Standardgrößen, um mögliche Probleme mit der Passform zu prüfen -recreatePattern: Schnittmuster neu erstellen -recreatePattern-txt: Wähle eine andere Person und erstelle dann diesen Schnitt neu für diese Person -editOwnPatternsOnly: Du kannst nur deine eigenen Schnittmuster bearbeiten -editOwnPatternsOnly-txt: Du kannst dieses Schnittmuster nicht bearbeiten, weil es nicht dir gehört. Aber du kannst es als Grundlage verwenden, um dein eigenes Schnittmuster zu erstellen. -updateNotes-txt: Aktualisiere die Notizen, die du zu deinem Schnittmuster führst -franceWarning: Warnung für Benutzer/-innen in Frankreich -franceWarning-txt: Mehrere französische E-Mail-Anbieter – darunter free.fr, laposte.net, orange.fr und sfr.fr – sind dafür bekannt, unsere E-Mails regelmäßig zu entsorgen. -emailNotReceived: Wenn du die Aktivierungs-E-Mail nicht erhältst, wende dich bitte an uns, damit wir helfen können. -error: Fehler -info: Info -warning: Warnung -debug: Debug -unsubscribe: Abmelden -slogan-come: Komm für die Schnittmuster -slogan-stay: Bleib für die Community -lightTheme: Helles Design -darkTheme: Dunkles Design -hax0rTheme: Hax0r Design -lgbtqTheme: LGBTQ Design -transTheme: Trans Design -accessoryDesigns: Accessory Designs -blockDesigns: Block/Sloper Designs -garmentDesigns: Garment Designs -utilityDesigns: Utility Designs diff --git a/packages/i18n/src/locales/de/cfp.yaml b/packages/i18n/src/locales/de/cfp.yaml deleted file mode 100644 index 1bf4364adbb..00000000000 --- a/packages/i18n/src/locales/de/cfp.yaml +++ /dev/null @@ -1,33 +0,0 @@ ---- -author: Autor -githubRepo: GitHub-Repository -packageManager: Paket-Manager -patternName: Schnittmuster-Name -patternType: Schnittmuster-Art -patternCreated: Dein Schnittmusterskelett wurde erstellt in -runTheseCommands: Um loszulegen, führe diesen Befehl aus -startRollup: In einem Terminal startest du den Rollup-Bundler im Beobachtungsmodus -startWebpack: "Dadurch wird der 'example'-Ordner betreten und die Entwicklungsumgebung gestartet." -devDocsAvailableAt: Entwicklerdokumentation ist verfügbar auf -talkToUs: Für Fragen, Feedback oder Anregungen trete unserem Discord-Server bei -draftYourPattern: Zeichne dein Schnittmuster -testYourPattern: Teste dein Schnittmuster -draftThing: '{thing} erstellen' -testThing: '{thing} testen' -renderInBrowser: Klicke unten, um dein Schnittmuster im Browser zu rendern. -weWillReRender: Wenn du Änderungen vornimmst, werden wir es erneut für dich rendern. -youCan: Du kannst -enterMeasurements: Maße von Hand eingeben -preloadMeasurements: Einen bestehenden Satz an Maßen einlesen -size: Größe -noRequiredMeasurements: Dieses Schnittmuster hat keine benötigten Maße -howtoAddMeasurements: Um Maße als Anforderung zu definieren, füge sie der Sektion measurements in der Konfigurationsdatei des Schnittmusters hinzu. -seeDocsAt: Dokumentation zu diesem Thema ist verfügbar unter -clearDesignMode: Designmodus leeren -designMode: Designmodus -exportMode: Exportmodus -thingIsEnabled: '{thing} ist aktiviert' -thingIsDisabled: '{thing} ist deaktiviert' -turnOn: Aktivieren -turnOff: Deaktivieren -validNameWarning: "Bitte wähle einen anderen Namen, da dieser Name Probleme verursachen würde.\nWir (wieder-)verwenden den Namen des Schnittmusters als NPM-Paketname.\nPaketnamen müssen in Kleinbuchstaben geschrieben sein und dürfen keine Sonderzeichen enthalten.\nBitte benenne dein Muster also entsprechend, wie in etwa:" diff --git a/packages/i18n/src/locales/de/components/common.yaml b/packages/i18n/src/locales/de/components/common.yaml deleted file mode 100644 index 7587ff542cc..00000000000 --- a/packages/i18n/src/locales/de/components/common.yaml +++ /dev/null @@ -1,13 +0,0 @@ ---- -account: Account -blog: Blog -commumity: Community -designs: Designs -docs: Dokumentation -patternInstructions: Schnittmuster-Anleitungen -patternOptions: Schnittmusteroptionen -requiredMeasurements: Erforderliche Maße -showcase: Galerie -sloganCome: Komm für die Schnittmuster -sloganStay: Bleib für die Community -support: Hilfe diff --git a/packages/i18n/src/locales/de/components/homepage.yaml b/packages/i18n/src/locales/de/components/homepage.yaml deleted file mode 100644 index 99cd2c6923a..00000000000 --- a/packages/i18n/src/locales/de/components/homepage.yaml +++ /dev/null @@ -1,2 +0,0 @@ ---- -scrollDownToLearnMore: Scrolle nach unten, um mehr über FreeSewing zu erfahren und es kostenlos auszuprobieren diff --git a/packages/i18n/src/locales/de/components/ograph.yaml b/packages/i18n/src/locales/de/components/ograph.yaml deleted file mode 100644 index a309e6457fd..00000000000 --- a/packages/i18n/src/locales/de/components/ograph.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -orgTitle: Willkommen bei freesewing.org -devTitle: Willkommen bei freesewing.dev -labTitle: Willkommen bei lab.freesewing.lab -devDescription: Dokumentation und Tutorials für FreeSewing-Entwickler/-innen und Mitwirkende. Plus unser Entwickler/-innen-Blog diff --git a/packages/i18n/src/locales/de/components/patrons.yaml b/packages/i18n/src/locales/de/components/patrons.yaml deleted file mode 100644 index e5046fc83a0..00000000000 --- a/packages/i18n/src/locales/de/components/patrons.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -becomeAPatron: Werde ein/e Förderer/-in -supportFreesewing: Unterstütze Freesewing -patronLead: FreeSewing wird durch ein freiwilliges Abonnement-Modell unterstützt -patronPitch: Wenn du unsere Arbeit für wertvoll hältst und jeden Monat ein paar Münzen übrig hast, ohne in finanzielle Not zu geraten, unterstütze bitte unsere Arbeit diff --git a/packages/i18n/src/locales/de/components/posts.yaml b/packages/i18n/src/locales/de/components/posts.yaml deleted file mode 100644 index 37405407e52..00000000000 --- a/packages/i18n/src/locales/de/components/posts.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -xMadeThis: '{x} hat dies erstellt' -xWroteThis: '{x} hat dies geschrieben' diff --git a/packages/i18n/src/locales/de/components/themes.yaml b/packages/i18n/src/locales/de/components/themes.yaml deleted file mode 100644 index a9bd7b90e26..00000000000 --- a/packages/i18n/src/locales/de/components/themes.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -lightTheme: Helles Thema -darkTheme: Dunkles Thema -hax0rTheme: Hax0r Thema -lgbtqTheme: LGBTQ Thema -transTheme: Trans Thema diff --git a/packages/i18n/src/locales/de/components/workbench.yaml b/packages/i18n/src/locales/de/components/workbench.yaml deleted file mode 100644 index 489e6101596..00000000000 --- a/packages/i18n/src/locales/de/components/workbench.yaml +++ /dev/null @@ -1,11 +0,0 @@ ---- -designOptions: Designoptionen -forPrinting: Zum Drucken -forCutting: Zum Schneiden -layoutThing: 'Layout {thing}' -pageSize: Seitengröße -startBySelectingAThing: 'Beginne mit der Auswahl eines {thing}' -testThing: '{thing} testen' -yamlEditViewTitleThing: 'Edit Pattern Configuration for {thing}' -yamlEditViewError: Probleme mit YAML -yamlEditViewErrorDesc: Wir haben deine Eingabe gespeichert, aber sie funktioniert möglicherweise aus folgenden Gründen nicht diff --git a/packages/i18n/src/locales/de/cty.yaml b/packages/i18n/src/locales/de/cty.yaml deleted file mode 100644 index 053c3b72997..00000000000 --- a/packages/i18n/src/locales/de/cty.yaml +++ /dev/null @@ -1,20 +0,0 @@ ---- -wafsHashtag: WeAreFreeSewing -weAreACommunityOfMakers: Wir sind eine Community von Macher/-innen -weProvideMtmSewingPatterns: Wir bieten maßgeschneiderte Schnittmuster an -isAPatron: ist ein/e Förderer/in -contributesWith: trägt bei mit -communityBuilding: Gemeinschaftsbildung / Community Building -development: Entwicklung -patternTesting: Test von Schnittmustern -patternDesign: Schnittmuster-Design -support: Unterstützung -translation: Übersetzung -writing: Schreiben -whereToFindUs: Wo du uns finden kannst -whoWeAre: Wer wir sind -community: Community -team: Team -teams: Teams -contributors: Mitwirkende -calls: Mitwirkendentreffen diff --git a/packages/i18n/src/locales/de/designs.yml b/packages/i18n/src/locales/de/designs.yml deleted file mode 100644 index f39209d43fb..00000000000 --- a/packages/i18n/src/locales/de/designs.yml +++ /dev/null @@ -1,142 +0,0 @@ ---- -aaron: - description: Aaron ist ein sportliches Shirt oder Tank Top. - title: Aaron, das A-Shirt -albert: - description: Albert ist eine Schürze. - title: Albert, die Schürze -bee: - description: Bee ist ein Bikini-Oberteil - title: Bee, das Bikini-Oberteil -bella: - description: Bella ist ein Grundschnitt für Personen mit Brüsten. - title: Bella, ein Grundschnitt -benjamin: - description: Benjamin ist eine Schleife - oder Fliege - mit vier unterschiedlichen Formvariationen. - title: Benjamin, die Fliege -bent: - description: Dieser zweiteilige Ärmel-Grundschnitt ist die Grundlage für unsere Mäntel- und Jackenschnitte. - title: Bent, ein Grundschnitt -bob: - description: Dies ist das Lätzchen, welches du erstellst, wenn du unserem Design-Tutorial folgst - title: Bob, das Lätzchen -breanna: - description: Breanna ist ein Grundschnitt für Personen mit Brüsten. - title: Breanna, ein Grundschnitt -brian: - description: Brian ist ein Grundschnitt für Personen ohne Brüste. - title: Brian, ein Grundschnitt -bruce: - description: Bruce sind bequeme und stylische Retroshorts. - title: Bruce, die Retroshorts -carlita: - description: 'Die Version für Brüste unseres Carlton-Mantels, aka Sherlock Holmes-Mantel.' - title: Carlita, der Mantel -carlton: - description: 'Für Sherlock Holmes-Cosplay, oder nur als wirklich netter Mantel.' - title: Carlton, der Mantel -cathrin: - description: Cathrin ist ein Unterbrustkorsett oder Taillentrainer. - title: Cathrin, das Korsett -charlie: - description: Charlie ist ein Schnittmuster für Chinos. - title: Charlie, die Chinos -cornelius: - description: Cornelius ist eine Kniebundhose zum Fahrradfahren, basierend auf der Entwurfsmethode nach Keystone. - title: Cornelius, die Kniebundhose zum Radfahren -diana: - description: Diana ist ein Oberteil mit einem drapierten Halsausschnitt. - title: Diana, das drapierte Oberteil -florent: - description: 'Florent ist eine abgerundete Schiebermütze mit einem kleinen festen Schild an der Vorderseite.' - title: Florent, die Schiebermütze -florence: - description: 'Florence ist ein Mundschutz.' - title: Florence, der Mundschutz -hi: - description: Der freundlichste Hai der Welt - title: Hi, der Hai -holmes: - description: 'Für Sherlock Holmes-Cosplay oder einfach nur als niedlicher Hut.' - title: Holmes Deerstalker-Hut -hortensia: - description: 'Hortensia ist eine Handtasche.' - title: Hortensia, die Handtasche -huey: - description: Huey ist ein Hoodie mit Reißverschluss und optionalen Taschen auf der Vorderseite. - title: Huey, der Hoodie -hugo: - description: Hugo ist ein Kapuzensweatshirt mit Raglanärmeln. - title: Hugo, der Hoodie -jaeger: - description: Jaeger ist ein sportliches Sakko mit zwei Knöpfen und aufgesetzten Taschen. - title: Jaeger, das Sakko -lucy: - description: Lucy ist eine historische Tasche, die du um deine Taille binden kannst. - title: Lucy, die Umbindetasche -lunetius: - description: Lunetius ist eine Lacerna, ein historischer römischer Mantel - title: Lunetius, die Lacerna -noble: - description: Noble ist ein Grundschnitt mit einer Englischen oder Wiener Naht - title: Noble, ein Grundschnitt -octoplushy: - description: Ein mehrarmiger Begleiter für Umarmungen der nächsten Kategorie - title: Octoplushy, der Oktopus -paco: - description: Paco ist eine lässige, aber stilvolle Sommerhose. - title: Paco, die Hose -penelope: - description: Penelope ist ein Bleistiftrock mit oder ohne Gehschlitz in rückwärtigen Teil. - title: Penelope, der Bleistiftrock -sandy: - description: Sandy ist ein anpassungsfähiges Tellerrockschnittmuster. - title: Sandy, der Tellerrock -shin: - description: Shin ist eine sportliche Badehose. - title: Shin, die Badehose -simon: - description: Simon ist ein sehr anpassbares Hemdenschnittmuster für Personen ohne Brüste. - title: Simon, das Hemd -simone: - description: Simone ist Simon, angepasst für Menschen mit Brüsten. - title: Simone, das Hemd -sven: - description: Sven ist ein einfacher Pullover. - title: Sven, der Pullover -tamiko: - description: Tamiko ist ein Zero-Waste Top. - title: Tamiko, das Top -teagan: - description: Teagan ist ein Schnittmuster für ein passgenaues T-Shirt. - title: Teagan, das T-Shirt -theo: - description: Theo ist ein klassisches Hosenschnittmuster. - title: Theo, die Hose -tiberius: - description: Tiberius ist eine historische römische Tunika - title: Tiberius, die Tunica -titan: - description: Titan ist ein Grundschnitt für Hosen ohne Abnäher. - title: Titan, ein Hosen-Grundschnitt -trayvon: - description: Trayvon ist eine Krawatte, die für ein professionelles Ergebnis an keiner Ecke spart. - title: Trayvon, die Krawatte -unice: - description: Unice ist eine Variante von Ursula, ein elementares, stark anpassbares Schnittmuster für Unterwäsche. - title: Unice, die Unterhose -ursula: - description: Ursula ist ein elementares, stark anpassbares Schnittmuster für Unterwäsche. - title: Ursula, die Unterwäsche -wahid: - description: Wahid ist eine klassische taillierte Weste. - title: Wahid, die Weste -walburga: - description: Walburga ist ein Wappenrock, ein historisches Gewand aus dem mittelalterlichen Europa - title: Walburga, der Wappenrock -waralee: - description: Waralee ist eine Wickelhose. - title: Waralee, die Wickelhose -yuri: - description: Yuri ist ein schicker Cardigan ohne Reißverschluss, basierend auf den Huey & Hugo Hoodies - title: Yuri, der Hoodie diff --git a/packages/i18n/src/locales/de/email.yaml b/packages/i18n/src/locales/de/email.yaml deleted file mode 100644 index c60b89fe801..00000000000 --- a/packages/i18n/src/locales/de/email.yaml +++ /dev/null @@ -1,26 +0,0 @@ ---- -emailChangeActionText: 'Bestätige deine neue E-Mail-Adresse' -emailChangeCopy1: 'Du hast angefordert, die mit deinem FreeSewing.org-Account verknüpfte E-Mail-Adresse zu ändern.' -emailChangeCopy2: 'Bevor wir das tun, musst du deine neue E-Mail-Adresse bestätigen. Bitte klicke auf den folgenden Link, um das zu tun:' -emailChangeHiddenIntro: "Lass uns deine neue E-Mail-Adresse bestätigen" -emailChangeTitle: 'Bitte bestätige deine neue E-Mail-Adresse' -emailChangeWhy: 'Du hast diese E-Mail erhalten, weil du die mit deinem Konto auf Freesewing.org verknüpfte E-Mail-Adresse geändert hast' -goodbyeCopy1: "Falls du uns mitteilen möchtest, warum du gehst, kannst du gerne auf diese Nachricht antworten." -goodbyeCopy2: "Wir werden dich sonst nicht weiter stören." -goodbyeTitle: 'Vielen Dank, dass du FreeSewing eine Chance gegeben hast' -goodbyeWhy: 'Du hast diese E-Mail als endgültiges Lebewohl erhalten, nachdem du deinen Account auf FreeSewing.org entfernt hast' -passwordResetActionText: 'Erhalte erneut Zugang zu deinem Account' -passwordResetCopy1: 'Du hast dein Passwort für deinen FreeSewing.org-Account vergessen.' -passwordResetCopy2: 'Klicke auf den untenstehenden Link, um dein Passwort zurückzusetzen:' -passwordResetHeaderOpeningLine: "Keine Sorge, solche Dinge passieren uns allen" -passwordResetHiddenIntro: 'Erhalte erneut Zugang zu deinem Account' -passwordResetSubject: 'Erhalte erneut Zugang zu deinem Account auf freesewing.org' -passwordResetTitle: 'Setze dein Passwort zurück und erhalte erneut Zugang zu deinem Account' -passwordResetWhy: 'Du hast diese E-Mail erhalten, weil du die Anfrage gestellt hast, dein Passwort von freesewing.org zurückzusetzen' -questionsJustReply: "Wenn du Fragen hast, antworte einfach auf diese E-Mail. Ich bin immer gerne bereit zu helfen. 🙂" -signupActionText: 'Bestätige deine E-Mail-Adresse' -signupCopy1: 'Danke, dass du dich auf FreeSewing.org angemeldet hast.' -signupCopy2: 'Bevor wir beginnen, musst du deine E-Mail-Adresse bestätigen. Bitte klicke auf den folgenden Link, um das zu tun:' -signupHiddenIntro: "Lass uns deine E-Mail-Adresse bestätigen" -signupSubject: 'Willkommen bei FreeSewing.org' -signupWhy: 'Du hast diese E-Mail erhalten, weil du dich gerade auf freesewing.org angemeldet hast' diff --git a/packages/i18n/src/locales/de/errors.yaml b/packages/i18n/src/locales/de/errors.yaml deleted file mode 100644 index 17fade80812..00000000000 --- a/packages/i18n/src/locales/de/errors.yaml +++ /dev/null @@ -1,11 +0,0 @@ ---- -404: Die von dir gesuchte Seite kann nicht gefunden werden -confirmationNotFound: Falls du über den Link in einer Bestätigungs-E-Mail auf dieser Seite gelandet bist, empfehlen wir dir, dieses Problem zu melden. -emailExists: Wir haben bereits einen Benutzer mit dieser E-Mail-Adresse. Möchtest du dich vielleicht stattdessen einloggen? -networkError: Back-End oder Netzwerk scheint nicht verfügbar zu sein -notAValidImageFormat: Kein gültiges Bildformat -requestFailedWithStatusCode400: Anfrage fehlgeschlagen -requestFailedWithStatusCode401: Authentifizierung fehlgeschlagen -requestFailedWithStatusCode403: Verboten -requestFailedWithStatusCode500: Es gab ein unerwartetes Problem. Bitte melde dies. -something: Etwas ist schiefgelaufen diff --git a/packages/i18n/src/locales/de/filter.yml b/packages/i18n/src/locales/de/filter.yml deleted file mode 100644 index 3e6ed09b504..00000000000 --- a/packages/i18n/src/locales/de/filter.yml +++ /dev/null @@ -1,20 +0,0 @@ ---- -filter: Filter -department: Abteilung -type: Art -tags: Stichworte -code: Code -design: Gestaltung -difficulty: Schwierigkeit -resetFilter: Filter zurücksetzen -accessories: Accessoires -block: Grundschnitt -pattern: Schnittmuster -byPattern: Filtern nach Schnittmuster -underwear: Unterwäsche -top: Oben -tops: Oberteile -bottom: Unten -bottoms: Hosen, Röcke, etc -coats: Mäntel & Jacken -swimwear: Bademode diff --git a/packages/i18n/src/locales/de/i18n.yaml b/packages/i18n/src/locales/de/i18n.yaml deleted file mode 100644 index 504d3a9b396..00000000000 --- a/packages/i18n/src/locales/de/i18n.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -de: Deutsch -en: Englisch -es: Spanisch -fr: Französisch -nl: Niederländisch diff --git a/packages/i18n/src/locales/de/index.js b/packages/i18n/src/locales/de/index.js deleted file mode 100644 index 328625f6af9..00000000000 --- a/packages/i18n/src/locales/de/index.js +++ /dev/null @@ -1,85 +0,0 @@ -import account from './account.yaml' -import app from './app.yaml' -import cfp from './cfp.yaml' -import cty from './cty.yaml' -import email from './email.yaml' -import errors from './errors.yaml' -import filter from './filter.yml' -import gdpr from './gdpr.yaml' -import i18n from './i18n.yaml' -import intro from './intro.yaml' -import measurements from './measurements.yaml' -import lab from './lab.yaml' -import options from './options/' -import optiongroups from './optiongroups.yaml' -import parts from './parts.yaml' -import patterns from './patterns.yml' -import plugin from './plugin/' -import settings from './settings.yml' -import welcome from './welcome.yaml' - -import jargonFile from './jargon.yml' - -const topics = { - account, - app, - cfp, - cty, - email, - errors, - filter, - gdpr, - i18n, - intro, - measurements, - lab, - options, - optiongroups, - parts, - patterns, - plugin, - settings, - welcome, -} - -const strings = {} - -for (let topic of Object.keys(topics)) { - for (let id of Object.keys(topics[topic])) { - if (typeof topics[topic][id] === 'string') strings[topic + '.' + id] = topics[topic][id] - else { - for (let key of Object.keys(topics[topic][id])) { - if (typeof topics[topic][id][key] === 'string') - strings[topic + '.' + id + '.' + key] = topics[topic][id][key] - else { - for (let subkey of Object.keys(topics[topic][id][key])) { - if (typeof topics[topic][id][key][subkey] === 'string') - strings[topic + '.' + id + '.' + key + '.' + subkey] = topics[topic][id][key][subkey] - else { - for (let subsubkey of Object.keys(topics[topic][id][key][subkey])) { - if (typeof topics[topic][id][key][subkey][subsubkey] === 'string') - strings[topic + '.' + id + '.' + key + '.' + subkey + '.' + subsubkey] = - topics[topic][id][key][subkey][subsubkey] - else { - console.log('Depth exceeded!', topic, id, key, subkey, subsubkey) - } - } - } - } - } - } - } - } -} - -const jargon = {} -for (let entry in jargonFile) { - jargon[jargonFile[entry].term] = jargonFile[entry].description -} - -export default { - strings, - plugin, - jargon, - topics, -} diff --git a/packages/i18n/src/locales/de/intro.yaml b/packages/i18n/src/locales/de/intro.yaml deleted file mode 100644 index add1ecdc3b5..00000000000 --- a/packages/i18n/src/locales/de/intro.yaml +++ /dev/null @@ -1,12 +0,0 @@ ---- -txt-blog: Neuigkeiten, Updates und Ankündigungen des Freesewing-Teams -txt-community: 'Alles wird von freiwilligen Mitwirkenden am Leben erhalten. Es existieren keine kommerziellen Absichten im Zusammenhang mit diesem Projekt.' -txt-different: Was uns von anderen unterscheidet -txt-draft: "Wähle eines deiner Schnittmuster, wähle ein Modell und lege die Optionen fest. Den Rest erledigen wir." -txt-how: So funktioniert es -txt-join: Schließe dich Tausenden anderer an und erstelle einen kostenlosen Account auf freesewing.org. -txt-model: Alle unsere Schnittmuster werden nach individuellen Maßen gefertigt. Nimm daher zuallererst das Maßband zur Hand. -txt-newHere: "Wenn du hier neu bist, ist unsere Demo der beste Startpunkt:" -txt-opensource: 'Unsere Plattform, unsere Schnittmuster und sogar diese Website: Unser gesamter Code ist auf GitHub zugänglich. Pull-Requests sind jederzeit herzlich willkommen!' -txt-patrons: Freesewing wird durch die finanzielle Unterstützung unserer Förderer/-innen überhaupt erst ermöglicht. Scrolle nach unten, um mehr über unser Abonnementmodell zu erfahren. -txt-showcase: Abgeschlossene Projekte aus der Freesewing-Community diff --git a/packages/i18n/src/locales/de/jargon.yml b/packages/i18n/src/locales/de/jargon.yml deleted file mode 100644 index da72bb8b9e5..00000000000 --- a/packages/i18n/src/locales/de/jargon.yml +++ /dev/null @@ -1,85 +0,0 @@ ---- -basting: - term: Heften - description: "Siehe Heften in der Dokumentation zum Nähen" -coverlock: - term: Coverlock - description: "Siehe Coverlock in der Dokumentation zum Nähen" -cutting: - term: Zuschnitt - description: "Siehe Zuschnitt in der Dokumentation zum Nähen" -darts: - term: Abnäher - description: "Abnäher in der Dokumentation zum Nähen" -doubleWeltPockets: - term: Doppelpaspeltaschen - description: "Siehe Doppelpaspeltasche in der Dokumentation zum Nähen" -ease: - term: Zugabe - description: "Siehe Zugabe in der Dokumentation zum Nähen" -edgestitch: - term: Nähte absteppen - description: "Siehe Nähte absteppen in der Dokumentation zum Nähen" -fabricGrain: - term: Fadenlauf - description: "Siehe Fadenlauf in der Dokumentation zum Nähen" -goodSidesTogether: - term: rechts auf rechts - description: "Siehe rechts auf rechts in der Dokumentation zum Nähen" -onTheFold: - term: im Stoffbruch - description: "Siehe Im Stoffbruch in der Dokumentation zum Nähen" -hemming: - term: Säumen - description: "Siehe Säumen in der Dokumentation zum Nähen" -jersey: - term: Jersey - description: "Siehe Jersey in der Dokumentation zum Nähen" -knitBinding: - term: Kantenabschluss mit Maschenware - description: "Siehe Kantenabschluss mit Maschenware in der Dokumentation zum Nähen" -knitFabric: - term: Maschenware - description: "Siehe Maschenware in der Dokumentation zum Nähen" -pinning: - term: Stecken - description: "Siehe Stecken in der Dokumentation zum Nähen" -rayon: - term: Rayon - description: "Siehe Rayon in der Dokumentation zum Nähen" -sa: - term: Nahtzugabe - description: "Siehe Nahtzugabe in der Dokumentation zum Nähen" -serger: - term: Overlock - description: "Siehe Overlock in der Dokumentation zum Nähen" -slipstitch: - term: Kettstich - description: "Siehe Kettstich in der Dokumentation zum Nähen" -topstitching: - term: Absteppen - description: "Siehe Absteppen in der Dokumentation zum Nähen" -trimming: - term: Zurückschneiden - description: "Siehe Zurückschneiden in der Dokumentation zum Nähen" -twinNeedle: - term: Zwillingsnadel - description: "Siehe Zwillingsnadel in der Dokumentation zum Nähen" -zigZag: - term: Zickzackstich - description: "Siehe Zickzackstich in der Dokumentation zum Nähen" -freesewing: - term: freesewing - description: 'FreeSewing ist eine Open-Source Plattform für Schnittmuster nach Maß' -patternOptions: - term: Schnittmusteroptionen - description: 'Die Schnittmusteroptionen erlauben es dir, das Design des Schnittmusters anzupassen' -draftSettings: - term: Entwurfseinstellungen - description: 'Mit den Entwurfseinstellungen legst du fest, wie ein Schnittmuster erzeugt wird' -patrons: - term: Förderer/-innen - description: 'Förderer/-innen unterstützen Freesewing finanziell. Sie sind treue Unterstützer/-innen, die für eine nachhaltige Zukunft für freesewing.org, unseren Code, unsere Schnittmuster und unsere Community sorgen.' -msf: - term: MSF - description: "Médecins Sans Frontières/Ärzte ohne Grenzen - Siehe msf.org" diff --git a/packages/i18n/src/locales/de/lab.yaml b/packages/i18n/src/locales/de/lab.yaml deleted file mode 100644 index 7859733d54e..00000000000 --- a/packages/i18n/src/locales/de/lab.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -slogan: Das FreeSewing Lab liefert -slogan1: Alle unsere Schnittmuster-Designs -slogan2: Neue & alte Versionen -slogan3: Code auf dem allerneuesten Stand -slogan4: Unveröffentlichte Designs diff --git a/packages/i18n/src/locales/de/loader.yaml b/packages/i18n/src/locales/de/loader.yaml deleted file mode 100644 index 28e15463c50..00000000000 --- a/packages/i18n/src/locales/de/loader.yaml +++ /dev/null @@ -1 +0,0 @@ -processing: In Bearbeitung diff --git a/packages/i18n/src/locales/de/ograph.yaml b/packages/i18n/src/locales/de/ograph.yaml deleted file mode 100644 index 6d6780ef847..00000000000 --- a/packages/i18n/src/locales/de/ograph.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -orgTitle: Welcome to FreeSewing.org -devTitle: Welcome to FreeSewing.dev -labTitle: Welcome to lab.FreeSewing.lab -orgDescription: Come for the sewing patterns
Stay for the community -devDescription: Documentation and tutorials for FreeSewing developers and contributors. Plus our Developers Blog diff --git a/packages/i18n/src/locales/de/optiongroups.yaml b/packages/i18n/src/locales/de/optiongroups.yaml deleted file mode 100644 index 4cdb6c904e4..00000000000 --- a/packages/i18n/src/locales/de/optiongroups.yaml +++ /dev/null @@ -1,25 +0,0 @@ ---- -advanced: Fortgeschritten -armhole: Armloch -closure: Verschluss -collar: Kragen -construction: Konstruktion -cuffs: Manschetten -darts: Abnäher -elastic: Gummi -fit: Passform -pockets: Taschen -preferences: Einstellungen -sleevecap: Armkugel -sleeves: Ärmel -style: Stil -backPockets: Gesäßtaschen -frontPockets: Vordere Taschen -waistband: Bund -fly: Hosenstall -bellaDarts: Bella Abnäher -bellaArmhole: Bella Armloch -bellaAdvanced: Bella Fortgeschritten -clavi: Clavi -type: Art -size: Größe diff --git a/packages/i18n/src/locales/de/options/aaron.yml b/packages/i18n/src/locales/de/options/aaron.yml deleted file mode 100644 index 58d4fb18e79..00000000000 --- a/packages/i18n/src/locales/de/options/aaron.yml +++ /dev/null @@ -1,25 +0,0 @@ ---- -armholeDrop: - title: Armlochabsenkung - description: Senkt das Armloch um diesen Wert. Negative Werte erhöhen es. -backlineBend: - title: Hintere Armlochform - description: Bestimmt die Form / Krümmung der Rückseite der Armlöcher. -hipsEase: - title: Bequemlichkeitszugabe Hüfte - description: Die Menge an Bequemlichkeits-/Bewegungszugabe an deinen Hüften. -necklineBend: - title: Ausschnittsform - description: Bestimmt die Form / Krümmung des Halsausschnitts vorne. -necklineDrop: - title: Ausschnitt Tiefe - description: Wie tief der Ausschnitt vorne geht. -shoulderStrapPlacement: - title: Platzierung der Schulterträger - description: Bestimmt, ob der Schulterträger näher am Hals (niedrigere Zahlen), oder näher an der Schulter (höhere Zahlen) liegt. -shoulderStrapWidth: - title: Breite der Schulterträger - description: Die Breite der Schulterträger. -stretchFactor: - description: Bestimmt die horizontale negative Bewegungszugabe. - title: Dehnung diff --git a/packages/i18n/src/locales/de/options/albert.yml b/packages/i18n/src/locales/de/options/albert.yml deleted file mode 100644 index c914d91be1e..00000000000 --- a/packages/i18n/src/locales/de/options/albert.yml +++ /dev/null @@ -1,20 +0,0 @@ ---- -backOpening: - title: Hintere Öffnung - description: Steuert die Öffnung an der Rückseite der Schürze -chestDepth: - title: Länge des Riemens - description: Steuert die Länge der Riemen -lengthBonus: - title: Längenzugabe - description: Steuert die Länge der Schürze -bibLength: - title: Latzlänge - description: Steuert die Länge des Latzes -bibWidth: - title: Latzbreite - description: Steuert die Breite des Latzes -strapWidth: - title: Riemenbreite - description: Steuert die Breite des Riemens - diff --git a/packages/i18n/src/locales/de/options/bee.yml b/packages/i18n/src/locales/de/options/bee.yml deleted file mode 100644 index ac2dcf559cc..00000000000 --- a/packages/i18n/src/locales/de/options/bee.yml +++ /dev/null @@ -1,82 +0,0 @@ ---- -chestEase: - title: Brustzugabe - description: Kontrolliert die Brustzugabe des zugrunde liegenden Grundschnittes "Bella" auf welchem Bee basiert -waistEase: - title: Taillenzugabe - description: Kontrolliert die Taillenzugabe des zugrunde liegenden Grundschnittes "Bella" auf welchem Bee basiert -bustSpanEase: - title: Zugabe im Abstand der Brustpunkte - description: Kontrolliert die Zugabe des Abstandes der Brustpunkte des zugrunde liegenden Grundschnittes "Bella" auf welchem Bee basiert -topDepth: - title: Obere Tiefe - description: Kontrolliert, wie weit sich der Bikini-Cup nach oben erstreckt -bottomCupDepth: - title: Untere Tiefe - description: Kontrolliert, wie weit sich der Bikini-Cup nach unten erstreckt -sideDepth: - title: Seitliche Tiefe - description: Kontrolliert, wie weit sich der Bikini-Cup zur Seite erstreckt -sideCurve: - title: Seitliche Kurve - description: Kontrolliert die Krümmung der Seite des Bikini-Cups -frontCurve: - title: Vordere Kurve - description: Kontrolliert die Krümmung der Vorderseite des Bikini-Cups -bellaGuide: - title: Bella anzeigen - description: Zeigt die Umrisse des Bella-Grundschnittes an, auf dem Bee basiert -ties: - title: Bänder - description: Sollen Bänder hinzugefügt werden, ja oder nein -bandTieWidth: - title: Breite des Brustbandes - description: Kontrolliert die Breite des Bandes um deinen Brustkorb -bandTieLength: - title: Länge des Brustbandes - description: Kontrolliert die Länge des Bandes um deinen Brustkorb -bandTieEnds: - title: Enden des Brustbandes - description: Möchtest du gerade oder spitze Enden des Brustbandes? -bandTieColours: - title: Farben des Brustbandes - description: Möchtest du ein- oder mehrfarbige Brustbänder? -neckTieWidth: - title: Breite des Nackenträgers - description: Steuert die Breite des Nackenträgers -neckTieLength: - title: Länge des Nackenträgers - description: Steuert die Länge des Nackenträgers -neckTieEnds: - title: Enden des Nackenträgers - description: Möchtest du gerade oder spitze Enden des Nackenträgers? -neckTieColours: - title: Farben des Nackenträgers - description: Möchtest du ein- oder mehrfarbige Nackenträger? -crossBackTies: - title: Gekreuzte Rückenträger - description: Möchtest du die Version von Bee mit gekreuzten Rückenträgern? -bandLength: - title: Länge der gekreuzten Rückenträger - description: Kontrolliert die Länge Brustbandes für die Variante von Bee mit gekreuzten Rückenträgern -backDartHeight: - title: Höhe der Rückenabnäher (Bella) - description: Kontrolliert die Höhe der Rückenabnäher des zugrunde liegenden Grundschnittes "Bella" auf welchem Bee basiert -armholeDepth: - title: Tiefen des Armloches (Bella) - description: Kontrolliert die Tiefe des Armloches des zugrunde liegenden Grundschnittes "Bella" auf welchem Bee basiert -frontArmholePitchDepth: - title: Tiefe des vorderen Armlochdrehpunktes (Bella) - description: Kontrolliert die Tiefe des vorderen Armlochdrehpunktes des zugrunde liegenden Grundschnittes "Bella" auf welchem Bee basiert -frontShoulderWidth: - title: Vordere Schulterbreite (Bella) - description: Kontrolliert die vordere Schulterbreite des zugrunde liegenden Grundschnittes "Bella" auf welchem Bee basiert -fullChestEaseReduction: - title: Full chest reduction (Bella) - description: Controls the full chest reduction in the underlying Bella block Bee is based on -highBustWidth: - title: Hohe Brustweite (Bella) - description: Kontrolliert die hohe Brustbreite des zugrunde liegenden Grundschnittes "Bella" auf welchem Bee basiert -shoulderToShoulderEase: - title: Shoulder to Shoulder ease (Bella) - description: Controls the shoulder to shoulder ease in the underlying Bella block Bee is based on diff --git a/packages/i18n/src/locales/de/options/bella.yml b/packages/i18n/src/locales/de/options/bella.yml deleted file mode 100644 index 02555cf8e4e..00000000000 --- a/packages/i18n/src/locales/de/options/bella.yml +++ /dev/null @@ -1,58 +0,0 @@ ---- -chestEase: - title: Brustumfangszugabe - description: Steuert die Größe der Zugabe zum Brustumfang -waistEase: - title: Taillenzugabe - description: Steuert die Menge an Leichtigkeit in deiner Taille -bustSpanEase: - title: Zugabe seitlicher Brustbereich - description: "Steuert die Größe der (horizontalen) Zugabe, zu deinem seitlichen Brustbereich, \nwenn Brustpunkt berechnet wird." -shoulderToShoulderEase: - title: Zugabe des Schulterabstandes - description: Kontrolliert die Menge an Zugabe zwischen deinen Schultern. Liegt inital bei -0,5%, da Bella ein Grundschnitt erfüllt, welcher in der Branche verwendet wird. -fullChestEaseReduction: - title: Verringerung der Brustumfangszugabe - description: Ermöglicht es dir den Spielraum an der Brust zu verringern, um dort einen engeren Sitz zu ermöglichen -backDartHeight: - title: Höhe Rückenabnäher - description: Steuert die Höhe des Rückenabnähers -bustDartLength: - title: Länge des Brustabnähers - description: Steuert die Länge des Brustabnähers -waistDartLength: - title: Länge des Taillenabnähers - description: Steuert die Länge des Taillenabnähers -bustDartCurve: - title: Rundung Brustabnäher - description: Steuert die Krümmung des Büstendarts -armholeDepth: - title: Armlochtiefe - description: Steuert die Tiefe des Armloches -backArmholeSlant: - title: Hintere Armlochschiebung - description: Dreht das Armloch leicht in seinem Drehpunkt -frontArmholeCurvature: - title: Vordere Armlochkrümmung - description: Steuert wie tief das Armloch nach vorne unten ausgeschnitten ist -backArmholeCurvature: - title: Hintere Armlochkrümmung - description: Steuert wie tief das Armloch nach hinten unten ausgeschnitten ist -frontArmholePitchDepth: - title: Vordere Armlochtiefe - description: Stellt die horizontale Position des Vorderarmlochpunktes fest -backArmholePitchDepth: - title: Rückenarmloch-Tiefe - description: Stellt die horizontale Position des Rückenlochpunktes fest -backNeckCutout: - title: Ausschnitt im Nacken - description: Steuert, wie tief der Nackenausschnit am Rücken ausfällt -backHemSlope: - title: Neigung des hinteren Saumes - description: Steuert den Hang des Saum auf der Rückseite -frontShoulderWidth: - title: Vordere Schulterbreite - description: Steuert die Schmalheit der vorderen Schultern relativ zum Rücken -highBustWidth: - title: Oberbrustweite - description: Erlaubt es dir die Oberbrustweite vorne zu optimieren diff --git a/packages/i18n/src/locales/de/options/benjamin.yml b/packages/i18n/src/locales/de/options/benjamin.yml deleted file mode 100644 index e4d385ec7ab..00000000000 --- a/packages/i18n/src/locales/de/options/benjamin.yml +++ /dev/null @@ -1,28 +0,0 @@ ---- -adjustmentRibbon: - title: Einstellband - description: Einstellband verwenden oder nicht -bandLength: - title: Bandlänge - description: Lände des Bandes -tipWidth: - title: Spitzenbreite - description: Breite der Spitzen -knotWidth: - title: Knotenbreite - description: Breite des Knotens -bowLength: - title: Fliegenlänge - description: Länge der Fliege (wenn geknotet) -bowStyle: - title: Fliegen-Stil - description: Stil der Fliege -endStyle: - title: Enden-Stil - description: Stil für die Enden der Fliege -collarEase: - title: Kragen Zugabe - description: Die Menge an Zugabe an deinem Hals -ribbonWidth: - title: Bänderbreite - description: Breite des Bandes diff --git a/packages/i18n/src/locales/de/options/bent.yml b/packages/i18n/src/locales/de/options/bent.yml deleted file mode 100644 index 9667902b57d..00000000000 --- a/packages/i18n/src/locales/de/options/bent.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- -sleeveBend: - title: Ärmelkrümmung - description: Steuert die Krümmung des Ärmels am Ellbogen. -sleevecapHeight: - title: Armkugel Höhe - description: Steuert die Höhe der Armkugel. - diff --git a/packages/i18n/src/locales/de/options/bob.yml b/packages/i18n/src/locales/de/options/bob.yml deleted file mode 100644 index 88434560709..00000000000 --- a/packages/i18n/src/locales/de/options/bob.yml +++ /dev/null @@ -1,12 +0,0 @@ -neckRatio: - title: Halsöffnung - description: Steuert die Größe der Halsöffnung in Relation zu der Größe des Lätzchens -widthRatio: - title: Breite - description: Steuert die Breite des Latzes -lengthRatio: - title: Länge - description: Steuert die Länge des Latzes -headSize: - title: Kopfgröße - description: Der Kopfumfang, für den das Lätzchen passen soll diff --git a/packages/i18n/src/locales/de/options/breanna.yml b/packages/i18n/src/locales/de/options/breanna.yml deleted file mode 100644 index 41828ef41d6..00000000000 --- a/packages/i18n/src/locales/de/options/breanna.yml +++ /dev/null @@ -1,41 +0,0 @@ ---- -shoulderDart: - title: Schulterabnäher - description: Ob ein Abnäher an der Schulter zur Abrundung des Rückens hinzugefügt werden soll oder nicht -shoulderDartSize: - title: Größe der Schulterabnäher - description: Größe des Schulterabnähers -shoulderDartLength: - title: Länge des Schulterabnähers - description: Die Länge des Abnähers an der Schulter -waistDart: - title: Taillenabnäher - description: Ob ein Abnäher an der Taille zur Abrundung des Rückens hinzugefügt werden soll oder nicht -waistDartSize: - title: Größe des Taillenabnähers - description: Die Größe des Abnähers an der Taille -waistDartLength: - title: Länge des Taillenabnähers - description: Die Länge des Abnähers an der Taille -verticalEase: - title: Vertikale Zugabe - description: Die Menge an Zugabe, die über die Länge des Kleidungsstückes verteilt wird -waistEase: - title: Taillenzugabe - description: Die Menge an Bequemlichkeits-/Bewegungszugabe an der Taille -primaryBustDart: - title: Brustabnäher - description: Wo der Büstendart platziert wird, um die Brust zu formen -primaryBustDartLength: - title: Länge des Brustabnähers - description: Die Länge des Abnähers an der Brust -secondaryBustDart: - title: Sekundärer Brustabnäher - description: Optional einen sekundären Büstendart zur Verteilung der Form der Brust -secondaryBustDartLength: - title: Länge des sekundären Brustabnähers - description: Die Länge des sekundären Abnähers an der Brust -primaryBustDartShaping: - title: Formgebung der Brustabnäher - description: Steuert die Balance zwischen den sekundären und den Hauptbrustabnähern - diff --git a/packages/i18n/src/locales/de/options/brian.yml b/packages/i18n/src/locales/de/options/brian.yml deleted file mode 100644 index 4851a8e44c0..00000000000 --- a/packages/i18n/src/locales/de/options/brian.yml +++ /dev/null @@ -1,106 +0,0 @@ ---- -acrossBackFactor: - title: Rückenweitenverhältnis - description: Beeinflusst das Verhältnis zwischen Rücken- und Schulterweite measurement. -armholeDepthFactor: - title: Tiefenfaktor des Armloches - description: Steuert die Tiefe des Armloches. Höhere Werte ergeben ein tieferes Armloch. -backNeckCutout: - title: Ausschnitt im Nacken - description: Wie tief der Hals am Rücken ausgeschnitten ist -bicepsEase: - title: Bizeps Zugabe - description: 'Die Menge an Bewegungszugabe am Oberarm. Während wir versuchen, dies zu respektieren, hat das genaue Anbringen des Ärmels am Armloch Vorrang vor der Einhaltung der genauen Zugabe.' -collarEase: - title: Kragen Zugabe - description: Die Menge an Bequemlichkeits-/Bewegungszugabe um deinen Hals herum -chestEase: - title: Brustzugabe - description: Die Menge an Bewegungs-/Bequemlichkeitszugabe an deiner Brust. -cuffEase: - title: Manschette Zugabe - description: Die Bequemlichkeits-/Bewegungszugabe am Handgelenk. -draftForHighBust: - title: Entwurf für hohe Büste - description: Zeichnen Sie das Muster für die hohe Büstenmessung (falls vorhanden) statt der (vollen) Truhe. Dies wird zu einem besser angepassten Kleidungsstück für Brustkleidung führen. -frontArmholeDeeper: - title: Zusätzlicher Ausschnitt am vorderen Armloch - description: Um wie viel das vordere Armloch tiefer ausgeschnitten ist als im Rücken. -lengthBonus: - title: Längenzugabe - description: Der Betrag, um den das Kleidungsstück verlängert wird. Ein negativer Wert verkürzt es. -s3Collar: - title: 'Schulternahtverschiebung: Kragenseite' - description: Vergrößern Sie diese Option, um die SchulterNaht auf der Kragenseite nach vorne zu verschieben. Verringert sie sie rückwärts. -s3Armhole: - title: 'Schulternahtverschiebung: Armlochseite' - description: Erhöhe diese Option, um die SchulterNaht auf der Armlochseite nach vorne zu verschieben. Verringert sie sie rückwärts. -shoulderEase: - title: Schulter Zugabe - description: Die Menge an Bequemlichkeits-/Bewegungszugabe an der Schulter. Dies erhöht den Schulterabstand, um zusätzliche Lagen oder die Dicke des Stoffes zu beherbergen. -shoulderSlopeReduction: - title: Verringerung der Schulterneigung - description: Der Betrag, um den die Schulterneigung reduziert wird, um eine Schulterpolsterung zu ermöglichen. -sleeveLengthBonus: - title: Ärmel Längenzugabe - description: Der Betrag, um den der Ärmel verlängert wird. Ein negativer Wert verkürzt ihn. -sleevecapEase: - title: Armkugel Zugabe - description: Der Betrag, um den die Armkugelnaht länger ist als die Armlochnaht. -sleevecapTopFactorX: - title: Armkugel Oben X - description: Steuert die horizontale Position der Armkugel oben. -sleevecapTopFactorY: - title: Armkugel Oben Y - description: Steuert die Höhe der Armkugel. Ein höherer Wert führt zu einer höheren und schmaleren Armkugel. -sleevecapBackFactorX: - title: Armkugel Hinten X - description: Steuert die Platzierung des hinteren Neigungspunkts der Armkugel auf der X-Achse (horizontal) -sleevecapBackFactorY: - title: Armkugel Hinten Y - description: Steuert die Platzierung des hinteren Neigungspunkts der Armkugel auf der Y-Achse (vertikal) -sleevecapFrontFactorX: - title: Armkugel Vorne X - description: Steuert die Platzierung des vorderen Neigungspunkts der Armkugel auf der X-Achse (horizontal) -sleevecapFrontFactorY: - title: Armkugel Vorne Y - description: Steuert die Platzierung des vorderen Neigungspunkts der Armkugel auf der Y-Achse (vertikal) -sleevecapQ1Offset: - title: Offset der Armkugel Q1 - description: Steuert die Krümmung der Armkugel im ersten Quadranten (vorderes Armloch) -sleevecapQ2Offset: - title: Offset der Armkugel Q2 - description: Steuert die Krümmung der Armkugel im zweiten Quadranten (vordere Schulter) -sleevecapQ3Offset: - title: Offset der Armkugel Q3 - description: Steuert die Krümmung der Armkugel im dritten Quadranten (hintere Schulter) -sleevecapQ4Offset: - title: Offset der Armkugel Q4 - description: Steuert die Krümmung der Armkugel im vierten Quadranten (hinteres Armloch) -sleevecapQ1Spread1: - title: Armkugel Q1 Spreizung nach unten - description: Steuert die Spreizung der Armkugel im ersten Quadranten in Richtung des Armlochs -sleevecapQ1Spread2: - title: Armkugel Q1 Spreizung nach oben - description: Steuert die Spreizung der Armkugel im ersten Quadranten in Richtung der Schulter -sleevecapQ2Spread1: - title: Armkugel Q2 Spreizung nach unten - description: Steuert die Spreizung der Armkugel im zweiten Quadranten in Richtung des Armlochs -sleevecapQ2Spread2: - title: Armkugel Q2 Spreizung nach oben - description: Steuert die Spreizung der Armkugel im zweiten Quadranten in Richtung der Schulter -sleevecapQ3Spread1: - title: Armkugel Q3 Spreizung nach oben - description: Steuert die Spreizung der Armkugel im dritten Quadranten in Richtung der Schulter -sleevecapQ3Spread2: - title: Armkugel Q3 Spreizung nach unten - description: Steuert die Spreizung der Armkugel im dritten Quadranten in Richtung des Armlochs -sleevecapQ4Spread1: - title: Armkugel Q4 Spreizung nach oben - description: Steuert die Spreizung der Armkugel im vierten Quadranten in Richtung der Schulter -sleevecapQ4Spread2: - title: Armkugel Q4 Spreizung nach unten - description: Steuert die Spreizung der Armkugel im vierten Quadranten in Richtung des Armlochs -sleeveWidthGuarantee: - title: Garantie der Ärmelbreite - description: Steuert, wie viel von der Ärmelbreite garantiert wird. Dies bestimmt, um wie viel wir die Ärmelbreite verändern können, um die Ärmel in das Armloch einzupassen. diff --git a/packages/i18n/src/locales/de/options/bruce.yml b/packages/i18n/src/locales/de/options/bruce.yml deleted file mode 100644 index 5776d783cf0..00000000000 --- a/packages/i18n/src/locales/de/options/bruce.yml +++ /dev/null @@ -1,19 +0,0 @@ ---- -bulge: - title: Wölbung - description: Vergrößert den Winkel, um mehr Platz in der vorderen Tasche zu schaffen. -legBonus: - title: Beinlängen-Bonus - description: Zusätzliche Länge für die Beine. -rise: - title: Anstieg - description: Betrag, um den die Taille angehoben wird. Ein negativer Wert senkt sie ab. -stretch: - title: Dehnung - description: Die Menge an negativer Bewegungszugabe. -legStretch: - title: Bein Dehnung - description: 'Das beste Ergebnis erzielst du, wenn du den Sitz der Beine etwas enger machst — Sag Nein zu klaffenden Lücken.' -backRise: - title: Hintere Anstieg - description: Betrag, um den die Taille hinten angehoben wird. diff --git a/packages/i18n/src/locales/de/options/carlita.yml b/packages/i18n/src/locales/de/options/carlita.yml deleted file mode 100644 index 9ab3f567fa9..00000000000 --- a/packages/i18n/src/locales/de/options/carlita.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -contour: - title: Kontur - description: Legt fest, wie stark figurbetont die Wiener Nähte sind. diff --git a/packages/i18n/src/locales/de/options/carlton.yml b/packages/i18n/src/locales/de/options/carlton.yml deleted file mode 100644 index 7694204aef2..00000000000 --- a/packages/i18n/src/locales/de/options/carlton.yml +++ /dev/null @@ -1,31 +0,0 @@ ---- -seatEase: - title: Hüftzugabe - description: Menge an Bequemlichkeits-/Bewegungszugabe an deinem Hintern -pocketPlacementHorizontal: - title: Horizontale Taschenplatzierung - description: Die (horizontale) Position der Taschen -pocketPlacementVertical: - title: Vertikale Taschenplatzierung - description: Die (vertikale) Position der Taschen -collarHeight: - title: Kragenhöhe - description: Höhe des Kragens -length: - title: Länge - description: Gesamtlänge -pocketFlapRadius: - title: Taschenlaschenradius - description: Der Betrag, um den die Taschenlasche abgerundet ist -pocketRadius: - title: Taschenradius - description: Der Betrag, um den die Tasche abgerundet ist -chestPocketHeight: - title: Brusttaschenhöhe - description: Höhe der Brusttasche -beltWidth: - title: Gürteilbreite - description: Breite des Gürtels -buttonSpacingHorizontal: - title: Horizontaler Knopfabstand - description: Horizontaler Abstand der Knöpfe, bestimmt auch den Übertritt des vorderen Verschlusses diff --git a/packages/i18n/src/locales/de/options/cathrin.yml b/packages/i18n/src/locales/de/options/cathrin.yml deleted file mode 100644 index 78b7d0628a7..00000000000 --- a/packages/i18n/src/locales/de/options/cathrin.yml +++ /dev/null @@ -1,28 +0,0 @@ ---- -panels: - title: Anzahl der Schnittteile - description: Die Anzahl der zu erstellenden Schnittteile. Mehr Schnittteile passen kurvenreicheren Modellen besser. - options: - '11': 11 Schnittteile - '13': 13 Schnittteile -waistReduction: - title: Taillenreduzierung - description: Der Betrag, um den das Korsett deine Taille einschnüren soll. -backOpening: - title: Hintere Öffnung - description: Öffnung in der hinteren Mitte -backRise: - title: Anstieg hinten - description: Wie stark sich die hinteren Schnittteile von den Armen bis zur hinteren Mitte erstrecken. -backDrop: - title: Rückenabsenkung - description: Wie weit sich die hinteren Schnittteile von den Hüften in Richtung Rückenmitte absenken. Negative Werte heben den Rücken an. -frontRise: - title: Frontanstieg - description: 'Aufstieg der Frontteile in der Mitte zwischen den Brüsten. Negative Werte verringern sie.' -frontDrop: - title: Frontabsenkung - description: Wie weit sich die Frontteile von Ihrer Hüfte in Richtung Ihrer Mittelfront absenken. -hipRise: - title: Hüftanstieg - description: Wie stark die Seitenteile auf den Hüften stehen. diff --git a/packages/i18n/src/locales/de/options/charlie.yml b/packages/i18n/src/locales/de/options/charlie.yml deleted file mode 100644 index d7fa40ffbc1..00000000000 --- a/packages/i18n/src/locales/de/options/charlie.yml +++ /dev/null @@ -1,52 +0,0 @@ ---- -backPocketHorizontalPlacement: - title: Horizontale Platzierung der hinteren Tasche - description: Steuert die horizontale Platzierung der hinteren Tasche -backPocketVerticalPlacement: - title: Vertikale Platzierung der hinteren Tasche - description: Steuert die vertikale Platzierung der hinteren Tasche -backPocketWidth: - title: Breite der hinteren Tasche - description: Steuert die Breite der hinteren Tasche -backPocketDepth: - title: Tiefe der hinteren Tasche - description: Steuert die Tiefe der hinteren Tasche -backPocketFacing: - title: Besatz der hinteren Tasche - description: Legt fest, ob die hinteren Taschen Besatz haben sollen oder nicht -frontPocketSlantDepth: - title: Vordertasche Schrägtiefe - description: Steuert die Tiefe des (vorder) Taschenschlitzes -frontPocketSlantWidth: - title: Fronttasche Schrägbreite - description: Steuert die Breite des (vorder) Taschenschlitzes -frontPocketSlantRound: - title: Vordertaschenschlitzrunde - description: Stellt fest, wie weit wir vom Ende der Schrägheit entfernt anfangen in das Aussennaht zu runden -frontPocketSlantBend: - title: Vordertaschenschräg Biegen - description: Steuert den Radius, mit dem wir die Taschenschiebung in die Außennaht umdrehen -frontPocketWidth: - title: Breite der Fronttasche - description: Steuert die Breite der Vordertasche -frontPocketDepth: - title: Tiefe der Vordertasche - description: Steuert die Tiefe der Vordertasche -frontPocketFacing: - title: Fronttasche - description: Legt fest, wie weit die Tasche in die Tasche hineinreicht -beltLoops: - title: Gürtelschlaufen - description: Steuert die Anzahl der Gürtelschlaufen -flyCurve: - title: Flugkurve - description: Steuert die Krümmung der Fliege J-Naht -flyLength: - title: Fluglänge - description: Steuert die Länge der Fliege -flyWidth: - title: Fly width - description: Bestimmt, wie weit die J-Naht-Versatz vom Fliegenrand entfernt ist -waistbandCurve: - title: Taillenband Kurve - description: Steuert die Kurven der Taille. diff --git a/packages/i18n/src/locales/de/options/cornelius.yml b/packages/i18n/src/locales/de/options/cornelius.yml deleted file mode 100644 index 51093c9fd2b..00000000000 --- a/packages/i18n/src/locales/de/options/cornelius.yml +++ /dev/null @@ -1,26 +0,0 @@ ---- -fullness: - title: Fülle - description: Steuert die Fülle der Hosen -waistbandBelowWaist: - title: Unterer Taillenband - description: Prozentsatz um die Taille unter die aktuelle Taille zu bewegen -waistReduction: - title: Taillenreduzierung - description: Prozentsatz um die Taille zu reduzieren -cuffWidth: - title: Cuff width - description: Breite der Beinschicht -cuffStyle: - title: Manschettenstil - description: Stil der Beinmanschette -bandBelowKnee: - title: Kuff unter dem Knie - description: Steuert die Manschettendistanz vom Knie -kneeToBelow: - title: Manschettenlänge - description: Steuert die Dichtheit der Manschette im Vergleich zum Knie -ventLength: - title: Ventillänge - description: Steuert die Länge des Schlot zwischen Knie und Manschette - diff --git a/packages/i18n/src/locales/de/options/diana.yml b/packages/i18n/src/locales/de/options/diana.yml deleted file mode 100644 index fe77e861cdf..00000000000 --- a/packages/i18n/src/locales/de/options/diana.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- -shoulderSeamLength: - title: Schulternahtlänge - description: Steuert die Länge der Schulternaht -drapeAngle: - title: Fallwinkel - description: Steuert die Stärke des Fallwinkels - diff --git a/packages/i18n/src/locales/de/options/florence.yml b/packages/i18n/src/locales/de/options/florence.yml deleted file mode 100644 index b500572225f..00000000000 --- a/packages/i18n/src/locales/de/options/florence.yml +++ /dev/null @@ -1,10 +0,0 @@ ---- -height: - title: Höhe - description: Steuert die Höhe der Gesichtsmaske -length: - title: Länge - description: Steuert die Länge der Gesichtsmaske -curve: - title: Krümmung - description: Steuert die Krümmung der oberen Kante der Gesichtsmaske diff --git a/packages/i18n/src/locales/de/options/florent.yml b/packages/i18n/src/locales/de/options/florent.yml deleted file mode 100644 index ae12e71d7db..00000000000 --- a/packages/i18n/src/locales/de/options/florent.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -headEase: - title: Kopfumfangszugabe - description: Bequemlichkeits-/Bewegungszugabe zum Umfang deines Kopfes diff --git a/packages/i18n/src/locales/de/options/hi.yml b/packages/i18n/src/locales/de/options/hi.yml deleted file mode 100644 index 473c019e99d..00000000000 --- a/packages/i18n/src/locales/de/options/hi.yml +++ /dev/null @@ -1,12 +0,0 @@ -hungry: - title: Hungrig - description: Ändert die Mundform, um zu vermitteln, dass Hi hungrig ist -nosePointiness: - title: Nasenspitzigkeit - description: Steuert, wie spitz die Nase von Hi ist -aggressive: - title: Aggressiv - description: Gibt Hi spitze Zähne, oder nicht -size: - title: Größe - description: Haie gibt es in allen Größen, und Hi genauso diff --git a/packages/i18n/src/locales/de/options/holmes.yml b/packages/i18n/src/locales/de/options/holmes.yml deleted file mode 100644 index b3d6b6b9465..00000000000 --- a/packages/i18n/src/locales/de/options/holmes.yml +++ /dev/null @@ -1,28 +0,0 @@ ---- -headEase: - title: Kopfumfangszugabe - description: Bequemlichkeits-/Bewegungszugabe zum Umfang deines Kopfes. -lengthRatio: - title: Längenverhältnis - description: Kontrolliert die Länge der Hutkrone und Ohrklappen -gores: - title: Anzahl der Keile - description: Anzahl der Keile, die die Hutkrone zu bilden -visorAngle: - title: Winkel des Mützenschirms - description: Winkel, der die innere Kurve des Mützenschirms beschreibt -visorWidth: - title: Breite des Mützenschirms - description: Steuert die Breite des Mützenschirms -earLength: - title: Länge der Ohrklappen - description: Steuert die Länge der Ohrklappen unabhängig von den Kronenstücken -earWidth: - title: Breite der Ohrklappen - description: Steuert die Breite der Ohrklappen -buttonhole: - title: Führung für das Knopfloch - description: Fügt der Ohrklappe einen Knopfloch hinzu, um die Variante mit Knopflochs zu entwerfen -visorLength: - title: Länge des Mützenschirmes - description: Steuert die Länge des Mützenschirms diff --git a/packages/i18n/src/locales/de/options/hortensia.yml b/packages/i18n/src/locales/de/options/hortensia.yml deleted file mode 100644 index a7c5f54cf40..00000000000 --- a/packages/i18n/src/locales/de/options/hortensia.yml +++ /dev/null @@ -1,13 +0,0 @@ ---- -size: - title: Grösse - description: Steuert die Gesamtgröße der Handtasche -zipperSize: - title: Größe des Reißverschlusses - description: Welche Reißverschlussgröße verwendet werden soll -strapLength: - title: Riemenlänge - description: Steuert die Riemenlänge -handleWidth: - title: Breite des Griffes - description: Steuert die Breite des Griffes diff --git a/packages/i18n/src/locales/de/options/huey.yml b/packages/i18n/src/locales/de/options/huey.yml deleted file mode 100644 index 3f767bd5a13..00000000000 --- a/packages/i18n/src/locales/de/options/huey.yml +++ /dev/null @@ -1,22 +0,0 @@ ---- -pocket: - title: Tasche - description: Legt fest, ob vordere Taschen integriert werden oder nicht -pocketHeight: - title: Taschenhöhe - description: Steuert die Höhe der Tasche -hoodHeight: - title: Kapuzenhöhe - description: Steuert die Höhe der Kapuze -hoodCutback: - title: Kapuzenausschnitt - description: Leg fest, wie weit die Öffnung der Kapuze zurückgeschnitten wird -hoodClosure: - title: Kapuzenverschluss - description: Legt fest, wie viel von der der Kapuze zum vorderen Verschluss gehört -hoodDepth: - title: Kapuzentiefe - description: Steuert die Tiefe der Kapuze -hoodAngle: - title: Winkel der Kapuze - description: Steuert den Winkel, mit welchem die Kapuze angebracht wird diff --git a/packages/i18n/src/locales/de/options/hugo.yml b/packages/i18n/src/locales/de/options/hugo.yml deleted file mode 100644 index a3e056e4ddb..00000000000 --- a/packages/i18n/src/locales/de/options/hugo.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -hipsEase: - title: Zugabe Hüfte - description: Die Menge an Bequemlichkeitszugabe an deinen Hüften. diff --git a/packages/i18n/src/locales/de/options/index.js b/packages/i18n/src/locales/de/options/index.js deleted file mode 100644 index 38731b05a6f..00000000000 --- a/packages/i18n/src/locales/de/options/index.js +++ /dev/null @@ -1,127 +0,0 @@ -import florence from './florence.yml' -import brian from './brian.yml' -import bella from './bella.yml' -import breanna from './breanna.yml' -import diana from './diana.yml' -import aaron from './aaron.yml' -import simon from './simon.yml' -import simone from './simone.yml' -import sven from './sven.yml' -import wahid from './wahid.yml' -import bent from './bent.yml' -import bruce from './bruce.yml' -import cathrin from './cathrin.yml' -import holmes from './holmes.yml' -import huey from './huey.yml' -import hugo from './hugo.yml' -import tamiko from './tamiko.yml' -import teagan from './teagan.yml' -import trayvon from './trayvon.yml' -import jaeger from './jaeger.yml' -import carlton from './carlton.yml' -import carlita from './carlita.yml' -import benjamin from './benjamin.yml' -import florent from './florent.yml' -import theo from './theo.yml' -import sandy from './sandy.yml' -import shin from './shin.yml' -import penelope from './penelope.yml' -import waralee from './waralee.yml' -import titan from './titan.yml' -import paco from './paco.yml' -import albert from './albert.yml' -import hortensia from './hortensia.yml' -import cornelius from './cornelius.yml' -import charlie from './charlie.yml' -import ursula from './ursula.yml' -import lunetius from './lunetius.yml' -import tiberius from './tiberius.yml' -import walburga from './walburga.yml' -import bee from './bee.yml' -import hi from 'hi.yml' -import unice from 'unice.yml' -import lucy from 'lucy.yml' -import bob from 'bob.yml' -import noble from 'noble.yml' -import octoplushy from 'octoplushy.yml' -import { options as optionList } from '@freesewing/pattern-info' -import shared from '../../../shared-options.yml' - -let patterns = { - florence, - bella, - brian, - breanna, - diana, - aaron, - simon, - simone, - sven, - wahid, - bent, - bruce, - cathrin, - huey, - hugo, - tamiko, - trayvon, - jaeger, - carlton, - carlita, - benjamin, - florent, - theo, - sandy, - shin, - penelope, - waralee, - holmes, - titan, - paco, - teagan, - albert, - hortensia, - cornelius, - charlie, - ursula, - yuri: false, - lunetius, - tiberius, - walburga, - bee, - hi, - unice, - lucy, - bob, - noble, - octoplushy, -} - -let options = {} -for (let pattern in patterns) { - options[pattern] = {} - if (typeof optionList[pattern] === 'undefined') - throw new Error('pattern ' + pattern + ' has no option list') - for (let option of optionList[pattern]) { - let value = patterns[pattern][option] - if (typeof value === 'object') options[pattern][option] = value - else { - if (typeof value === 'undefined') { - if (shared[pattern]) { - if (shared[pattern].dflt && typeof patterns[shared[pattern].dflt][option] === 'object') { - options[pattern][option] = patterns[shared[pattern].dflt][option] - } else if ( - typeof shared[pattern].other !== 'undefined' && - typeof shared[pattern].other[option] === 'string' - ) { - options[pattern][option] = patterns[shared[pattern].other[option]][option] - } else { - throw new Error(`No option translation found for ${option} in ${pattern}`) - } - } - } - } - } -} - -export default options diff --git a/packages/i18n/src/locales/de/options/jaeger.yml b/packages/i18n/src/locales/de/options/jaeger.yml deleted file mode 100644 index 601e2b6b5ec..00000000000 --- a/packages/i18n/src/locales/de/options/jaeger.yml +++ /dev/null @@ -1,112 +0,0 @@ ---- -centerBackDart: - title: Abnäher in der hinteren Mitte - description: Abnäher in der hinteren Mitte, um einen abgerundeten Rücken unterzubringen -sleeveVentLength: - title: Ärmellüftungslänge - description: Länge der Ärmelöffnung -sleeveVentWidth: - title: Ärmelschlitzbreite - description: Breite der Ärmelöffnung -chestShaping: - title: Brustformung - description: Anzahl der Formatierung für die Brustkurve -frontDartPlacement: - title: Platzierung des vorderen Abnähers - description: Position der vorderen Abnäher -frontOverlap: - title: Übertritt vorne - description: Wie weit der Stoff über die Schließknöpfe hinausragt -sideFrontPlacement: - title: Seitliche / vordere Platzierung - description: Die Position der Seiten- / Frontgrenze -chestPocketDepth: - title: Brusttasche Tiefe - description: Die Tiefe der Brusttasche -chestPocketWidth: - title: Brusttaschenbreite - description: Die Breite der Brusttasche -chestPocketPlacement: - title: Platzierung der Brusttasche - description: Die Position der Brusttasche -chestPocketAngle: - title: Brusttaschenwinkel - description: Der Winkel, unter dem die Brusttasche platziert wird -chestPocketWeltSize: - title: Brusttasche Rahmengröße - description: Die Größe der Brusttasche -frontPocketPlacement: - title: Fronttaschenplatzierung - description: Position der Fronttasche -frontPocketWidth: - title: Breite der Fronttasche - description: Die Breite der Fronttasche -frontPocketDepth: - title: Tiefe der Vordertasche - description: Die Tiefe der Fronttasche -frontPocketRadius: - title: Radius der Vordertasche - description: Der Radius, um den die Fronttasche gerundet ist -innerPocketPlacement: - title: Innentaschenplatzierung - description: Die Position der Innentasche -innerPocketWidth: - title: Innentaschenbreite - description: Die Breite der Innentasche -innerPocketDepth: - title: Innentaschentiefe - description: Die Tiefe der Innentasche -innerPocketWeltHeight: - title: Innentasche Rahmenhöhe - description: Die Höhe der Innentasche -pocketFoldover: - title: Taschenfalte - description: Der Betrag, um den sich der Hauptstoff in der Tasche befindet -centerFrontHemDrop: - title: Saumabfall in der Mitte - description: Der Betrag, um den der Saum zur vorderen Mitte hin abgesenkt wird -backVent: - title: Hinterer Gehschlitz - description: Die Anzahl der hinteren Öffnungen -backVentLength: - title: Hinterer Gehschlitz Länge - description: Die Länge der Hinterlüftung(en) -buttonLength: - title: Knopflänge - description: Die Strecke, über die Knöpfe verteilt werden -frontCutawayAngle: - title: Frontschnittwinkel - description: Der Winkel, unter dem die Vorderseite zum Saum hin abgeschnitten wird -frontCutawayStart: - title: Stern vorne - description: Die Stelle, an der sich die Vorderseite zum Saum hin öffnet -frontCutawayEnd: - title: Vorderes Cutaway-Ende - description: Wenn Sie diesen Wert erhöhen, bleibt der vordere Schnitt näher an der vorderen Mitte -collarSpread: - title: Kragen ausgebreitet - description: Der Kragenausschnitt steuert, wie der Kragen über die Schultern drapiert -lapelStart: - title: Revers Beginn - description: Position, wo die Mittelfront in das Revers geht -lapelReduction: - title: Reversverkleinerung - description: Wie weit ist die Spitze der Revers nach innen gedreht? -collarHeight: - title: Kragenhöhe - description: Höhe des Kragens -collarNotchDepth: - title: Kragentiefe - description: Tiefe der Kragenkerbe -collarNotchAngle: - title: Kragenwinkel - description: Winkel der Kragenkerbe -collarNotchReturn: - title: Kragenrückkehr - description: Wie viel Kragen kommt von der Kerbe im Vergleich zum Revers zurück? -rollLineCollarHeight: - title: Rollkragenhöhe - description: Wie sehr die Rollschnur den Hals umarmt -hemRadius: - title: Saumradius - description: Der Betrag, um den der Saum gerundet ist diff --git a/packages/i18n/src/locales/de/options/lucy.yml b/packages/i18n/src/locales/de/options/lucy.yml deleted file mode 100644 index 0f66c4a5a61..00000000000 --- a/packages/i18n/src/locales/de/options/lucy.yml +++ /dev/null @@ -1,10 +0,0 @@ -width: - title: Breite - description: Breite der Tasche -length: - title: Länge - description: Länge (Tiefe) der Tasche -edge: - title: Abschrägung - description: Steuert, wie sehr die Öffnung der Tasche nach innen abgeschrägt ist - diff --git a/packages/i18n/src/locales/de/options/lunetius.yml b/packages/i18n/src/locales/de/options/lunetius.yml deleted file mode 100644 index dc6de1d9c77..00000000000 --- a/packages/i18n/src/locales/de/options/lunetius.yml +++ /dev/null @@ -1,16 +0,0 @@ ---- -lengthRatio: - title: Längenverhältnis - description: Steuert die Länge des Kleidungsstückes -widthRatio: - title: Breitenverhältnis - description: Steuert die Breite des Kleidungsstückes -length: - title: Länge - description: Wähle zwischen verschiedenen Längenarten - options: - toKnee: Knie - toBelowKnee: Unter dem Knie - toHips: Hüfte - toUpperLeg: Oberschenkel - toFloor: Boden diff --git a/packages/i18n/src/locales/de/options/noble.yml b/packages/i18n/src/locales/de/options/noble.yml deleted file mode 100644 index 77abf717afe..00000000000 --- a/packages/i18n/src/locales/de/options/noble.yml +++ /dev/null @@ -1,61 +0,0 @@ -dartPosition: - description: Steuert, ob an der Schulter oder am Armloch geteilt werden soll - title: Position Abnäher -chestEase: - description: Controls the amount of ease at the chest - title: Brustumfangszugabe -waistEase: - description: Controls the amount of ease at the waist - title: Taillenzugabe -bustSpanEase: - description: Controls the amount of ease along the bust span - title: Zugabe im Abstand der Brustpunkte -backDartHeight: - description: Höhe Rückenabnäher - title: Steuert die Höhe des Rückenabnähers -waistDartLength: - description: Steuert die Länge des Taillenabnähers - title: Länge des Taillenabnähers -shoulderDartPosition: - description: Steuert die Position der Schulternaht - title: Position der Schulterabnäher -upperDartLength: - description: Controls the length of the upper dart - title: Upper dart length -armholeDartPosition: - description: Controls the position of the armhole dart - title: Armhole dart position -armholeDepth: - description: Steuert die Tiefe des Armloches - title: Armlochtiefe -backArmholeSlant: - description: Controls the slant of the armhole at the back - title: Hintere Armlochschiebung -backArmholeCurvature: - description: Controls how deep the armhole is scooped out at the back - title: Hintere Armlochkrümmung -frontArmholeCurvature: - title: Vordere Armlochkrümmung - description: Steuert wie tief das Armloch nach vorne unten ausgeschnitten ist -frontArmholePitchDepth: - description: Controls how deep the armhole cuts into the front - title: Vordere Armlochtiefe -backArmholePitchDepth: - description: Controls how deep the armhole cuts into the back - title: Rückenarmloch-Tiefe -backNeckCutout: - description: Controls how deep the neck is cutout in the back - title: Ausschnitt im Nacken -backHemSlope: - description: Constrols the slope of the back hem - title: Neigung des hinteren Saumes -frontShoulderWidth: - description: Controls how much width is added to the shoulder in the front - title: Vordere Schulterbreite -highBustWidth: - description: Controls the width of the high bust - title: Oberbrustweite -shoulderToShoulderEase: - description: Steuert die Menge an Zugabe entlang des Schulter-zu-Schulter Maßes - title: Zugabe des Schulterabstandes - diff --git a/packages/i18n/src/locales/de/options/octoplushy.yml b/packages/i18n/src/locales/de/options/octoplushy.yml deleted file mode 100644 index ae401daad46..00000000000 --- a/packages/i18n/src/locales/de/options/octoplushy.yml +++ /dev/null @@ -1,28 +0,0 @@ -size: - title: Größe - description: Steuert die Gesamtgröße -type: - title: Art - description: Erlaubt es dir, zwischen den Varianten dieses Designs zu wählen -armWidth: - title: Armbreite - description: Steuert die Breite der Arme -armLength: - title: Armlänge - description: Steuert die Länge der Arme -neckWidth: - title: Halsbreite - description: Bestimmt die Breite am Hals -armTaper: - title: Armabschrägung - description: Steuert, wie stark die Arme abgeschrägt sind -bottomTopArmRatio: - title: Verhältnis Arme Unten/Oben - description: "FIXME: Keine Ahnung, was dies macht" -bottomArmReduction: - title: Reduktion des unteren Arms - description: "FIXME: Keine Ahnung, was dies macht" -bottomArmReductionPlushy: - title: Reduktion des unteren Arms (plüschig) - description: "FIXME: Keine Ahnung, was dies macht" - diff --git a/packages/i18n/src/locales/de/options/paco.yml b/packages/i18n/src/locales/de/options/paco.yml deleted file mode 100644 index 254fe5b84ad..00000000000 --- a/packages/i18n/src/locales/de/options/paco.yml +++ /dev/null @@ -1,16 +0,0 @@ ---- -heelEase: - title: Bequemlichkeitszugabe Ferse - description: Größe der Bequemlichkeitszugabe an der Ferse (wenn man in das Hosenbein hineinsteigt) -frontPockets: - title: Vordere Taschen - description: Ob vordere Taschen an der Seitennaht hinzugefügt werden sollen oder nicht -backPockets: - title: Gesäßtaschen - description: Hinzufügen einer Kedertasche zur Rückseite oder nicht -elasticatedHem: - title: Elastischer Saum - description: Ob ein elastischer Saum gewünscht ist oder nicht -ankleElastic: - title: Knöchel/Saum Gummizugbreite - description: Breite des (optionalen) Gummizugs am Knöchel/Saum diff --git a/packages/i18n/src/locales/de/options/penelope.yml b/packages/i18n/src/locales/de/options/penelope.yml deleted file mode 100644 index 48f0d499283..00000000000 --- a/packages/i18n/src/locales/de/options/penelope.yml +++ /dev/null @@ -1,46 +0,0 @@ ---- -backDartDepthFactor: - title: Zurück zum Abnäherinhalttiefenfaktor - description: Wie weit der rückwärtige Abnäher vom Taillenbund nach unten geht. Dies ist ein Faktor des Abstandes von der natürlichen Taille bis zum Gesäßumfang. -backVent: - title: Hinterlüftung - description: Fügt einen Bewegungschlitz hinten am Rock hinzu. -backVentLength: - title: Rückenlüftungslänge - description: Die Länge des Bewegungschlitzes hinten als ein Prozentsatz der Gesamtrocklänge. -dartToSideSeamFactor: - title: Abnäher zu Seitennaht Faktor - description: Prozentuales Verhältnis wieviel der Reduktion von der Hüftweite zur Taille über die Abnäher und wieviel über die Seitennäht erzielt wurde. -frontDartDepthFactor: - title: Vorderer Abnäherinhälttiefenfaktor - description: Wie weit nach unten der vordere Abnäher von der Taillenlinie geht. Dies ist ein Faktor des Maßes von der natürlichen Taille zum Gesäßumfang. -hem: - title: Höhe des Saumes - description: Breite des Saumes. Maß in absoluten Werten angeben. -hemBonus: - title: Saumzugabe - description: Diese Option reduziert die Saumweite. Sie ist ein prozentualer Anteil des Gesäßumfangs. -lengthBonus: - title: Längenbonus - description: Dies legt Länge des Rockes fest. Es ist einem Prozentsatz des Abstands natürliche Taille zu Knie definiert. -nrOfDarts: - title: Anzahl Abnäher - description: Die Anzahl der Abnäher, die in dem Schnittmuster verwendet werden. Das Maximum ist 2. Dies kann reduziert werden, wenn das Schnittmuster zu kleine Abnäher erstellt. -seatEase: - title: Zugabe Gesäß - description: Zugegebene Weite auf Höhe des Gesäßs. -waistBand: - title: Taillenbund - description: Füge einen Taillenbund zum Schnittmuster hinzu. -waistBandWidth: - title: Breite des Taillenbundes - description: Die Breite des Taillenbundes. -waistEase: - title: Taille erleichtert - description: Zugegebene Weite auf Taillenhöhe. -zipperLocation: - title: Platzierung Reißverschluss - description: Platzierung des Reißverschlusses. - options: - backSeam: An der hinteren Mittelnaht - sideSeam: In der Seitennaht diff --git a/packages/i18n/src/locales/de/options/sandy.yml b/packages/i18n/src/locales/de/options/sandy.yml deleted file mode 100644 index 1c3d023b369..00000000000 --- a/packages/i18n/src/locales/de/options/sandy.yml +++ /dev/null @@ -1,26 +0,0 @@ ---- -waistbandWidth: - title: Taillenbundweite - description: Kontrolliert die Weite des Taillenbundes. -waistbandPosition: - title: Position des Taillenbundes - description: Legt die Position des Taillenbundes fest. -waistbandShape: - title: Taillenbundform - description: Hier stellen Sie ein, on sie einen geraden oder einen körpergeformten Bund wollen. -circleRatio: - title: Kreisverhältnis - description: Die Prozente eines Kreises aus dem Sie den Rock erstellen möchten. -waistbandOverlap: - title: Überlappung des Taillenbundes - description: Der Betrag, mit dem sich der Taillenbund überlappt. -gathering: - title: Kräuseln - description: Der Prozentsatz um welcher die Oberkante des Rockteils länger ist als die Unterkante des Bundes. -seamlessFullCircle: - title: Nahtloser Vollkreis - description: Aktiviert einen nahtlosen Vollkreis für das Rockteil. -hemWidth: - title: Saumbreite - description: Breite des Saumes - diff --git a/packages/i18n/src/locales/de/options/shin.yml b/packages/i18n/src/locales/de/options/shin.yml deleted file mode 100644 index 8d21c721762..00000000000 --- a/packages/i18n/src/locales/de/options/shin.yml +++ /dev/null @@ -1,7 +0,0 @@ ---- -legReduction: - title: Verjüngung am Bein - description: Reduziert die Hosenbeinöffnung um Anstehen zu verhindern -elasticWidth: - title: Breite des Gummis - description: Breite des Gummizugs an der Taille diff --git a/packages/i18n/src/locales/de/options/simon.yml b/packages/i18n/src/locales/de/options/simon.yml deleted file mode 100644 index 63a801c667a..00000000000 --- a/packages/i18n/src/locales/de/options/simon.yml +++ /dev/null @@ -1,136 +0,0 @@ ---- -backDarts: - title: Hintere Abnäher - description: Ob Abnäher am Rücken eingefügt werden sollen oder nicht - options: - auto: Automatisch - always: Immer - never: Niemals -backDartShaping: - title: Formgebung der hinteren Abnäher - description: Wie stark die hinteren Abnäher die Figur betonen -barrelCuffNarrowButton: - title: Manschette schmaler Knopf - description: Gibt an, ob ein Knopf hinzugefügt wird, um die Manschetten enger zu binden. Diese Option ist nur für Einfachmanschetten relevant. -boxPleat: - title: Kellerfalte - description: Ob eine Kellerfalte am Rückenteil eingefügt wird oder nicht -boxPleatWidth: - title: Kellerfaltenweite - description: Gesamtbreite der Kellerfalte -boxPleatFold: - title: Kellerfalte Falz - description: Der Betrag, um den die Kellerfalte nach innen gefaltet wird -buttonPlacketStyle: - title: Knopfleiste Stil - description: Stil der Knopfleiste. - options: - classic: Klassischer Stil - seamless: Französischer Stil (nahtlos) -buttonPlacketWidth: - title: Knopfleiste Breite - description: Breite der Knopfleiste. -buttonFreeLength: - title: Freie Länge Knopf - description: Wie viel am unteren Ende der Verschlussleiste knopf-frei bleiben soll. -buttonholePlacketFoldWidth: - title: Knopflochleiste Falzbreite - description: Breite der Falz der Knopflochleiste. -buttonholePlacketStyle: - title: Knopflochleiste Stil - description: Stil der Knoplochfleiste. - options: - classic: Klassischer Stil - seamless: Französischer Stil (nahtlos) -buttonholePlacketWidth: - title: Knopflochleiste Breite - description: Breite der Knopflochleiste. -buttons: - title: Anzahl der Knöpfe - description: Die Anzahl der Knöpfe am vorderen Verschluss. -collarAngle: - title: Kragenwinkel - description: Der Winkel der Kragenspitzen. -collarBend: - title: Kragenkrümmung - description: Die Krümmung des Kragens. -collarFlare: - title: Kragenausstellung - description: Wie weit die Kragenspitzen ausgestellt sind. -collarGap: - title: Kragenlücke - description: Der Spalt zwischen den beiden Kragenenden. -collarRoll: - title: Kragenrolle - description: Der Betrag, um den der Oberkragen größer ist als der Unterkragen. -collarStandBend: - title: Kragenstegbiegung - description: Die Biegung des Kragensstegs. -collarStandCurve: - title: Kragenstegkrümmung - description: Die Krümmung des Kragensstegs. -collarStandWidth: - title: Kragenstegbreite - description: Breite des Kragenstegs. -cuffButtonRows: - title: Manschettenknopfreihen - description: Gibt an, ob eine einzelne oder doppelte Reihe von Manschettenknöpfen erstellt werden soll. Diese Option ist nur für Einfachmanschetten relevant. - options: - '1': Einzelne Manschettenknopfreihe - '2': Doppelte Manschettenknopfreihe -cuffDrape: - title: Manschette drapieren - description: Der Betrag, um den der Ärmel breiter ist als die Manschette, an der Stelle wo sie zusammengefügt werden. -cuffLength: - title: Manschettenlänge - description: Die Länge der Manschetten. -cuffStyle: - title: Manschettenstil - description: Der Stil der Manschetten. - options: - roundedBarrelCuff: Abgerundete Einfachmanschette - angledBarrelCuff: Angewinkelte Einfachmanschette - straightBarrelCuff: Gerade Einfachmanschette - roundedFrenchCuff: Abgerundete Umschlagmanschette - angledFrenchCuff: Angewinkelte Umschlagmanschette - straightFrenchCuff: Gerade Umschlagmanschette -extraTopButton: - title: Zusätzlicher oberer Knopf - description: Gibt an, ob am vorderen Verschluss ein zusätzlicher oberer Knopf hinzugefügt werden soll. -ffsa: - title: Flachgeplagte Naht erlaubt - description: Die Anzahl der Nahtzuschüsse für geflochtene Nähte im Verhältnis zum regulären Nahtzuschuss -hemCurve: - title: Saumkurve - description: Die Höhe der Kurve an einem abgerundeten Saum. -hemStyle: - title: Saumstil - description: Der Stil des Hemdsaumes. - options: - straight: Gerader Saum - baseball: Baseball-Saum - slashed: Abgerundeter Saum -roundBack: - title: Runder Rücken - description: Damit die Passform für einen runde(re)n Rücken besser ist, fügt diese Option etwas Länge in der hinteren Mitte (an der Passe) hinzu, die sich zu den Seiten hin verjüngt. -seperateButtonholePlacket: - title: Separate Knopflochleiste - description: Eine separate Knopflochleiste entwerfen. -seperateButtonPlacket: - title: Separate Knopfleiste - description: Eine separate Knopfleiste entwerfen -sleevePlacketLength: - title: Ärmelleistenlänge - description: Die Länge der Ärmelleiste. -sleevePlacketWidth: - title: Ärmelleiste Breite - description: Die Breite der Ärmelleiste. -splitYoke: - title: Geteilte Passe - description: Ob eine geteilte oder normale Passe erstellt werden soll. -waistEase: - title: Taillenzugabe - description: Der Betrag, der an deiner (natürlichen) Taille als Bequemlichkeits-/Bewegslichkeitszugabe zugegeben wird. -yokeHeight: - title: Passenhöhe - description: Steuert die Höhe der Passe diff --git a/packages/i18n/src/locales/de/options/simone.yml b/packages/i18n/src/locales/de/options/simone.yml deleted file mode 100644 index 0701c451789..00000000000 --- a/packages/i18n/src/locales/de/options/simone.yml +++ /dev/null @@ -1,23 +0,0 @@ ---- -bustAlignedButtons: - title: Auf Brusthöhe ausgerichtete Knöpfe - description: Optionale Positionierung der Knöpfe, um sicherzugehen, einen Knopf auf Brusthöhe zu platzieren - options: - even: Gleichmäßiger Abstand - split: Abstand aufteilen - disabled: Deaktiviert -bustDartAngle: - title: Winkel des Brustabnähers - description: Kontrolliert den Winkel, in welchem der (seitliche) Brustabnäher sich nach unten neigt -bustDartLength: - title: Länge des Brustabnähers - description: Regelt, wie nahe der Brustabnäher an den Brustpunkt kommt -contour: - title: Kontur - description: Legt fest, wie eng anliegend der Schnitt unterhalb der Brust gestaltet wird -frontDarts: - title: Vordere Abnäher - description: Legt fest, ob vordere Abnäher im Schnitt eingearbeitet werden sollen -frontDartLength: - title: Länge der vorderen Abnäher - description: Legt fest, wie nahe die vorderen Abnäher an den Brustpunkt heranreichen diff --git a/packages/i18n/src/locales/de/options/sven.yml b/packages/i18n/src/locales/de/options/sven.yml deleted file mode 100644 index a7cba0a10ad..00000000000 --- a/packages/i18n/src/locales/de/options/sven.yml +++ /dev/null @@ -1,13 +0,0 @@ ---- -hipsEase: - title: Zugabe Hüfte - description: Steuert die Menge an Zugabe an deinen Hüften (am unteren Ende des Pullovers) -ribbing: - title: Bündchen - description: Ob Saum und Manschetten mit Bündchen abschließen oder nicht. -ribbingHeight: - title: Bündchen-Höhe - description: Die Höhe der Bündchen -ribbingStretch: - title: Bündchen-Elastizität - description: Die Menge an negativer Zugabe für die an Manschetten und Saum verwendeten Bündchen. diff --git a/packages/i18n/src/locales/de/options/tamiko.yml b/packages/i18n/src/locales/de/options/tamiko.yml deleted file mode 100644 index ee7311ffa5d..00000000000 --- a/packages/i18n/src/locales/de/options/tamiko.yml +++ /dev/null @@ -1,10 +0,0 @@ ---- -flare: - title: Ausstellen - description: Die Menge, um die sich das Kleidungsstück von der Brust nach unten ausgestellt wird -shoulderseamLength: - title: Schulternahtlänge - description: Die Länge der Schulternaht als Faktor deines Schulter-zu-Schulter-Maßes -shoulderSlope: - title: Schulterneigung - description: Steuert den Winkel der Schulternähte diff --git a/packages/i18n/src/locales/de/options/teagan.yml b/packages/i18n/src/locales/de/options/teagan.yml deleted file mode 100644 index 1eb1c5f3c3e..00000000000 --- a/packages/i18n/src/locales/de/options/teagan.yml +++ /dev/null @@ -1,19 +0,0 @@ ---- -draftForHighBust: - title: Entwurf für hohe Büste - description: Zeichnen Sie das Muster für die hohe Büstenmessung (falls vorhanden) statt der (vollen) Truhe. Dies wird zu einem besser angepassten Kleidungsstück für Brustkleidung führen. -sleeveEase: - title: Bequemlichkeitszugabe Ärmel - description: Größe der Bequemlichkeitszugabe an den Ärmeln -sleeveLength: - title: Ärmellänge - description: Steuert die Länge deiner Ärmel -necklineBend: - title: Krümmung Halsausschnitt - description: Steuert die Krümmung des Halsausschnitts. -necklineDepth: - title: Ausschnitttiefe - description: Steuert, wie tief der Halsausschnitt fällt. -necklineWidth: - title: Ausschnittbreite - description: Steuert die Breite des Halsausschnitts. diff --git a/packages/i18n/src/locales/de/options/theo.yml b/packages/i18n/src/locales/de/options/theo.yml deleted file mode 100644 index c45ed7c7f83..00000000000 --- a/packages/i18n/src/locales/de/options/theo.yml +++ /dev/null @@ -1,7 +0,0 @@ ---- -wedge: - title: Keil - description: Steuert die Länge der Kreuznaht -legWidth: - title: Beinweite - description: Legt die Weite des Hosenbeins fest diff --git a/packages/i18n/src/locales/de/options/tiberius.yml b/packages/i18n/src/locales/de/options/tiberius.yml deleted file mode 100644 index 435a6dadb66..00000000000 --- a/packages/i18n/src/locales/de/options/tiberius.yml +++ /dev/null @@ -1,39 +0,0 @@ ---- -headRatio: - title: Kopfgrößenverhältnis - description: Steuert die Größe der Kopföffnung -armholeDrop: - title: Armlochabsenkung - description: Steuert die Tiefe des Armloches -lengthBonus: - title: Längenzugabe - description: Erlaubt Variation der Länge des Kleidungsstücks -widthBonus: - title: Breitenzugabe - description: Erlaubt Variation der Breite des Kleidungsstücks -clavi: - title: Clavi - description: Legt fest, ob Hilfslinien für Clavi enthalten sind oder nicht -clavusLocation: - title: Positionierung der Clavi - description: Steuert die Position der Clavi -clavusWidth: - title: Breite der Clavi - description: Steuert die Breite der Clavi -length: - title: Länge - description: Steuert die Länge des Kleidungsstückes - options: - toKnee: Knielang - toMidLeg: Oberschenkellang - toFloor: Zum Boden -width: - title: Breite - description: Steuert die Breite des Kleidungsstückes - options: - toElbow: Zum Ellenbogen - toShoulder: Zur Schulter - toMidArm: Zum Oberarm -forceWidth: - title: Breite erzwingen - description: Breiteneinstellungen unabhängig von Einschränkungen anwenden diff --git a/packages/i18n/src/locales/de/options/titan.yml b/packages/i18n/src/locales/de/options/titan.yml deleted file mode 100644 index 2fdc256c30b..00000000000 --- a/packages/i18n/src/locales/de/options/titan.yml +++ /dev/null @@ -1,46 +0,0 @@ ---- -kneeEase: - title: Knie-Zugabe - description: Kontrolliert die Zugabe am Knie -waistHeight: - title: Taillenhöhe - description: Steuert die Höhe des Taillenbundes, 100% = Taillenhöhe, 0% = Hüfthöhe -lengthBonus: - title: Längenzugabe - description: Steuert die Länge der Hose -crotchDrop: - title: Schritt-Tiefe - description: Senkt die Schrittiefe für mehr Tragekomfort -fitKnee: - title: Am Knie anliegend - description: Legt die Bein-Passform auf Grundlage des Knieumfangst statt des Gesäßumfangs fest -legBalance: - title: Bein-Balance - description: Steuert das Verhältnis zwischen Vorder- und Hinterteil des Beins -crossSeamCurveStart: - title: Start der Quernahtkurve - description: Bestimmt, wie weit wir in die Quernaht hineinspringen und kurven -crossSeamCurveBend: - title: Quernaht Kurve - description: Steuert die Krümmung der Kreuznaht -crossSeamCurveAngle: - title: Quernaht Winkel - description: Steuert den Winkel der Quernaht -crotchSeamCurveStart: - title: Beginn der Schrittnahtkurve - description: Legt fest, wie weit wir in die Schrittnaht hineinfahren -crotchSeamCurveBend: - title: Crotch Naht Biegen - description: Steuert die Krümmung der Schrittnaht -crotchSeamCurveAngle: - title: Schneckennaht Winkel - description: Steuert den Winkel der Schrittnaht -waistBalance: - title: Taillenbilanz - description: Steuert die horizontale Position der Taille relativ zum Sitz -waistbandWidth: - title: Taillenbundweite - description: Die Breite des Taillenbundes -grainlinePosition: - title: Position Fadenlauf - description: Steuert die horizontale Position des Beins relativ zum Sitz diff --git a/packages/i18n/src/locales/de/options/trayvon.yml b/packages/i18n/src/locales/de/options/trayvon.yml deleted file mode 100644 index 5813176b331..00000000000 --- a/packages/i18n/src/locales/de/options/trayvon.yml +++ /dev/null @@ -1,7 +0,0 @@ ---- -tipWidth: - title: Spitzenbreite - description: Die Breite deiner Krawatte an der Spitze -knotWidth: - title: Knotenbreite - description: Die Breite deiner Krawatte am Knoten diff --git a/packages/i18n/src/locales/de/options/unice.yml b/packages/i18n/src/locales/de/options/unice.yml deleted file mode 100644 index 9806e5de00a..00000000000 --- a/packages/i18n/src/locales/de/options/unice.yml +++ /dev/null @@ -1,13 +0,0 @@ -fabricStretchX: - title: Fabric stretch (horizontal) - description: Passe dies für mehr oder weniger dehnbaren Stoff an -fabricStretchY: - title: Fabric stretch (vertical) - description: Passe dies für mehr oder weniger dehnbaren Stoff an -adjustStretch: - title: Dehnbarkeit anpassen - description: This option allows you to put in the maximum stretch that the fabric will allow in both horizontal and vertical directions; When disabled, the stretch values are used as-is -useCrossSeam: - title: Use crossseam - description: When enabled, the total height of the pattern pieces combined will match the cross seam length minus the front and back rise. When disabled, the total height depends on the gusset length option. - diff --git a/packages/i18n/src/locales/de/options/ursula.yml b/packages/i18n/src/locales/de/options/ursula.yml deleted file mode 100644 index 100351f9b74..00000000000 --- a/packages/i18n/src/locales/de/options/ursula.yml +++ /dev/null @@ -1,34 +0,0 @@ ---- -fabricStretch: - title: Stoffdehnbarkeit - description: Passe dies für mehr oder weniger dehnbaren Stoff an -gussetWidth: - title: Zwickelbreite - description: Steuert die Breite des Zwickels -gussetLength: - title: Zwickellänge - description: Steuert die Länge des Zwickels -elasticStretch: - title: Dehnbarkeit des Gummis - description: Passe dies für mehr oder weniger dehnbaren Gummi an -rise: - title: Sitz - description: Steuert die Höhe der Taille -legOpening: - title: Beinöffnung - description: Legt fest, wie hoch das Bein ausgeschnitten wird -frontDip: - title: Absenkung der vorderen Taille - description: Steuert, wie stark die vordere Taille gekümmt ist (legt dadurch mehr oder weniger Haut frei) -backDip: - title: Absenkung hintere Taille - description: Steuert, wie stark die hintere Taille gekümmt ist (legt dadurch mehr oder weniger Haut frei) -taperToGusset: - title: Vordere Freilegung - description: Steuert die Menge an freigelegter Haut auf der vorderen Seite -backExposure: - title: Hintere Freilegung - description: Steuert die Menge an freigelegter Haut auf der hinteren Seite - - - diff --git a/packages/i18n/src/locales/de/options/wahid.yml b/packages/i18n/src/locales/de/options/wahid.yml deleted file mode 100644 index 263a0e215ff..00000000000 --- a/packages/i18n/src/locales/de/options/wahid.yml +++ /dev/null @@ -1,43 +0,0 @@ ---- -backScyeDart: - title: Rückwärtige Armlochabnäher - description: Die Menge, die in einem Abnäher hinten am Armloch entnommen werden muss. -frontScyeDart: - title: Vorderer Armlochabnäher - description: Die Menge, die in einem Abnäher an der Vorderseite des Armlochs entnommen werden muss. -pocketLocation: - title: Taschenplatzierung - description: Bestimmt die Platzierung der Tasche -pocketWidth: - title: Taschenbreite - description: Bestimmt die Breite der Tasche -weltHeight: - title: Paspelhöhe - description: Bestimmt die Höhe der Paspel -necklineDrop: - title: Ausschnitt Tiefe - description: Legt fest, wie tief der Ausschnitt vorne ausgeschnitten ist -frontStyle: - title: Ausschnittstil - description: Stil des Ausschnitts -hemStyle: - title: Saumstil - description: Art des vorderen Saums -hemRadius: - title: Saumradius - description: Der Betrag, um den der Saum gerundet ist -backInset: - title: Rückseite Ausschnitt - description: Wie viel die Rückseite des Armlochs nach innen verschoben ist -frontInset: - title: Vorderseite Ausschnitt - description: Wieviel das Armloch an der Vorderseite nach innen verschoben wird -shoulderInset: - title: Schulterversatz nach innen - description: Wieviel die Schulternaht nach innen Richtung Schulter versetzt wird -neckInset: - title: Nackenauschnitt - description: Wieviel die Schulternaht am Nacken nach innen versetzt wird -pocketAngle: - title: Winkel der Tasche - description: Winkel der Taschenneigung diff --git a/packages/i18n/src/locales/de/options/walburga.yml b/packages/i18n/src/locales/de/options/walburga.yml deleted file mode 100644 index b6aaca34bbf..00000000000 --- a/packages/i18n/src/locales/de/options/walburga.yml +++ /dev/null @@ -1,23 +0,0 @@ ---- -headRatio: - title: Kopfgrößenverhältnis - description: Steuert die Größe der Kopföffnung -lengthBonus: - title: Längenzugabe - description: Erlaubt Variation der Länge des Kleidungsstücks -widthBonus: - title: Breitenzugabe - description: Erlaubt Variation der Breite des Kleidungsstücks -length: - title: Länge - description: Steuert die Länge des Kleidungsstückes - options: - toKnee: Knie - toMidLeg: Oberschenkel - toFloor: Boden -neckoRatio: - title: Form des Halsausschnittes - description: Steuert die Form des Halsausschnittes -neckline: - title: Halsausschnitt - description: Bestimmt, ob ein Halsausschnit erstellt werden soll oder nicht diff --git a/packages/i18n/src/locales/de/options/waralee.yml b/packages/i18n/src/locales/de/options/waralee.yml deleted file mode 100644 index 45bd684eb75..00000000000 --- a/packages/i18n/src/locales/de/options/waralee.yml +++ /dev/null @@ -1,44 +0,0 @@ ---- -backPocket: - title: Rückwärtige Tasche - description: Definiert ob rückwärtige Taschen integriert werden -frontPocket: - title: Vordere Taschen - description: Ob eine Fronttasche hinzugefügt werden soll oder nicht -hemWidth: - title: Saumgröße - description: Größe des Saums am unteren Rand der Hose -waistbandWidth: - title: Taillenbund - description: Größe des Taillenbundes -waistRaise: - title: Taillenhöhe - description: Wie hoch soll die Taille über dem Gesäßumfang angelegt werden? Dies beeinflusst die Tiefe des Schrittauschnittes. -crotchBack: - title: Hinterer Schritt - description: Prozentsatz des Gesäßumfangs, den der hintere Teil des Schrittes benötigt. Dies ergibt mehr oder weniger Abstand zwischen der Seitennaht und der hinteren Mitte. -crotchFront: - title: Vorderer Schritt - description: Prozentsatz des Gesäßumfangs, den der vordere Teil des Schrittes benötigt. Dies beeinflusst den Abstand zwischen Seitennaht und vorderer Mittelnaht. -crotchFactorBackHor: - title: Horizontaler hinterer Schritt Faktor - description: Wird benutzt um die Kurze des hinteren Schritts horizontal zu verschieben -crotchFactorBackVer: - title: Vertikaler hinterer Schritt Faktor - description: Wird benutzt um die Kurve des hinteren Schritts vertikal zu verschieben -crotchFactorFrontHor: - title: Horizontaler vorderer Schritt Faktor - description: Wird verwendet um die Kurve des vorderen Schritts horizontal zu verschieben -crotchFactorFrontVer: - title: Vertikaler vorderer Schritt Faktor - description: Wird benutzt um die Kurve des vorderen Schritts vertikal zu verschieben -waistOverlap: - title: Übertritt an der Taille - description: Dieser Wert legt fest, wie starken Übertritt Sie auf Taillenhöhe an der Seite haben möchten. Beim Wert 0 treffen sich die Teile auf der Linie der Seitennaht. Beim Wert 100 überlappen die Teile soweit, dass sie jeweils zur vorderen und hinteren Mitte reichen. -legShortening: - title: Verkürzung des Hosenbeins - description: Dieser Wert legt fest wie lange die Hosen sind. Es ist ein Faktor der Innenbeinnahtlänge. Je höher der Wert, desto mehr wird die Länge gekürzt. -backRaise: - title: Hintere Anstieg - description: Diese Einstellung erhöht den Taillenlinie im Rücken. Unsere Taille sitzt nicht horizontal, sondern ist auf der Rückseite angehoben. Diese Einstellung erlaubt es Ihnen, dies im Rücken zu erhöhen, wenn Sie es für eine gute Passform benötigen. - diff --git a/packages/i18n/src/locales/de/parts.yaml b/packages/i18n/src/locales/de/parts.yaml deleted file mode 100644 index 33760779a37..00000000000 --- a/packages/i18n/src/locales/de/parts.yaml +++ /dev/null @@ -1,58 +0,0 @@ ---- -back: Rückseite -backBase: Rückseite Basis -backPocketWelt: Paspel der hinteren Tasche -base: Basis -bentBack: Rückseite Bent -bentBase: Basis Bent -bentFront: Vorderseite Bent -bentSleeve: Ärmel Bent -bentTopSleeve: Oberarmel Bent -bentUnderSleeve: Unterarmel Bent -buttonholePlacket: Knopflochleiste -buttonPlacket: Knopfleiste -collar: Kragen -collarStand: Kragensteg -cuff: Manschette -fabricTail: Stoffschwanz -fabricTip: Stoffspitze -frontBase: Vorderseite Basis -frontFacing: Besatz Vorderseite -front: Vorderseite -frontLeft: Vorderseite links -frontLining: Futter Vorderseite -frontRight: Vorderseite rechts -gusset: Zwickel -hoodCenter: Mitte der Kapuze -hood: Kapuze -hoodSide: Kapuzenseite -inset: Einsatz -interfacingTail: Einlageschwanz -interfacingTip: Einlagespitze -liningTail: Futterschwanz -liningTip: Futterspitze -loop: Schleife -panel1: Teil 1 -panel2: Teil 2 -panel3: Teil 3 -panel4: Teil 4 -panel5: Teil 5 -panel6: Teil 6 -panels: Teile -pocketBag: Taschenbeutel -pocketFacing: Taschenbesatz -pocketInterfacing: Tascheneinlage -pocket: Tasche -pocketWelt: Taschenpaspel -side: Seite -sleeveBase: Ärmel Basis -sleevecap: Armkugel -sleevePlacketOverlap: Übertritt der Ärmelleiste -sleevePlacketUnderlap: Untertritt der Ärmelleiste -sleeve: Ärmel -topSleeve: Oberärmel -top: Oberteil -underCollar: Unterkragen -underSleeve: Unterärmel -waistband: Bund -yoke: Passe diff --git a/packages/i18n/src/locales/de/plugin/index.js b/packages/i18n/src/locales/de/plugin/index.js deleted file mode 100644 index 21533176bec..00000000000 --- a/packages/i18n/src/locales/de/plugin/index.js +++ /dev/null @@ -1,33 +0,0 @@ -import brian from './patterns/brian.yaml' -import aaron from './patterns/aaron.yaml' -import bruce from './patterns/bruce.yaml' -import hugo from './patterns/hugo.yaml' -import simon from './patterns/simon.yaml' -import teagan from './patterns/teagan.yaml' -import cfp from './patterns/cfp.yaml' -import cutonfold from './plugins/cutonfold.yaml' -import grainline from './plugins/grainline.yaml' -import scalebox from './plugins/scalebox.yaml' -import title from './plugins/title.yaml' - -const files = { - brian, - aaron, - bruce, - hugo, - simon, - teagan, - cfp, - cutonfold, - grainline, - scalebox, - title, -} - -const messages = {} - -for (const file in files) { - for (const [key, val] of Object.entries(files[file])) messages[key] = val -} - -export default messages diff --git a/packages/i18n/src/locales/de/plugin/patterns/aaron.yaml b/packages/i18n/src/locales/de/plugin/patterns/aaron.yaml deleted file mode 100644 index fb8f1104da6..00000000000 --- a/packages/i18n/src/locales/de/plugin/patterns/aaron.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -cutOneStripToFinishTheNeckOpening: Schneide einen Streifen aus, um die Halsöffnung zu versäubern -cutTwoStripsToFinishTheArmholes: Schneide zwei Streifen, um die Armlöcher zu versäubern -length: Länge -width: Breite diff --git a/packages/i18n/src/locales/de/plugin/patterns/brian.yaml b/packages/i18n/src/locales/de/plugin/patterns/brian.yaml deleted file mode 100644 index 9f5a4bc1136..00000000000 --- a/packages/i18n/src/locales/de/plugin/patterns/brian.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -back: Rückseite -front: Vorderseite -sleeve: Ärmel diff --git a/packages/i18n/src/locales/de/plugin/patterns/bruce.yaml b/packages/i18n/src/locales/de/plugin/patterns/bruce.yaml deleted file mode 100644 index 99048e57a3d..00000000000 --- a/packages/i18n/src/locales/de/plugin/patterns/bruce.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -inset: Einsatz -side: Seite diff --git a/packages/i18n/src/locales/de/plugin/patterns/cfp.yaml b/packages/i18n/src/locales/de/plugin/patterns/cfp.yaml deleted file mode 100644 index 993dfca1b1c..00000000000 --- a/packages/i18n/src/locales/de/plugin/patterns/cfp.yaml +++ /dev/null @@ -1,2 +0,0 @@ ---- -hello: Hallo diff --git a/packages/i18n/src/locales/de/plugin/patterns/cornelius.yaml b/packages/i18n/src/locales/de/plugin/patterns/cornelius.yaml deleted file mode 100644 index 00846e91444..00000000000 --- a/packages/i18n/src/locales/de/plugin/patterns/cornelius.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -Vent: Schlitz -PocketFacing: Taschenbesatz diff --git a/packages/i18n/src/locales/de/plugin/patterns/hortensia.yaml b/packages/i18n/src/locales/de/plugin/patterns/hortensia.yaml deleted file mode 100644 index 4565c9e51b9..00000000000 --- a/packages/i18n/src/locales/de/plugin/patterns/hortensia.yaml +++ /dev/null @@ -1,10 +0,0 @@ ---- -SidePanel: Seitenstück -FrontBackPanel: Vorder- und Rückseite -BottomPanel: Unteres Teil -ZipperPanel: Reißverschluss -Strap: Griff -strapLength: Länge der Griffe -handleWidth: Breite der Griffe -zipperSize: Standard Reißverschlussgröße -SidePanelReinforcement: Seitenverstärker diff --git a/packages/i18n/src/locales/de/plugin/patterns/hugo.yaml b/packages/i18n/src/locales/de/plugin/patterns/hugo.yaml deleted file mode 100644 index d56f176564a..00000000000 --- a/packages/i18n/src/locales/de/plugin/patterns/hugo.yaml +++ /dev/null @@ -1,7 +0,0 @@ ---- -cuff: Manschette -hoodCenter: Mitte der Kapuze -hoodSide: Kapuzenseite -pocketFacing: Taschenbesatz -pocket: Tasche -waistband: Bund diff --git a/packages/i18n/src/locales/de/plugin/patterns/simon.yaml b/packages/i18n/src/locales/de/plugin/patterns/simon.yaml deleted file mode 100644 index 0f7548e86aa..00000000000 --- a/packages/i18n/src/locales/de/plugin/patterns/simon.yaml +++ /dev/null @@ -1,13 +0,0 @@ ---- -buttonholePlacket: Knopflochleiste -buttonPlacket: Knopfleiste -collarAndUndercollar: Kragen und Unterkragen -collarStand: Kragensteg -cutUndercollarSlightlySmaller: Unterkragen etwas kleiner schneiden -frontLeft: Vorne links -frontRight: Vorne rechts -sideOfTheCollarStand: Seite des Kragenstegs -sleevePlacketOverlap: Übertritt der Ärmelleiste -sleevePlacketUnderlap: Untertritt der Ärmelleiste -yoke: Passe -matchHere: Stoffe entlang dieser Linie aufeinander abpassen diff --git a/packages/i18n/src/locales/de/plugin/patterns/teagan.yaml b/packages/i18n/src/locales/de/plugin/patterns/teagan.yaml deleted file mode 100644 index 1da8037e9bb..00000000000 --- a/packages/i18n/src/locales/de/plugin/patterns/teagan.yaml +++ /dev/null @@ -1,2 +0,0 @@ ---- -fullLengthFromHps: Volle Länge (vom höchsten Schulterpunkt) diff --git a/packages/i18n/src/locales/de/plugin/patterns/ursula.yaml b/packages/i18n/src/locales/de/plugin/patterns/ursula.yaml deleted file mode 100644 index 89683e0f8ff..00000000000 --- a/packages/i18n/src/locales/de/plugin/patterns/ursula.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -cutTwoPiecesOfElasticToFinishTheLegOpenings: Schneide zwei Stücke Gummiband um die Beinöffnungen zu versäubern -cutOnePieceOfElasticToFinishTheWaistBand: Schneide ein Stück Gummiband um das Taillenband zu versäubern diff --git a/packages/i18n/src/locales/de/plugin/plugins/cutlist.yaml b/packages/i18n/src/locales/de/plugin/plugins/cutlist.yaml deleted file mode 100644 index c645a97dbf3..00000000000 --- a/packages/i18n/src/locales/de/plugin/plugins/cutlist.yaml +++ /dev/null @@ -1,16 +0,0 @@ -canvas: Einlage -cut: Schneide -cuttingLayout: Suggested Cutting Layout -fabric: Hauptstoff -fabricSize: "{length} of {width} wide material" -heavyCanvas: Heavy Canvas -interfacing: Einlage -lining: Lining -lmhCanvas: Light to Medium Hair Canvas -mirrored: mirrored -onFoldLower: im Stoffbruch -onFoldAndBias: folded on the bias -onBias: on the bias -plastic: Kunststoff -ribbing: Bündchen -edgeOfFabric: Edge of Fabric diff --git a/packages/i18n/src/locales/de/plugin/plugins/cutonfold.yaml b/packages/i18n/src/locales/de/plugin/plugins/cutonfold.yaml deleted file mode 100644 index 84a9fce649a..00000000000 --- a/packages/i18n/src/locales/de/plugin/plugins/cutonfold.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -cutOnFoldAndGrainline: Im Bruch zuschneiden / Fadenlauf -cutOnFold: Im Bruch zuschneiden diff --git a/packages/i18n/src/locales/de/plugin/plugins/grainline.yaml b/packages/i18n/src/locales/de/plugin/plugins/grainline.yaml deleted file mode 100644 index e6483e59f32..00000000000 --- a/packages/i18n/src/locales/de/plugin/plugins/grainline.yaml +++ /dev/null @@ -1,2 +0,0 @@ ---- -grainline: Fadenlauf diff --git a/packages/i18n/src/locales/de/plugin/plugins/scalebox.yaml b/packages/i18n/src/locales/de/plugin/plugins/scalebox.yaml deleted file mode 100644 index 9eb38b6a0a1..00000000000 --- a/packages/i18n/src/locales/de/plugin/plugins/scalebox.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -theBlackOutsideOfThisBoxShouldMeasure: 'Die Länge der Außenseite dieses Rechtecks sollte sein:' -theWhiteInsideOfThisBoxShouldMeasure: 'Die Länge der Innenseite dieses Rechtecks sollte sein:' -supportFreesewingBecomeAPatron: Unterstütze FreeSewing und werde Förderer/-in diff --git a/packages/i18n/src/locales/de/plugin/plugins/title.yaml b/packages/i18n/src/locales/de/plugin/plugins/title.yaml deleted file mode 100644 index 8ae92c32f63..00000000000 --- a/packages/i18n/src/locales/de/plugin/plugins/title.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -cut: Schneide -onFold: Im Stoffbruch diff --git a/packages/i18n/src/locales/de/settings.yml b/packages/i18n/src/locales/de/settings.yml deleted file mode 100644 index 6bf6842c63f..00000000000 --- a/packages/i18n/src/locales/de/settings.yml +++ /dev/null @@ -1,44 +0,0 @@ ---- -advanced: - title: Expertenmodus - description: Legt fest, ob erweiterte Einstellungen und Schnittmusteroptionen angezeigt werden sollen oder nicht -paperless: - title: Papierlos - description: Zeichnet ein Schnittmuster mit allen benötigten Dimensionen, sodass es direkt auf den Stoff oder ein anderes Medium übertragen werden kann, ohne es auszudrucken -sabool: - title: Nahtzugabe hinzufügen - description: Legt fest, ob eine Nahtzugabe deinem Schnittmuster hinzugefügt werden soll -sa: - title: Größe der Nahtzugabe - description: Steuert die Breite der Nahtzugabe, die in deinem Schnittmuster enthalten ist -locale: - title: Sprache - description: Legt die für deine Schnittmuster verwendete Sprache fest -only: - title: Inhalte - description: Damit kannst du genau festlegen, welche Teile des Schnittmusters auf deinem Schnittmusterbogen erscheinen -units: - title: Maßeinheiten - description: Legt die in deinem Schnittmuster verwendete Maßeinheit fest -margin: - title: Randabstand - description: Legt den freien Rand um die einzelnen Teile des Schnittmusters fest -complete: - title: Details - description: Legt fest, wie detailliert das Schnittmuster dargestellt wird; entweder ein vollständiges Schnittmuster mit allen Details oder eine einfache Kontur der Schnittmusterteile -layout: - title: Layout - description: Legt fest, wie die einzelnen Teile auf deinem Schnittmusterbogen angeordnet werden -debug: - title: Debug - description: Debuggen aktivieren, um zusätzliche Informationen dazu zu erhalten, wie dein Schnittmuster erstellt wurde -scale: - title: Beschriftungsgröße - description: "Steuert die allgemeine Linienbreite, Schriftgröße und andere Elementgrößen, \nbeeinflusst jedoch nicht den Maßstab des Schnittmusters selbst" -renderer: - title: Render Engine - description: Legt fest, wie das Muster auf dem Bildschirm gerendert (gezeichnet) wird -xray: - title: Röntgen - description: Mit FreeSewings Röntgenmodus unter die Haube schauen - diff --git a/packages/i18n/src/locales/de/susi.yaml b/packages/i18n/src/locales/de/susi.yaml deleted file mode 100644 index d7bd68b0f0a..00000000000 --- a/packages/i18n/src/locales/de/susi.yaml +++ /dev/null @@ -1,16 +0,0 @@ -joinFreeSewing: FreeSewing beitreten -toReceiveSignupLink: Um einen Registrierungs-Link zu erhalten, gib deine E-Mail-Adresse ein -emailAddress: E-Mail-Adresse -pleaseProvideValidEmail: Bitte gib eine gültige E-Mail-Adresse an -emailSignupLink: Bitte sende mir den Anmeldelink per E-Mail -alreadyHaveAnAccount: Hast du bereits ein Konto? -dontHaveAnAccount: Du hast noch keinen Account? -signIn: Anmelden -signInHere: Hier anmelden -signUpHere: Registriere dich hier -emailUsernameId: E-Mail-Adresse, Benutzername oder Benutzer-ID -welcomeName: 'Herzlich willkommen, { name }' -password: Passwort -processing: In Bearbeitung -emailSent: E-Mail versendet -somethingWentWrong: Etwas ist schiefgelaufen diff --git a/packages/i18n/src/locales/de/welcome.yaml b/packages/i18n/src/locales/de/welcome.yaml deleted file mode 100644 index 0e3b34c5924..00000000000 --- a/packages/i18n/src/locales/de/welcome.yaml +++ /dev/null @@ -1,10 +0,0 @@ ---- -units: Wähle die Einheiten aus, die du verwenden möchtest -username: Wähle einen Benutzernamen -avatar: Profilbild hinzufügen -bio: Erzähle uns ein wenig über dich -social: Lass uns wissen, wo wir dir folgen können -newsletter: Teile uns deine Newsletter-Präferenz mit -letUsSetupYourAccount: Lass uns deinen Account einrichten. -walkYouThrough: "Wir führen dich durch die folgenden Schritte:" -someOptional: Obwohl alle diese Schritte optional sind, empfehlen wir dir sie durchzugehen, um das Beste aus FreeSewing herauszuholen. diff --git a/packages/i18n/src/locales/en/account.yaml b/packages/i18n/src/locales/en/account.yaml deleted file mode 100644 index 713b6d2222b..00000000000 --- a/packages/i18n/src/locales/en/account.yaml +++ /dev/null @@ -1,59 +0,0 @@ -accountRemoved: Account removed -accountRestricted: Account restricted -avatar: Avatar -avatarInfo: Your avatar or profile picture will be shown on your profile page. -avatarTitle: Set your profile picture -bio: Bio -bioInfo: This is where you can tell other freesewing users a little bit about yourself. This field supports MarkDown, so you can include links. If you have a blog, this is where you link to it so others can discover it. -bioTitle: Write a short bio -currentPassword: Current password -email: E-mail address -emailInfo: The E-mail address linked to your account is important, as it will be used to regain access to your account if you forget your password. Because of this, changing your E-mail address requires confirmation. -emailTitle: Enter the E-mail address you want to link to this account -exportYourData: Export your data -exportYourDataInfo: The EU's General Data Protection (GDPR) ensures your so-called right to data portability — the right to obtain and reuse your personal data for your own purposes, or across different services. -exportYourDataTitle: Click below to download your personal data -github: Github -githubInfo: If you provide your GitHub username, your profile page will contain a link to your Github account, so visitors can discover your code contributions, star you, or follow you. -githubTitle: Fill in your Github username -instagramInfo: If you provide your Instagram username, your profile page will contain a link to your Instagram account, so visitors can discover your pictures, and follow you. -instagram: Instagram -instagramTitle: Fill in your Instagram username -languageInfo: This language choice determines in what language you will receive E-mails from freesewing. It does not determine the language of the website, which can be chosen on every page. -language: Language -languageTitle: Select the language of your choice -newPassword: New password -newsletter: Newsletter -newsletterTitle: Would you like to receive the FreeSewing newsletter? -newsletterInfo: Once every 3 months, we send out our newsletter with honest wholesome content. No tracking, no ads, no nonsense. -passwordInfo: Changing your password requires your current password. Fill that in, then fill in your new password too. -password: Password -passwordTitle: Enter your current password, and your new password -patronInfo: Patrons support Freesewing financially. They are loyal supporters who ensure a sustainable future for freesewing.org, our code, our patterns, and our community. -patron: Patron -removeYourAccountInfo: The EU's General Data Protection (GDPR) ensures your so-called right to data erasure — the right to have your personal data removed. -removeYourAccount: Remove your account -removeYourAccountWarning: This will remove your account, your drafts, your models, and all data we have stored for you. There is no way back from this. -resetPasswordInfo: Enter your new password. -resetPassword: Reset password -resetPasswordTitle: Enter your new password -restrictProcessingOfYourDataInfo: The EU's General Data Protection (GDPR) ensures your so-called right to restrict processing — the right to put a halt on the processing of your data. -restrictProcessingOfYourData: Restrict processing of your data -restrictProcessingWarning: While no data will be removed, this will log you out and freeze your account. Furthermore, you can not undo this on your own, but will have to contact us when you want to restore access to your account. -reviewYourConsent: Review your consent -socialInfo: If you provide your GitHub, Twitter, or Instagram username, your profile page will contain links to your accounts on these sites. This allows freesewing users to follow you there.
We are not contacting any of these sites on your behalf. This is just so that people can connect the dots and know that for example user @joost on freesewing is the same person as user @j__st on twitter. -social: Social -socialTitle: Let people follow you elsewhere -twitterInfo: If you provide your Twitter username, your profile page will contain a link to your Twitter account, so visitors can discover your tweets, and follow you. -twitterTitle: Fill in your Twitter username -twitter: Twitter -unitsInfo: Freesewing supports both the metric system, and imperial measurements. -unitsTitle: Please select the unit system you are most familiar with -units: Units -usernameInfo: Everyone starts with a randomly generated username. That isn't very personal, so you can change your username to something more you. Like your name, or queenoffarts or whatever. -usernameTitle: Please choose your username -username: Username -accountIsInactive: Your account is inactive -accountNeedsActivation: Before you can login, you need to activate your account. Please check your inbox for the registration email and click the link within it. -reloadAccount: Reload account -reloadAccountDescription: This will reload your account data from the backend. It has the same effect as logging out, and then logging in again. diff --git a/packages/i18n/src/locales/en/app.yaml b/packages/i18n/src/locales/en/app.yaml deleted file mode 100644 index 55b7f242658..00000000000 --- a/packages/i18n/src/locales/en/app.yaml +++ /dev/null @@ -1,341 +0,0 @@ -100PercentCommunity: 100% community -100PercentFree: 100% free -100PercentOpenSource: 100% open source -aboutFreesewing: About Freesewing -accessoryPatterns: Accessory Patterns -account: Account -accountCreated: Account created -actions: Actions -allDocumentation: All documentation -andThatIsAwesome: And that is awesome -applyThisLayout: Apply this layout -areYouSureYouWantToContinue: Are you sure you want to continue? -askForHelp: Ask for help -automatic: Automatic -averagePeopleDoNotExist: "Average people don't exist" -awesome: Awesome -back: Back -becauseThatWouldBeReallyHelpful: Because that would be really helpful. -becomeAPatron: Become a patron -blockPatterns: Block/Sloper Patterns -blog: Blog -browseBlogposts: Browse blogposts -browsePatterns: Browse patterns -browseShowcases: Browse showcases -butThatCouldChange: But that could change -cancel: Cancel -changePerson: Change person -changePattern: Change pattern -chatOnDiscord: Chat on Discord -checkInboxClickLinkInConfirmationEmail: Now check your inbox and click the link in the confirmation Email we've sent you. -chest: Chest -chestInfo: Breasts require extra measurements. If this person has no breasts, irrelevant measurements will be hidden when configuring them. This has no impact on how patterns are drafted. -chooseASize: Choose a size -chooseAPerson: Choose a person -chooseADesign: Choose a design -chooseAPattern: Choose a pattern -chooseYourOptions: Choose your options -close: Close -community: Community -configureLayout: Configure layout -configureYourDraft: Configure your draft -contactUs: Contact us -contentLocaleFallback: That's why we're showing you the English version instead. -contents: Contents -continue: Continue -copiedToClipboard: Copied to clipboard -copy: Copy -couldYouTranslateThis: Could you translate this? -countModelsLackingForPattern: '{count} of your people lack the required measurements to draft {pattern}' -created: Created -custom: Custom -customSeamAllowance: Custom seam allowance -lightMode: Light mode -data: Data -darkMode: Dark mode -default: Default -demo: Demo -designOptions: Design options -designs: Designs -docs: Documentation -docsFooterMsg: Documentation is never finished. Hopefully we were able to answer all your questions, but if that's not the case, help is available. -docsNotFoundMsg: We were unable to find this documentation, which typically means that it hasn't been written yet. -docsNotFoundTitle: This documentation is missing -documentationForDevelopers: Documentation for developers -documentationForEditors: Documentation for editors -documentationForTranslators: Documentation for translators -documentationOverview: Documentation overview -dolls: Dolls -download: Download -draft: Draft -draftPattern: 'Draft {pattern}' -testPattern: 'Test {pattern}' -draftPatternForModel: 'Draft {pattern} for {model}' -drafts: Drafts -draftSettings: Draft settings -dragAndDropImageHere: Drag and drop an image here, or select one manually with the button below -emailAddress: E-mail address -emailWorksToo: "If you don't know your username, you can also use your E-mail address to login" -enterEmailPickPassword: Enter your E-mail address, and pick a password -exportTiledPDF: Export tiled PDF -faq: Frequently asked questions -fieldRemoved: '{field} removed' -fieldSaved: '{field} saved' -filterByPattern: Filter by pattern -filterPatterns: Filter patterns -forgotLoginInstructions: "If you don't remember your password, enter your username or E-mail address below and click the Reset password button" -freesewing: Freesewing -freesewingOnGithub: Freesewing on GitHub -garmentPatterns: Garment Patterns -giants: Giants -github: GitHub -goAheadWeWillWait: Go ahead, we'll wait. -goodJob: Good job -goodToSeeYouAgain: Good to see you again {user} -handle: Handle -helpUsTranslate: Help us translate -home: Home -howCanWeHelpYou: How can we help you? -howToTakeMeasurements: How to take measurements -i18n: Internationalization -imperialUnits: Imperial units (inch) -instagram: Instagram -invalidTldMessage: '.{tld} is not a valid TLD' -joinTheChatMsg: We have a community on Discord with friendly people you can chat to. -justAMoment: Just a moment -layout: Layout -logIn: Log in -loginWithProvider: 'Log in with {provider}' -logOut: Log out -manual: Manual -markdownHelp: MarkDown help -measurements: Measurements -menu: Menu -metadata: Metadata -metricUnits: Metric units (cm) -person: Person -people: People -nameInfo: A name helps to keep things apart. You can pick any name you want. -name: Name -addThing: Add {thing} -newThing: New {thing} -newPatternForModel: 'New {pattern} for {model}' -noChanges: No changes -no: 'No' # Keep in quotes or it will evaluate to false -noPasswordPolicy: We don't enforce a password policy -noSeamAllowance: No seam allowance -notAllOfThisContentIsAvailableInLanguage: Not all of this content is available in English -notesInfo: These are your notes. You can write anything you want here -notes: Notes -ohNo: Oh no! -oneMoreThing: One more thing -optionalMeasurements: Optional measurements -options: Options -orPayPerYear: Or pay per year -other: Other -otherThing: 'Other {thing}' -ourPatrons: Our patrons -ourRevenuePledge: Our revenue pledge -patron-2: Powder monkey -patron-4: First mate -patron-8: Captain -patronHelp: If you have any questions, or would like to make changes to your Patron status, please contact us -patron: Patron -patronPitch: If you think what we do is worthwhile, and if you can spare a few coins each month without hardship, please support our work -patronsKeepUsAfloat: Freesewing is made possible by the financial support of our Patrons. They keep this ship afloat. -patternInstructions: Pattern instructions -patternOptions: Pattern options -pattern: pattern -sewingPatterns: Sewing patterns -patterns: Patterns -pendingConfirmation: Pending confirmation -perMonth: Per month -pleaseEnterAValidEmailAddress: Please enter a valid E-mail address -pleaseIncludeTheInformationBelow: Please include the information below -preview: Preview -privacyNotice: Privacy notice -proceedWithCaution: Proceed with caution -profile: Profile -relatedLinks: Related links -remove: Remove -removeThing: Remove {thing} -reportThisOnGithub: Report this on GitHub -requiredMeasurements: Required measurements -resendActivationEmailMessage: "Fill in the E-mail address you signed up with, and we'll send you a new confirmation message." -resendActivationEmail: Re-send activation E-mail -resetPassword: Reset password -reset: Reset -restoreDefaults: Restore defaults -restoreDesignDefaults: Restore design defaults -restorePatternDefaults: Restore pattern defaults -saveDraftToYourAccount: Save draft to your account -save: Save -searchLanguageMsg: Every language has its own search index. Since not all our content is translated, you may find more result in the English search. -searchLanguageTitle: Can't find what you're looking for? -search: Search -selectAPartToMoveMirrorOrRotate: Select a part to move, mirror, or rotate -selectImage: Select image -sendAnEmail: Send an E-mail -settings: Settings -sewingHelp: Sewing help -sewingPatternsForNonAveragePeople: Sewing patterns for non-average people -share: Share -shareFreesewing: Share FreeSewing -showcase: Showcase -signUpForAFreeAccount: Sign up for a free account -signUp: Sign up -signupWithProvider: 'Sign up with {provider}' -sortByField: Sort by {field} -standardSeamAllowance: Standard seam allowance -startOver: Start over -startTranslatingNowOrRead: '{startTranslatingNow}, or read the {documentationForTranslators} first.' -startTranslatingNow: Start translating now -subscribe: Subscribe -support: Support -supportFreesewing: Support freesewing -tellMeMore: Tell me more -thanksForYourSupport: Thanks for your support -thisContentIsNotAvailableInLanguage: This content is not available in English -thisFieldSupportsMarkdown: This field supports Markdown -thisPageRequiresAuthentication: This page requires authentication -troubleLoggingIn: Trouble logging in? -twitter: Twitter -txt-footer: Freesewing is made by a community of contributors
with the financial support of our Patrons -txt-tier2: Our most democractically priced tier. It may be less than the price of a latte, but your support means the world to us. -txt-tier4: Subscribe to this tier and we'll send some of our much covetted freesewing swag to your home anywhere in the world. -txt-tier8: "If you don't merely want to support us, but want to see freesewing thrive, this is the tier for you. Also: extra swag." -txt-tiers: 'FreeSewing is fuelled by a voluntary subscription model' -unitsInfo: Freesewing supports both the metric system and imperial units. Simply pick which one you'd like to use here. (the default is to use the units configured in your account). -updated: Updated -update: Update -userHasBeenWithUsSince: '{user} has been with us since {since}' -users: Users -utilityPatterns: Utility Patterns -weAreValidatingYourConfirmationCode: We are validating your confirmation code -weCouldNotValidateYourConfirmationCode: We could not validate your confirmation code -weEncounteredAProblem: We encountered a problem -weEncourageYouToReportThis: We encourage you to report this -welcomeAboard: Welcome aboard -welcome: Welcome -weNeverShareYourEmail: We'll never share your email with anyone else -whatIsThis: What is this? -withBreasts: With breasts -withoutBreasts: Without breasts -yay: Yay! -yes: 'Yes' # Keep in quotes or it will evaluate to true -youAreAPatron: You are a patron -youAreNotAPatron: Your are not a patron -youAreNotLoggedIn: You are not logged in -yourRights: Your rights -makerDocs: Maker documentation -devDocs: Developer documentation -slogan: A JavaScript library for made-to-measure sewing patterns -getStarted: Get started -apiReference: API Reference -tutorial: Tutorial -editThisPage: Edit this page -loginRequiredRedirect: 'You were redirected to the login page because {page} requires authentication' -various: Various -sewing: Sewing -examples: Examples -by: by -years: Years -pricing: Pricing -createFirst: Start by creating a new pattern -noPattern: You don't have any patterns (yet). Create a new pattern, then save it to your account. -modelFirst: Start by adding measurements -noModel: You haven't added any measurements (yet). FreeSewing can generate made-to-measure sewing patterns. But for that, we need measurements. -noModel2: So the first thing you should do is add a person, and crack out your measuring tape. -noUserBrowsingTitle: "You can't just browse all users" -noUserBrowsingText: "We've got thousands of them. Surely you have better things to do?" -usePatternMeasurements: 'Use the measurements of the original pattern' -createReplica: Create a replica -showDetails: Show details -hideDetails: Hide details -clickBelowToLogOut: Click below to log out -compare: Compare -savePattern: Save pattern -recreate: Recreate -recreateThing: Recreate {thing} -recreateThingForPerson: Recreate {thing} for {person} -seeYouLaterUser: See you later {user} -startWithNeckTitle: Start with the neck circumference -startWithNeckDescription: Based on your neck circumference, we can help you spot mistakes in your measurements. -whatYouNeed: What you need -fabricOptions: Fabric options -cutting: Cutting -instructions: Instructions -hide: Hide -show: Show -oneMomentPlease: One moment please -loadingMagic: We are loading the magic -estimate: Estimate -actual: Actual -weEstimateYM2B: 'We estimate your {measurement} to be around:' -availablePatterns: Available patterns -browseCollection: Browse collection -browseYourPatterns: Browse your patterns -yourPatterns: Your patterns -loginNeededToSavePatternsMsg: You need to be logged in to save your patterns -docsForContributors: Documentation for contributors -patternDocs: Pattern documentation -socialMedia: Social media -create: Create -browse: Browse -patrons: Patrons -scrollToTop: Scroll to top -sitemap: Sitemap -contributeToThing: Contribute to {thing} -mtmIsOurJam: Made-to-measure sewing patterns is what we specialize in -fitYouDeserve: You're really missing out if you go for standardized sizes.
So sign up today, and get the fit you deserve. -supportNag: FreeSewing is free, but we'd appreciate if you would consider supporting us. -madeToMeasure: Made-to-measure -sizes: Sizes -standardSizes: Standard sizes -accountRequired: This feature requires a FreeSewing account -size: Size -switchToThing: 'Switch to {thing}' -saveThing: 'Save {thing}' -shareThing: 'Share {thing}' -link: Link -cloneThing: 'Clone {thing}' -cloneDescription: Recreate an exact copy, using the measurements of the original pattern. -furtherReading: Further reading -saveAsNewPattern: Save As New Pattern -saveAsNewPattern-txt: Store (a copy of) this pattern in your FreeSewing account -printPattern: Print pattern -editThing: 'Edit {thing}' -editPattern-txt: Load this pattern in the pattern editor -featureRequiresAccount: This feature requires a FreeSewing account -zoom: Zoom -zoomIn: Zoom in -zoomOut: Zoom out -zoom-txt: Switches between constraining the height or the width of the pattern to fit on your screen -savePattern-txt: Store this pattern in your FreeSewing account -comparePattern: Compare pattern -showPattern: Show pattern -comparePattern-txt: Compare your pattern to a range a standard sizes to review possible fitting issues -recreatePattern: Recreate pattern -recreatePattern-txt: Choose a different person, then recreate this pattern for that person -editOwnPatternsOnly: You can only edit your own patterns -editOwnPatternsOnly-txt: You cannot edit this pattern because it isn't yours. But you can use it as a baseline to create your own pattern. -updateNotes-txt: Update the notes you keep along your pattern -franceWarning: Beware users in France -franceWarning-txt: Several French E-mail providers — including, free.fr, laposte.net, orange.fr, and sfr.fr — are known to routinely discard our E-mails. -emailNotReceived: If you do not receive the activation email, please reach out so we can help you. -error: Error -info: Info -warning: Warning -debug: Debug -unsubscribe: Unsubscribe -slogan-come: Come for the sewing patterns -slogan-stay: Stay for the community -lightTheme: Light Theme -darkTheme: Dark Theme -hax0rTheme: Hax0r Theme -lgbtqTheme: LGBTQ Theme -transTheme: Trans Theme -accessoryDesigns: Accessory Designs -blockDesigns: Block/Sloper Designs -garmentDesigns: Garment Designs -utilityDesigns: Utility Designs diff --git a/packages/i18n/src/locales/en/cfp.yaml b/packages/i18n/src/locales/en/cfp.yaml deleted file mode 100644 index 610e1bdd502..00000000000 --- a/packages/i18n/src/locales/en/cfp.yaml +++ /dev/null @@ -1,32 +0,0 @@ -author: Author -githubRepo: GitHub repository -packageManager: Package manager -patternName: Pattern name -patternType: Pattern type -patternCreated: Your pattern skeleton has been created at -runTheseCommands: To get started, run this command -startRollup: In one terminal, start the rollup bundler in watch mode -startWebpack: "It will enter the 'example' folder, and start the development environment." -devDocsAvailableAt: Developer documentation is available at -talkToUs: For questions, feedback or suggestions, join our Discord server -draftYourPattern: Draft your pattern -testYourPattern: Test your pattern -draftThing: 'Draft {thing}' -testThing: 'Test {thing}' -renderInBrowser: Click below to render your pattern in the browser. -weWillReRender: When you make changes, we will re-render for you. -youCan: You can -enterMeasurements: Enter measurements by hand -preloadMeasurements: Preload a set of measurements -size: Size -noRequiredMeasurements: This pattern has no required measurements -howtoAddMeasurements: To require measurements, add them to the measurements section of the pattern's configuration file. -seeDocsAt: Documentation on this topic is available at -clearDesignMode: Clear design mode -designMode: Design mode -exportMode: Export mode -thingIsEnabled: '{thing} is enabled' -thingIsDisabled: '{thing} is disabled' -turnOn: Turn on -turnOff: Turn off -validNameWarning: "Please pick a different name as this name would cause problems.\nWe (re-)use the pattern name as the NPM package name.\nPackage names must be lowercase and cannot contain special characters.\nSo please name your pattern accordingly, like:" diff --git a/packages/i18n/src/locales/en/components/common.yaml b/packages/i18n/src/locales/en/components/common.yaml deleted file mode 100644 index 81721a69a4d..00000000000 --- a/packages/i18n/src/locales/en/components/common.yaml +++ /dev/null @@ -1,12 +0,0 @@ -account: Account -blog: Blog -commumity: Community -designs: Designs -docs: Documentation -patternInstructions: Pattern instructions -patternOptions: Pattern options -requiredMeasurements: Required measurements -showcase: Showcase -sloganCome: Come for the sewing patterns -sloganStay: Stay for the community -support: Support diff --git a/packages/i18n/src/locales/en/components/homepage.yaml b/packages/i18n/src/locales/en/components/homepage.yaml deleted file mode 100644 index 5eec4b58f81..00000000000 --- a/packages/i18n/src/locales/en/components/homepage.yaml +++ /dev/null @@ -1 +0,0 @@ -scrollDownToLearnMore: Scroll down to learn more about FreeSewing and try it for free diff --git a/packages/i18n/src/locales/en/components/ograph.yaml b/packages/i18n/src/locales/en/components/ograph.yaml deleted file mode 100644 index 29a941c006c..00000000000 --- a/packages/i18n/src/locales/en/components/ograph.yaml +++ /dev/null @@ -1,4 +0,0 @@ -orgTitle: Welcome to FreeSewing.org -devTitle: Welcome to FreeSewing.dev -labTitle: Welcome to lab.FreeSewing.lab -devDescription: Documentation and tutorials for FreeSewing developers and contributors. Plus our Developers Blog diff --git a/packages/i18n/src/locales/en/components/patrons.yaml b/packages/i18n/src/locales/en/components/patrons.yaml deleted file mode 100644 index 0a1b243166e..00000000000 --- a/packages/i18n/src/locales/en/components/patrons.yaml +++ /dev/null @@ -1,4 +0,0 @@ -becomeAPatron: Become a patron -supportFreesewing: Support FreeSewing -patronLead: FreeSewing is fuelled by a voluntary subscription model -patronPitch: If you think what we do is worthwhile, and if you can spare a few coins each month without hardship, please support our work diff --git a/packages/i18n/src/locales/en/components/posts.yaml b/packages/i18n/src/locales/en/components/posts.yaml deleted file mode 100644 index 241aa07c8a1..00000000000 --- a/packages/i18n/src/locales/en/components/posts.yaml +++ /dev/null @@ -1,2 +0,0 @@ -xMadeThis: '{x} made this' -xWroteThis: '{x} wrote this' diff --git a/packages/i18n/src/locales/en/components/themes.yaml b/packages/i18n/src/locales/en/components/themes.yaml deleted file mode 100644 index e72e0c27467..00000000000 --- a/packages/i18n/src/locales/en/components/themes.yaml +++ /dev/null @@ -1,5 +0,0 @@ -lightTheme: Light Theme -darkTheme: Dark Theme -hax0rTheme: Hax0r Theme -lgbtqTheme: LGBTQ Theme -transTheme: Trans Theme diff --git a/packages/i18n/src/locales/en/components/workbench.yaml b/packages/i18n/src/locales/en/components/workbench.yaml deleted file mode 100644 index 8e1866c7931..00000000000 --- a/packages/i18n/src/locales/en/components/workbench.yaml +++ /dev/null @@ -1,7 +0,0 @@ -designOptions: Design options -forPrinting: For printing -forCutting: For cutting -layoutThing: 'Layout {thing}' -pageSize: Page size -startBySelectingAThing: 'Start by selecting a {thing}' -testThing: 'Test {thing}' diff --git a/packages/i18n/src/locales/en/cty.yaml b/packages/i18n/src/locales/en/cty.yaml deleted file mode 100644 index 556d88fc15d..00000000000 --- a/packages/i18n/src/locales/en/cty.yaml +++ /dev/null @@ -1,19 +0,0 @@ -wafsHashtag: WeAreFreeSewing -weAreACommunityOfMakers: We are a community of makers -weProvideMtmSewingPatterns: We provide made-to-measure sewing patterns -isAPatron: is a patron -contributesWith: contributes with -communityBuilding: Community building -development: Development -patternTesting: Pattern testing -patternDesign: Pattern design -support: Support -translation: Translation -writing: Writing -whereToFindUs: Where to find us -whoWeAre: Who we are -community: Community -team: Team -teams: Teams -contributors: Contributors -calls: Contributor calls diff --git a/packages/i18n/src/locales/en/designs.yml b/packages/i18n/src/locales/en/designs.yml deleted file mode 100644 index 4ce5d772988..00000000000 --- a/packages/i18n/src/locales/en/designs.yml +++ /dev/null @@ -1,141 +0,0 @@ -aaron: - description: Aaron is an athletic shirt or tank top. - title: Aaron A-Shirt -albert: - description: Albert is an apron. - title: Albert apron -bee: - description: Bee is a bikini top - title: Bee bikini top -bella: - description: Bella is a basic body block for people with breasts. - title: Bella body block -benjamin: - description: Benjamin is a bow tie pattern with four different shape options. - title: Benjamin bow tie -bent: - description: This two-part sleeve block is the basis of our coat and jacket patterns. - title: Bent body Block -bob: - description: This is the bib that you can create by following our design tutorial - title: Bob the bib -breanna: - description: Breanna is a basic body block for people with breasts. - title: Breanna body block -brian: - description: Brian is a basic body block for people without breasts. - title: Brian body block -bruce: - description: Bruce are comfortable yet stylish boxer briefs. - title: Bruce boxer briefs -carlita: - description: 'The version for breasts of our Carlton coat, aka Sherlock Holmes coat.' - title: Carlita coat -carlton: - description: 'For Sherlock Holmes cosplay, or just a really nice coat.' - title: Carlton coat -cathrin: - description: Cathrin is an underbust corset or waist trainer. - title: Cathrin corset -charlie: - description: Charlie is a chino trouser pattern. - title: Charlie chinos -cornelius: - description: Cornelius are cycling breeches based on the Keystone drafting method. - title: Cornelius cycling breeches -diana: - description: Diana is a top with a draped neckline. - title: Diana draped top -florent: - description: 'Florent is a flat cap, a rounded cap with a small stiff brim in front.' - title: Florent flat cap -florence: - description: 'Florence is a face mask.' - title: Florence face mask -hi: - description: The world's friendliest shark - title: Hi the shark -holmes: - description: 'For Sherlock Holmes cosplay or just a cute hat.' - title: Holmes deerstalker hat -hortensia: - description: 'Hortensia is a handbag.' - title: Hortensia handbag -huey: - description: Huey is a zip-up hoodie with optional front pockets. - title: Huey hoodie -hugo: - description: Hugo is a hooded jumper with raglan sleeves. - title: Hugo hoodie -jaeger: - description: Jaeger is a sport coat style jacket with two buttons and patch pockets. - title: Jaeger jacket -lucy: - description: Lucy is a historical pocket that you can tie around your waist. - title: Lucy tie-on pocket -lunetius: - description: Lunetius is a lacerna, a historical Roman cloak - title: Lunetius Lacerna -noble: - description: Noble is a body block with prince(ess) seams - title: Noble body block -octoplushy: - description: A multi-armed companion for next-level hugs - title: Octoplushy the octopus -paco: - description: Paco are casual yet stylish summer pants. - title: Paco pants -penelope: - description: Penelope is a pencil skirt with or without a vent in the back. - title: Penelope pencil skirt -sandy: - description: Sandy is an adaptable circle skirt pattern. - title: Sandy circle skirt -shin: - description: Shin are athletic swim trunks. - title: Shin swim trunks -simon: - description: Simon is a highly adaptable shirt pattern for people without breasts. - title: Simon shirt -simone: - description: Simone is simon, adapted for breasts. - title: Simone shirt -sven: - description: Sven is a straightforward sweater. - title: Sven sweatshirt -tamiko: - description: Tamiko is a zero-waste top. - title: Tamiko top -teagan: - description: Teagan is a fitted T-shirt pattern. - title: Teagan T-shirt -theo: - description: Theo is a classic trouser pattern. - title: Theo trousers -tiberius: - description: Tiberius is a historical Roman tunic - title: Tiberius Tunica -titan: - description: Titan is a dartless trouser block. - title: Titan trouser block -trayvon: - description: Trayvon is a tie that cuts no corners for a professional result. - title: Trayvon tie -unice: - description: Unice is a variant of Ursula; A basic, highly-customizable underwear pattern. - title: Unice undies -ursula: - description: Ursula is a basic, highly-customizable underwear pattern. - title: Ursula undies -wahid: - description: Wahid is a classic fitted waistcoat. - title: Wahid waistcoat -walburga: - description: Walburga is a tabard/surcoat, a historical garment from medieval Europe - title: Walburga Wappenrock -waralee: - description: Waralee are wrap pants. - title: Waralee wrap pants -yuri: - description: Yuri is a fancy zipless cardigan based on the Huey & Hugo hoodies - title: Yuri hoodie diff --git a/packages/i18n/src/locales/en/email.yaml b/packages/i18n/src/locales/en/email.yaml deleted file mode 100644 index 02dba24b670..00000000000 --- a/packages/i18n/src/locales/en/email.yaml +++ /dev/null @@ -1,25 +0,0 @@ -emailChangeActionText: 'Confirm your new E-mail address' -emailChangeCopy1: 'You requested to change the E-mail address linked to your account at FreeSewing.org.' -emailChangeCopy2: 'Before we do that, you need to confirm your new E-mail address. Please click the link below to do that:' -emailChangeHiddenIntro: "Let's confirm your new E-mail address" -emailChangeTitle: 'Please confirm your new E-mail address' -emailChangeWhy: 'You received this E-mail because you changed the E-mail address linked to your account on FreeSewing.org' -goodbyeCopy1: "If you'd like to share why you're leaving, you can reply to this message." -goodbyeCopy2: "From our side, we won't bother you again." -goodbyeTitle: 'Thank you for giving FreeSewing a chance' -goodbyeWhy: 'You received this E-mail as a final farewell after removing your account on FreeSewing.org' -passwordResetActionText: 'Re-gain access to your account' -passwordResetCopy1: 'You forgot your password for your account at FreeSewing.org.' -passwordResetCopy2: 'Click the link below to reset your password:' -passwordResetHeaderOpeningLine: "Don't worry, these things happen to all of us" -passwordResetHiddenIntro: 'Re-gain access to your account' -passwordResetSubject: 'Re-gain access to your account on freesewing.org' -passwordResetTitle: 'Reset your password, and re-gain access to your account' -passwordResetWhy: 'You received this E-mail because you requested to reset your password on freesewing.org' -questionsJustReply: "If you have any questions, just reply to this E-mail. I'm always happy to help out. 🙂" -signupActionText: 'Confirm your E-mail address' -signupCopy1: 'Thank you for signing up at FreeSewing.org.' -signupCopy2: 'Before we get started, you need to confirm your E-mail address. Please click the link below to do that:' -signupHiddenIntro: "Let's confirm your E-mail address" -signupSubject: 'Welcome to FreeSewing.org' -signupWhy: 'You received this E-mail because you just signed up for an account on freesewing.org' diff --git a/packages/i18n/src/locales/en/errors.yaml b/packages/i18n/src/locales/en/errors.yaml deleted file mode 100644 index e0c107758d3..00000000000 --- a/packages/i18n/src/locales/en/errors.yaml +++ /dev/null @@ -1,10 +0,0 @@ -404: The page you are looking for cannot be found -confirmationNotFound: If you arrived at this page via the link in a confirmation Email, we encourage you to report this problem. -emailExists: We already have a user with that Email address. Perhaps you'd like to log in instead? -networkError: Backend or network seems down -notAValidImageFormat: Not a valid image format -requestFailedWithStatusCode400: Request failed -requestFailedWithStatusCode401: Authentication failed -requestFailedWithStatusCode403: Forbidden -requestFailedWithStatusCode500: There was an unexpected problem. Please report this. -something: Something went wrong diff --git a/packages/i18n/src/locales/en/filter.yml b/packages/i18n/src/locales/en/filter.yml deleted file mode 100644 index e3b41728fd0..00000000000 --- a/packages/i18n/src/locales/en/filter.yml +++ /dev/null @@ -1,19 +0,0 @@ -filter: Filter -department: Department -type: Type -tags: Tags -code: Code -design: Design -difficulty: Difficulty -resetFilter: Reset filter -accessories: Accessories -block: Block -pattern: Pattern -byPattern: Filter by pattern -underwear: Underwear -top: Top -tops: Tops -bottom: Bottom -bottoms: Bottoms -coats: Coats & jackets -swimwear: Swimwear diff --git a/packages/i18n/src/locales/en/i18n.yaml b/packages/i18n/src/locales/en/i18n.yaml deleted file mode 100644 index f66de4caa96..00000000000 --- a/packages/i18n/src/locales/en/i18n.yaml +++ /dev/null @@ -1,5 +0,0 @@ -de: German -en: English -es: Spanish -fr: French -nl: Dutch diff --git a/packages/i18n/src/locales/en/index.js b/packages/i18n/src/locales/en/index.js deleted file mode 100644 index 859a6472cbf..00000000000 --- a/packages/i18n/src/locales/en/index.js +++ /dev/null @@ -1,85 +0,0 @@ -import account from './account.yaml' -import app from './app.yaml' -import cfp from './cfp.yaml' -import cty from './cty.yaml' -import email from './email.yaml' -import errors from './errors.yaml' -import filter from './filter.yml' -import gdpr from './gdpr.yaml' -import i18n from './i18n.yaml' -import intro from './intro.yaml' -import lab from './lab.yaml' -import measurements from './measurements.yaml' -import options from './options/' -import optiongroups from './optiongroups.yaml' -import parts from './parts.yaml' -import patterns from './patterns.yml' -import plugin from './plugin/' -import settings from './settings.yml' -import welcome from './welcome.yaml' - -import jargonFile from './jargon.yml' - -const topics = { - account, - app, - cfp, - cty, - email, - errors, - filter, - gdpr, - i18n, - intro, - measurements, - lab, - options, - optiongroups, - parts, - patterns, - plugin, - settings, - welcome, -} - -const strings = {} - -for (let topic of Object.keys(topics)) { - for (let id of Object.keys(topics[topic])) { - if (typeof topics[topic][id] === 'string') strings[topic + '.' + id] = topics[topic][id] - else { - for (let key of Object.keys(topics[topic][id])) { - if (typeof topics[topic][id][key] === 'string') - strings[topic + '.' + id + '.' + key] = topics[topic][id][key] - else { - for (let subkey of Object.keys(topics[topic][id][key])) { - if (typeof topics[topic][id][key][subkey] === 'string') - strings[topic + '.' + id + '.' + key + '.' + subkey] = topics[topic][id][key][subkey] - else { - for (let subsubkey of Object.keys(topics[topic][id][key][subkey])) { - if (typeof topics[topic][id][key][subkey][subsubkey] === 'string') - strings[topic + '.' + id + '.' + key + '.' + subkey + '.' + subsubkey] = - topics[topic][id][key][subkey][subsubkey] - else { - console.log('Depth exceeded!', topic, id, key, subkey, subsubkey) - } - } - } - } - } - } - } - } -} - -const jargon = {} -for (let entry in jargonFile) { - jargon[jargonFile[entry].term] = jargonFile[entry].description -} - -export default { - strings, - plugin, - jargon, - topics, -} diff --git a/packages/i18n/src/locales/en/intro.yaml b/packages/i18n/src/locales/en/intro.yaml deleted file mode 100644 index 860442cf147..00000000000 --- a/packages/i18n/src/locales/en/intro.yaml +++ /dev/null @@ -1,11 +0,0 @@ -txt-blog: News, updates, and announcements from the freesewing team -txt-community: 'Everything is run by voluntary contributors. There is no commercial entity behind, or attached to, the freesewing project.' -txt-different: How we're different -txt-draft: "Choose from one of your patterns, choose a model, and pick your options. We'll do the rest." -txt-how: How it works -txt-join: Join thousands of others and sign up for a free account on freesewing.org. -txt-model: All our patterns are made-to-measure. So first thing to do is grab your measuring tape. -txt-newHere: "If you're new here, the best place to start is our demo:" -txt-opensource: 'Our platform, our patterns, and even this website. All our code is available on GitHub. Pull requests welcome!' -txt-patrons: Freesewing is made possible by the financial support of our Patrons. Scroll down to learn about our subscription model. -txt-showcase: Finished projects from the freesewing community diff --git a/packages/i18n/src/locales/en/jargon.yml b/packages/i18n/src/locales/en/jargon.yml deleted file mode 100644 index b8f4a0081ff..00000000000 --- a/packages/i18n/src/locales/en/jargon.yml +++ /dev/null @@ -1,85 +0,0 @@ -basting: - term: basting - description: "See Basting in the Sewing documentation" -coverlock: - term: coverlock - description: "See Coverlock in the Sewing documentation" -cutting: - term: cutting - description: "See Cutting in the Sewing documentation" -darts: - term: darts - description: "See Darts in the Sewing documentation" -doubleWeltPockets: - term: double welt pockets - description: "See Double welt pockets in the Sewing documentation" -ease: - term: ease - description: "See Ease in the Sewing documentation" -edgestitch: - term: edgestitch - description: "See Edgestitching in the Sewing documentation" -fabricGrain: - term: fabric grain - description: "See Fabric grain in the Sewing documentation" -goodSidesTogether: - term: good sides together - description: "See Good sides together in the Sewing documentation" -onTheFold: - term: on the fold - description: "See On the fold in the Sewing documentation" -hemming: - term: hemming - description: "See Hemming in the Sewing documentation" -jersey: - term: jersey - description: "See Jersey in the Sewing documentation" -knitBinding: - term: knit binding - description: "See Knit binding in the Sewing documentation" -knitFabric: - term: knit fabric - description: "See Knit fabric in the Sewing documentation" -pinning: - term: pinning - description: "See Pinning in the Sewing documentation" -rayon: - term: rayon - description: "See Rayon in the Sewing documentation" -sa: - term: seam allowance - description: "See Seam allowance in the Sewing documentation" -serger: - term: serger - description: "See Serger in the Sewing documentation" -slipstitch: - term: slipstitch - description: "See Slipstitch in the Sewing documentation" -topstitching: - term: topstitching - description: "See Topstitching in the Sewing documentation" -trimming: - term: trimming - description: "See Trimming in the Sewing documentation" -twinNeedle: - term: twin needle - description: "See Twin needle in the Sewing documentation" -zigZag: - term: zig-zag stitch - description: "See Zig-zag stitch in the Sewing documentation" - -freesewing: - term: freesewing - description: 'FreeSewing is an open source platform for made-to-measure sewing patterns' -patternOptions: - term: pattern options - description: 'The pattern options allow you to customize the design of the pattern' -draftSettings: - term: draft settings - description: 'The draft settings give you control of how a pattern is generated' -patrons: - term: patrons - description: 'Patrons support Freesewing financially. They are loyal supporters who ensure a sustainable future for freesewing.org, our code, our patterns, and our community.' -msf: - term: msf - description: "Médecins Sans Frontières/Doctors Without Borders - See msf.org" diff --git a/packages/i18n/src/locales/en/lab.yaml b/packages/i18n/src/locales/en/lab.yaml deleted file mode 100644 index 1d4ea84b02b..00000000000 --- a/packages/i18n/src/locales/en/lab.yaml +++ /dev/null @@ -1,5 +0,0 @@ -slogan: The FreeSewing lab provides -slogan1: All our pattern designs -slogan2: New & old version -slogan3: Bleeding edge code -slogan4: Unreleased designs diff --git a/packages/i18n/src/locales/en/loader.yaml b/packages/i18n/src/locales/en/loader.yaml deleted file mode 100644 index 3449e3e68b3..00000000000 --- a/packages/i18n/src/locales/en/loader.yaml +++ /dev/null @@ -1 +0,0 @@ -processing: Processing diff --git a/packages/i18n/src/locales/en/optiongroups.yaml b/packages/i18n/src/locales/en/optiongroups.yaml deleted file mode 100644 index e8fbc4f37b2..00000000000 --- a/packages/i18n/src/locales/en/optiongroups.yaml +++ /dev/null @@ -1,24 +0,0 @@ -advanced: Advanced -armhole: Armhole -closure: Closure -collar: Collar -construction: Construction -cuffs: Cuffs -darts: Darts -elastic: Elastic -fit: Fit -pockets: Pockets -preferences: Preferences -sleevecap: Sleevecap -sleeves: Sleeves -style: Style -backPockets: Back pockets -frontPockets: Front pockets -waistband: Waistband -fly: Fly -bellaDarts: Bella darts -bellaArmhole: Bella armhole -bellaAdvanced: Bella advanced -clavi: Clavi -type: Type -size: Size diff --git a/packages/i18n/src/locales/en/options/aaron.yml b/packages/i18n/src/locales/en/options/aaron.yml deleted file mode 100644 index f6f6b131f81..00000000000 --- a/packages/i18n/src/locales/en/options/aaron.yml +++ /dev/null @@ -1,31 +0,0 @@ -armholeDrop: - title: Armhole drop - description: Lower the armhole by this amount. Negative values will raise it. - -backlineBend: - title: Back armhole shape - description: Determines the shape/bend of the back of the armholes. - -hipsEase: - title: Hips ease - description: The amount of ease at your hips. - -necklineBend: - title: Neckline shape - description: Determines the shape/bend of the neckline at the front. - -necklineDrop: - title: Neckline drop - description: The amount the neck is cutout at the front. - -shoulderStrapPlacement: - title: Shoulderstrap placement - description: Determines whether the shoulder strap is placed closer to the neck (lower numbers) or the shoulder (higher numbers). - -shoulderStrapWidth: - title: Shoulderstrap width - description: The width of the shoulder straps. - -stretchFactor: - description: Determines the horizontal negative ease. - title: Stretch diff --git a/packages/i18n/src/locales/en/options/albert.yml b/packages/i18n/src/locales/en/options/albert.yml deleted file mode 100644 index 8749ffafeff..00000000000 --- a/packages/i18n/src/locales/en/options/albert.yml +++ /dev/null @@ -1,24 +0,0 @@ -backOpening: - title: Back opening - description: Controls the opening at the back of the apron - -chestDepth: - title: Strap length - description: Controls the length of the straps - -lengthBonus: - title: Length bonus - description: Controls the length of the apron - -bibLength: - title: Bib length - description: Controls the length of the bib - -bibWidth: - title: Bib width - description: Controls the width of the bib - -strapWidth: - title: Strap width - description: Controls the width of the strap - diff --git a/packages/i18n/src/locales/en/options/bee.yml b/packages/i18n/src/locales/en/options/bee.yml deleted file mode 100644 index c38ede7d1b1..00000000000 --- a/packages/i18n/src/locales/en/options/bee.yml +++ /dev/null @@ -1,107 +0,0 @@ -chestEase: - title: Chest ease - description: Controls the chest ease in the underlying Bella block Bee is based on - -waistEase: - title: Waist ease - description: Controls the waist ease in the underlying Bella block Bee is based on - -bustSpanEase: - title: Bust span ease - description: Controls the bust span ease in the underlying Bella block Bee is based on - -topDepth: - title: Top Depth - description: Controls how far the bikini cup extends upwards - -bottomCupDepth: - title: Bottom depth - description: Controls how far the bikini cup extends downwards - -sideDepth: - title: Side depth - description: Controls how far the bikini cup extends towards the side - -sideCurve: - title: Side curve - description: Controls the curvature of the side of the bikini cup - -frontCurve: - title: Front curve - description: Controls the curvature of the front of the bikini cup - -bellaGuide: - title: Show Bella - description: Shows the outline of the Bella block Bee is based on - -ties: - title: Ties - description: Whether to includes ties, yes or no - -bandTieWidth: - title: Band (chest) tie width - description: Controls the width of the ties around your chest - -bandTieLength: - title: Band (chest) tie length - description: Controls the length of the ties around your chest - -bandTieEnds: - title: Band (chest) tie ends - description: Whether you like straight or pointy ends on the ties around your chest - -bandTieColours: - title: Band (chest) tie length colours - description: Whether you want single color ties around your chest, or dual-coloured ones - -neckTieWidth: - title: Neck tie width - description: Controls the width of the ties around your chest - -neckTieLength: - title: Neck tie length - description: Controls the length of the ties around your chest - -neckTieEnds: - title: Neck tie ends - description: Whether you like straight or pointy ends on the ties around your chest - -neckTieColours: - title: Neck tie colours - description: Whether you want single color ties around your chest, or dual-coloured ones - -crossBackTies: - title: Cross back ties - description: Whether you'd like to use the cross back tie variation of Bee - -bandLength: - title: Band Length (Cross back ties) - description: Controls the length of the band around your chest for the cross back ties variation of Bee - -backDartHeight: - title: Back dart height (Bella) - description: Controls the back dart height in the underlying Bella block Bee is based on - -armholeDepth: - title: Armhole depth (Bella) - description: Controls the armhole depth in the underlying Bella block Bee is based on - -frontArmholePitchDepth: - title: Front armhole pitch depth (Bella) - description: Controls the front armhole pitch depth in the underlying Bella block Bee is based on - -frontShoulderWidth: - title: Front shoulder width (Bella) - description: Controls the front shoulder width in the underlying Bella block Bee is based on - -fullChestEaseReduction: - title: Full chest reduction (Bella) - description: Controls the full chest reduction in the underlying Bella block Bee is based on - -highBustWidth: - title: High bust width (Bella) - description: Controls the high bust width in the underlying Bella block Bee is based on - -shoulderToShoulderEase: - title: Shoulder to Shoulder ease (Bella) - description: Controls the shoulder to shoulder ease in the underlying Bella block Bee is based on diff --git a/packages/i18n/src/locales/en/options/bella.yml b/packages/i18n/src/locales/en/options/bella.yml deleted file mode 100644 index fe110acc1c3..00000000000 --- a/packages/i18n/src/locales/en/options/bella.yml +++ /dev/null @@ -1,75 +0,0 @@ -chestEase: - title: Chest ease - description: Controls the amount of ease at the fullest part of your chest - -waistEase: - title: Waist ease - description: Controls the amount of ease at your waist - -bustSpanEase: - title: Bust span ease - description: Controls the amount of (horizontal) ease added to your bust span when locating the bust point. - -shoulderToShoulderEase: - title: Shoulder to Shoulder ease - description: Controls the amount of ease between your shoulders. Initially set to -.5% because Bella implements a block that is used in the industry. - -fullChestEaseReduction: - title: Full chest ease reduction - description: Allows you to independently reduce the ease around the chest to make it fit tight(er) in that area - -backDartHeight: - title: Back dart height - description: Controls the height of the back dart - -bustDartLength: - title: Bust dart length - description: Controls the length of the bust dart - -waistDartLength: - title: Waist dart length - description: Controls the length of the waist dart - -bustDartCurve: - title: Bust dart curve - description: Controls the curvature of the bust dart - -armholeDepth: - title: Armhole depth - description: Controls the depth of the armhole - -backArmholeSlant: - title: Back armhole slant - description: Slightly rotates the armhole around its pitch point - -frontArmholeCurvature: - title: Front armhole curvature - description: Controls how deep the armhole is scooped out at the front bottom - -backArmholeCurvature: - title: Back armhole curvature - description: Controls how deep the armhole is scooped out at the back bottom - -frontArmholePitchDepth: - title: Front armhole pitch depth - description: Tweaks the horizontal placement of the front armhole pitch point - -backArmholePitchDepth: - title: Back armhole pitch depth - description: Tweaks the horizontal placement of the back armhole pitch point - -backNeckCutout: - title: Back neck cutout - description: Controls how deep the neck opening is scooped out at at the back - -backHemSlope: - title: Back hem slope - description: Controls the slope of the hem at the back - -frontShoulderWidth: - title: Front shoulder width - description: Controls the narrowness of the front shoulders relative to the back - -highBustWidth: - title: High bust width - description: Allows you to tweak the hight bust width at the front diff --git a/packages/i18n/src/locales/en/options/benjamin.yml b/packages/i18n/src/locales/en/options/benjamin.yml deleted file mode 100644 index 67100eed2b2..00000000000 --- a/packages/i18n/src/locales/en/options/benjamin.yml +++ /dev/null @@ -1,36 +0,0 @@ ---- -adjustmentRibbon: - title: Adjustment ribbon - description: Whether or not to include an adjustment ribbon - -bandLength: - title: Band length - description: Length of the band - -tipWidth: - title: Tip width - description: Width of the tips - -knotWidth: - title: Knot width - description: Width of the knot - -bowLength: - title: Bow length - description: Length of the bow (when knotted) - -bowStyle: - title: Bow style - description: Style of the bow - -endStyle: - title: End style - description: Style of the bow ends - -collarEase: - title: Collar ease - description: The amount of ease at your neck - -ribbonWidth: - title: Ribbon width - description: Width of the ribbon diff --git a/packages/i18n/src/locales/en/options/bent.yml b/packages/i18n/src/locales/en/options/bent.yml deleted file mode 100644 index 98228b11d76..00000000000 --- a/packages/i18n/src/locales/en/options/bent.yml +++ /dev/null @@ -1,8 +0,0 @@ -sleeveBend: - title: Sleeve bend - description: Controls the bend of the sleeve at the elbow. - -sleevecapHeight: - title: Sleevecap height - description: Controls the height of the sleevecap. - diff --git a/packages/i18n/src/locales/en/options/bob.yml b/packages/i18n/src/locales/en/options/bob.yml deleted file mode 100644 index de2fae92dfa..00000000000 --- a/packages/i18n/src/locales/en/options/bob.yml +++ /dev/null @@ -1,15 +0,0 @@ -neckRatio: - title: Neck opening - description: Controls the size of the neck opening relative to the bib size - -widthRatio: - title: Width - description: Controls the width of the bib - -lengthRatio: - title: Length - description: Controls the length of the bib - -headSize: - title: Head size - description: The head circumference you want the bib to accomodate diff --git a/packages/i18n/src/locales/en/options/breanna.yml b/packages/i18n/src/locales/en/options/breanna.yml deleted file mode 100644 index d4c87839936..00000000000 --- a/packages/i18n/src/locales/en/options/breanna.yml +++ /dev/null @@ -1,40 +0,0 @@ -shoulderDart: - title: Shoulder dart - description: Whether or not to inlude a dart at the shoulder to round the back -shoulderDartSize: - title: Shoulder dart size - description: The size of the shoulder dart -shoulderDartLength: - title: Shoulder dart length - description: The length of the shoulder dart -waistDart: - title: Waist dart - description: Whether or not to inlude a dart at the waist to round the back -waistDartSize: - title: Waist dart size - description: The size of the waist dart -waistDartLength: - title: Waist dart length - description: The length of the waist dart -verticalEase: - title: Vertical ease - description: The amount of ease to distribute along the length of the garment -waistEase: - title: Waist ease - description: The amount of ease at the waist -primaryBustDart: - title: Bust dart - description: Where to place the bust dart to shape the chest -primaryBustDartLength: - title: Bust dart length - description: The length of the bust dart -secondaryBustDart: - title: Secondary bust dart - description: Optionally include a secondary bust dart to distribute the shaping of the chest -secondaryBustDartLength: - title: Secondary bust dart length - description: The length of the secondary bust dart -primaryBustDartShaping: - title: Bust darts shaping - description: Controls the balance between the main and secondary bust darts - diff --git a/packages/i18n/src/locales/en/options/brian.yml b/packages/i18n/src/locales/en/options/brian.yml deleted file mode 100644 index f64d0f0fc68..00000000000 --- a/packages/i18n/src/locales/en/options/brian.yml +++ /dev/null @@ -1,139 +0,0 @@ -acrossBackFactor: - title: Across back factor - description: Controls your across back width as a factor of your shoulder to shoulder measurement. - -armholeDepthFactor: - title: Armhole depth factor - description: Controls the depth of the armhole. Higher values make a deeper armhole. - -backNeckCutout: - title: Back neck cutout - description: How deep the neck is cut out at the back - -bicepsEase: - title: Biceps ease - description: 'The amount of ease at your upper arm. Note that while we try to respect this, fitting the sleeve to the armhole takes precedence over respecting the exact amount of ease.' - -collarEase: - title: Collar ease - description: The amount of ease around your neck - -chestEase: - title: Chest ease - description: The amount of ease at your chest. - -cuffEase: - title: Cuff ease - description: The amount of ease at your wrist. - -draftForHighBust: - title: Draft for high bust - description: Draft the pattern for the high bust measurement (if available) rather than the (full) chest. This will result in a more fitted garment for people with breasts. - -frontArmholeDeeper: - title: Front armhole extra cutout - description: How much do you want the front armhole to be cut out deeper than the back. - -lengthBonus: - title: Length bonus - description: The amount to lengthen the garment. A negative value will shorten it. - -s3Collar: - title: 'Shoulder seam shift: collar side' - description: Increase this option to shift the shoulder seam forward on the collar side. Decreasing it shifts it backwards. - -s3Armhole: - title: 'Shoulder seam shift: armhole side' - description: Increase this option to shift the shoulder seam forward on the armhole side. Decreasing it shifts it backwards. - -shoulderEase: - title: Shoulder ease - description: The amount of ease at your shoulder. This increases the shoulder to shoulder distance to accommodate additional layers or thickness. - -shoulderSlopeReduction: - title: Shoulder slope reduction - description: The amount by which the shoulder slope is reduced to allow for shoulder padding. - -sleeveLengthBonus: - title: Sleeve length bonus - description: The amount to lengthen the sleeve. A negative value will shorten it. - -sleevecapEase: - title: Sleevecap ease - description: The amount by which the sleevecap seam is longer than the armhole seam. - -sleevecapTopFactorX: - title: Sleevecap top X - description: Controls the horizontal location of the sleevecap top. - -sleevecapTopFactorY: - title: Sleevecap top Y - description: Controls the height of the sleevecap. A higher value results in a higher and more narrow sleevecap. - -sleevecapBackFactorX: - title: Sleevecap back X - description: Controls the placement of the sleevecap back pitchpoint on the X-axis (horizontal) - -sleevecapBackFactorY: - title: Sleevecap back Y - description: Controls the placement of the sleevecap back pitchpoint on the Y-axis (vertical) - -sleevecapFrontFactorX: - title: Sleevecap front X - description: Controls the placement of the sleevecap front pitchpoint on the X-axis (horizontal) - -sleevecapFrontFactorY: - title: Sleevecap front Y - description: Controls the placement of the sleevecap front pitchpoint on the Y-axis (vertical) - -sleevecapQ1Offset: - title: Sleevecap Q1 offset - description: Controls the curvature of the sleevecap in the first quadrant (front armhole) - -sleevecapQ2Offset: - title: Sleevecap Q2 offset - description: Controls the curvature of the sleevecap in the second quadrant (front shoulder) - -sleevecapQ3Offset: - title: Sleevecap Q3 offset - description: Controls the curvature of the sleevecap in the third quadrant (back shoulder) - -sleevecapQ4Offset: - title: Sleevecap Q4 offset - description: Controls the curvature of the sleevecap in the fourth quadrant (back armhole) - -sleevecapQ1Spread1: - title: Sleevecap Q1 downward spread - description: Controls the spread of the sleevecap first quadrant curvature towards the armhole - -sleevecapQ1Spread2: - title: Sleevecap Q1 upward spread - description: Controls the spread of the sleevecap first quadrant curvature towards the shoulder - -sleevecapQ2Spread1: - title: Sleevecap Q2 downward spread - description: Controls the spread of the sleevecap second quadrant curvature towards the armhole - -sleevecapQ2Spread2: - title: Sleevecap Q2 upward spread - description: Controls the spread of the sleevecap second quadrant curvature towards the shoulder - -sleevecapQ3Spread1: - title: Sleevecap Q3 upward spread - description: Controls the spread of the sleevecap third quadrant curvature towards the shoulder - -sleevecapQ3Spread2: - title: Sleevecap Q3 downward spread - description: Controls the spread of the sleevecap third quadrant curvature towards the armhole - -sleevecapQ4Spread1: - title: Sleevecap Q4 upward spread - description: Controls the spread of the sleevecap fourth quadrant curvature towards the shoulder - -sleevecapQ4Spread2: - title: Sleevecap Q4 downward spread - description: Controls the spread of the sleevecap fourth quadrant curvature towards the armhole - -sleeveWidthGuarantee: - title: Sleeve width guarantee - description: Controls how much of the sleeve width will be guaranteed. This determines how much we can alter the sleeve width to fit the sleeve in the armhole. diff --git a/packages/i18n/src/locales/en/options/bruce.yml b/packages/i18n/src/locales/en/options/bruce.yml deleted file mode 100644 index de0d98cc7be..00000000000 --- a/packages/i18n/src/locales/en/options/bruce.yml +++ /dev/null @@ -1,23 +0,0 @@ -bulge: - title: Bulge - description: Increase angle to create more room in the front pouch. - -legBonus: - title: Leg length bonus - description: Extra length to add to the legs. - -rise: - title: Rise - description: Amount to raise the waist. A negative value will lower it. - -stretch: - title: Stretch - description: The amount of negative ease. - -legStretch: - title: Leg stretch - description: 'For best results, you want to fit your legs a bit more snugly — say no to gaping.' - -backRise: - title: Back rise - description: Percentage by which the waist will be raised at the back. diff --git a/packages/i18n/src/locales/en/options/carlita.yml b/packages/i18n/src/locales/en/options/carlita.yml deleted file mode 100644 index c45cb365b5d..00000000000 --- a/packages/i18n/src/locales/en/options/carlita.yml +++ /dev/null @@ -1,3 +0,0 @@ -contour: - title: Contour - description: Controls how sharply the princess seam is contoured. diff --git a/packages/i18n/src/locales/en/options/carlton.yml b/packages/i18n/src/locales/en/options/carlton.yml deleted file mode 100644 index e1dee89da06..00000000000 --- a/packages/i18n/src/locales/en/options/carlton.yml +++ /dev/null @@ -1,39 +0,0 @@ -seatEase: - title: Seat ease - description: Amount of ease around your bum - -pocketPlacementHorizontal: - title: Horizontal pocket placement - description: The (horizontal) location of the pockets - -pocketPlacementVertical: - title: Vertical pocket placement - description: The (vertical) location of the pockets - -collarHeight: - title: Collar height - description: Height of the collar - -length: - title: Length - description: Total length - -pocketFlapRadius: - title: Pocket flap radius - description: The amount by which the pocket flap is rounded - -pocketRadius: - title: Pocket radius - description: The amount by which the pocket is rounded - -chestPocketHeight: - title: Chest pocket height - description: Height of the chest pocket - -beltWidth: - title: Belt width - description: Width of the belt - -buttonSpacingHorizontal: - title: Horizontal button spacing - description: Horizontal spacing of the buttons, also determines the front closure overlap diff --git a/packages/i18n/src/locales/en/options/cathrin.yml b/packages/i18n/src/locales/en/options/cathrin.yml deleted file mode 100644 index 56bdb3f01e9..00000000000 --- a/packages/i18n/src/locales/en/options/cathrin.yml +++ /dev/null @@ -1,34 +0,0 @@ -panels: - title: Number of panels - description: The number of panels to draft. More panels are better to fit a curvier model. - options: - '11': 11 panels - '13': 13 panels - -waistReduction: - title: Waist reduction - description: The amount by which you want the corset to pinch your waist. - -backOpening: - title: Back opening - description: Opening at the center back closure. - -backRise: - title: Back rise - description: How much the back panels rise from your arms to your center back. - -backDrop: - title: Back drop - description: How much the back panels lower from your hips towards your center back. Negative values will raise the back. - -frontRise: - title: Front rise - description: 'Rise of the front panels at center front, between your breasts. Negative values will lower them.' - -frontDrop: - title: Front drop - description: How much the front panels lower from your hips towards your center front. - -hipRise: - title: Hip rise - description: How much the side panels rise on your hips. diff --git a/packages/i18n/src/locales/en/options/charlie.yml b/packages/i18n/src/locales/en/options/charlie.yml deleted file mode 100644 index 1d15c0d5d52..00000000000 --- a/packages/i18n/src/locales/en/options/charlie.yml +++ /dev/null @@ -1,51 +0,0 @@ -backPocketHorizontalPlacement: - title: Back pocket horizontal placement - description: Controls the horizontal placement of the back pocket -backPocketVerticalPlacement: - title: Back pocket vertical placement - description: Controls the vertical placement of the back pocket -backPocketWidth: - title: Back pocket width - description: Controls the width of the back pocket -backPocketDepth: - title: Back pocket depth - description: Controls the depth of the back pocket -backPocketFacing: - title: Back pocket facing - description: Controls whether or not to include facing on the back pockets -frontPocketSlantDepth: - title: Front pocket slant depth - description: Controls the depth of the (front) pocket slant -frontPocketSlantWidth: - title: Front pocket slant width - description: Controls the width of the (front) pocket slant -frontPocketSlantRound: - title: Front pocket slant round - description: Controls how far from the end of the slant we start rounding into the outseam -frontPocketSlantBend: - title: Front pocket slant bend - description: Controls the radius by which we round the pocket slant into the outseam -frontPocketWidth: - title: Front pocket width - description: Controls the width of the front pocket bag -frontPocketDepth: - title: Front pocket depth - description: Controls the depth of the front pocket bag -frontPocketFacing: - title: Front pocket facing - description: Controls how far the pocket facing extends into the pocket bag -beltLoops: - title: Belt loops - description: Controls the amount of belt loops -flyCurve: - title: Fly curve - description: Controls the curvature of the fly J-seam -flyLength: - title: Fly length - description: Controls the length of the fly -flyWidth: - title: Fly width - description: Controls how far the J-seam of offset from the fly edge -waistbandCurve: - title: Waistband Curve - description: Controls how curved the waistband is. diff --git a/packages/i18n/src/locales/en/options/cornelius.yml b/packages/i18n/src/locales/en/options/cornelius.yml deleted file mode 100644 index e8996b9a5ef..00000000000 --- a/packages/i18n/src/locales/en/options/cornelius.yml +++ /dev/null @@ -1,25 +0,0 @@ -fullness: - title: Fullness - description: Controls the fullness of the breeches -waistbandBelowWaist: - title: Lower waistband - description: Percentage to move the waistband below the actual waist -waistReduction: - title: Waist reduction - description: Percentage to reduce the waistband -cuffWidth: - title: Cuff width - description: Width of the leg cuff -cuffStyle: - title: Cuff style - description: Style of the leg cuff -bandBelowKnee: - title: Cuff below knee - description: Controls the cuff distance from the knee -kneeToBelow: - title: Cuff length - description: Controls the tightness of the cuff as compared to the knee -ventLength: - title: Vent length - description: Controls the length of the vent between knee and cuff - diff --git a/packages/i18n/src/locales/en/options/diana.yml b/packages/i18n/src/locales/en/options/diana.yml deleted file mode 100644 index e408463abf7..00000000000 --- a/packages/i18n/src/locales/en/options/diana.yml +++ /dev/null @@ -1,7 +0,0 @@ -shoulderSeamLength: - title: Shoulder seam length - description: Controls the length of the shoulder seam -drapeAngle: - title: Drape angle - description: Controls the amount of drape - diff --git a/packages/i18n/src/locales/en/options/florence.yml b/packages/i18n/src/locales/en/options/florence.yml deleted file mode 100644 index 3b67e6d9880..00000000000 --- a/packages/i18n/src/locales/en/options/florence.yml +++ /dev/null @@ -1,11 +0,0 @@ -height: - title: Height - description: Controls the height of the face mask - -length: - title: Length - description: Controls the length of the face mask - -curve: - title: Curve - description: Controls the curvature of the upper edge of the face mask diff --git a/packages/i18n/src/locales/en/options/florent.yml b/packages/i18n/src/locales/en/options/florent.yml deleted file mode 100644 index 1a5f3b6855a..00000000000 --- a/packages/i18n/src/locales/en/options/florent.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -headEase: - title: Head ease - description: The amound of ease around your head diff --git a/packages/i18n/src/locales/en/options/hi.yml b/packages/i18n/src/locales/en/options/hi.yml deleted file mode 100644 index 3269d188e41..00000000000 --- a/packages/i18n/src/locales/en/options/hi.yml +++ /dev/null @@ -1,15 +0,0 @@ -hungry: - title: Hungry - description: Changes the mouth shape to convey Hi is hungry - -nosePointiness: - title: Nose pointiness - description: Controls how pointy Hi's nose is - -aggressive: - title: Aggressive - description: Give Hi pointy teeth, or not - -size: - title: Size - description: Sharks come in all sizes, and so does Hi diff --git a/packages/i18n/src/locales/en/options/holmes.yml b/packages/i18n/src/locales/en/options/holmes.yml deleted file mode 100644 index 2c86c8da1ab..00000000000 --- a/packages/i18n/src/locales/en/options/holmes.yml +++ /dev/null @@ -1,28 +0,0 @@ ---- -headEase: - title: Head ease - description: The amount of ease around your head. -lengthRatio: - title: Length ratio - description: Controls the length of the crown and ear flaps -gores: - title: Number of gores - description: The number of gores used to construct the crown -visorAngle: - title: Visor angle - description: The arc angle used to draft the inner curve of the visor -visorWidth: - title: Visor width - description: Controls the width of the visor -earLength: - title: Ear flap length - description: Controls the length of the ear flaps independently from the crown pieces -earWidth: - title: Ear flap width - description: Controls the width of the ear flaps -buttonhole: - title: Buttonhole guide - description: Adds a buttonhole to the ear flap to help you draft the buttonhole ear flap variant -visorLength: - title: Visor length - description: Controls the length of the visor diff --git a/packages/i18n/src/locales/en/options/hortensia.yml b/packages/i18n/src/locales/en/options/hortensia.yml deleted file mode 100644 index 3cae72a25a2..00000000000 --- a/packages/i18n/src/locales/en/options/hortensia.yml +++ /dev/null @@ -1,15 +0,0 @@ -size: - title: Size - description: Controls the overall size of the handbag - -zipperSize: - title: Zipper size - description: Which size of zipper to use - -strapLength: - title: Strap length - description: Controls the length of the strap - -handleWidth: - title: Handle width - description: Controls the width of the handle diff --git a/packages/i18n/src/locales/en/options/huey.yml b/packages/i18n/src/locales/en/options/huey.yml deleted file mode 100644 index f387f35596a..00000000000 --- a/packages/i18n/src/locales/en/options/huey.yml +++ /dev/null @@ -1,27 +0,0 @@ -pocket: - title: Pocket - description: Whether to include a front pocket or not - -pocketHeight: - title: Pocket height - description: Controls the height of the pocket - -hoodHeight: - title: Hood height - description: Controls the height of the hood - -hoodCutback: - title: Hood cutback - description: Controls how far the hood opening is cut back - -hoodClosure: - title: Hood closure - description: Controls how much of the hood is part of the front closure - -hoodDepth: - title: Hood depth - description: Controls the depth of the hood - -hoodAngle: - title: Hood angle - description: Controls the angle at which the hood is attached diff --git a/packages/i18n/src/locales/en/options/hugo.yml b/packages/i18n/src/locales/en/options/hugo.yml deleted file mode 100644 index 5ba5add792f..00000000000 --- a/packages/i18n/src/locales/en/options/hugo.yml +++ /dev/null @@ -1,3 +0,0 @@ -hipsEase: - title: Hips ease - description: The amount of ease at your hips. diff --git a/packages/i18n/src/locales/en/options/index.js b/packages/i18n/src/locales/en/options/index.js deleted file mode 100644 index 38731b05a6f..00000000000 --- a/packages/i18n/src/locales/en/options/index.js +++ /dev/null @@ -1,127 +0,0 @@ -import florence from './florence.yml' -import brian from './brian.yml' -import bella from './bella.yml' -import breanna from './breanna.yml' -import diana from './diana.yml' -import aaron from './aaron.yml' -import simon from './simon.yml' -import simone from './simone.yml' -import sven from './sven.yml' -import wahid from './wahid.yml' -import bent from './bent.yml' -import bruce from './bruce.yml' -import cathrin from './cathrin.yml' -import holmes from './holmes.yml' -import huey from './huey.yml' -import hugo from './hugo.yml' -import tamiko from './tamiko.yml' -import teagan from './teagan.yml' -import trayvon from './trayvon.yml' -import jaeger from './jaeger.yml' -import carlton from './carlton.yml' -import carlita from './carlita.yml' -import benjamin from './benjamin.yml' -import florent from './florent.yml' -import theo from './theo.yml' -import sandy from './sandy.yml' -import shin from './shin.yml' -import penelope from './penelope.yml' -import waralee from './waralee.yml' -import titan from './titan.yml' -import paco from './paco.yml' -import albert from './albert.yml' -import hortensia from './hortensia.yml' -import cornelius from './cornelius.yml' -import charlie from './charlie.yml' -import ursula from './ursula.yml' -import lunetius from './lunetius.yml' -import tiberius from './tiberius.yml' -import walburga from './walburga.yml' -import bee from './bee.yml' -import hi from 'hi.yml' -import unice from 'unice.yml' -import lucy from 'lucy.yml' -import bob from 'bob.yml' -import noble from 'noble.yml' -import octoplushy from 'octoplushy.yml' -import { options as optionList } from '@freesewing/pattern-info' -import shared from '../../../shared-options.yml' - -let patterns = { - florence, - bella, - brian, - breanna, - diana, - aaron, - simon, - simone, - sven, - wahid, - bent, - bruce, - cathrin, - huey, - hugo, - tamiko, - trayvon, - jaeger, - carlton, - carlita, - benjamin, - florent, - theo, - sandy, - shin, - penelope, - waralee, - holmes, - titan, - paco, - teagan, - albert, - hortensia, - cornelius, - charlie, - ursula, - yuri: false, - lunetius, - tiberius, - walburga, - bee, - hi, - unice, - lucy, - bob, - noble, - octoplushy, -} - -let options = {} -for (let pattern in patterns) { - options[pattern] = {} - if (typeof optionList[pattern] === 'undefined') - throw new Error('pattern ' + pattern + ' has no option list') - for (let option of optionList[pattern]) { - let value = patterns[pattern][option] - if (typeof value === 'object') options[pattern][option] = value - else { - if (typeof value === 'undefined') { - if (shared[pattern]) { - if (shared[pattern].dflt && typeof patterns[shared[pattern].dflt][option] === 'object') { - options[pattern][option] = patterns[shared[pattern].dflt][option] - } else if ( - typeof shared[pattern].other !== 'undefined' && - typeof shared[pattern].other[option] === 'string' - ) { - options[pattern][option] = patterns[shared[pattern].other[option]][option] - } else { - throw new Error(`No option translation found for ${option} in ${pattern}`) - } - } - } - } - } -} - -export default options diff --git a/packages/i18n/src/locales/en/options/jaeger.yml b/packages/i18n/src/locales/en/options/jaeger.yml deleted file mode 100644 index 3b53b417154..00000000000 --- a/packages/i18n/src/locales/en/options/jaeger.yml +++ /dev/null @@ -1,147 +0,0 @@ -centerBackDart: - title: Center back dart - description: Dart at the center back of your neck to accommodate a rounded back - -sleeveVentLength: - title: Sleeve vent length - description: Length of the sleeve vent - -sleeveVentWidth: - title: Sleeve vent width - description: Width of the sleeve vent - -chestShaping: - title: Chest shaping - description: Amount of shaping to accommodate for the chest curve - -frontDartPlacement: - title: Front dart placement - description: Location of the front darts - -frontOverlap: - title: Front overlap - description: How far the fabric extends beyond the closing buttons - -sideFrontPlacement: - title: Side/Front placement - description: The location of the side/front boundary - -chestPocketDepth: - title: Chest pocket depth - description: The depth of the chest pocket - -chestPocketWidth: - title: Chest pocket width - description: The width of the chest pocket - -chestPocketPlacement: - title: Chest pocket placement - description: The location of the chest pocket - -chestPocketAngle: - title: Chest pocket angle - description: The angle under which the chest pocket is placed - -chestPocketWeltSize: - title: Chest pocket welt size - description: The size of the chest pocket welt - -frontPocketPlacement: - title: Front pocket placement - description: Location of the front pocket - -frontPocketWidth: - title: Front pocket width - description: The width of the front pocket - -frontPocketDepth: - title: Front pocket depth - description: The depth of the front pocket - -frontPocketRadius: - title: Front pocket radius - description: The radius by which the front pocket is rounded - -innerPocketPlacement: - title: Inner pocket placement - description: The location of the inner pocket - -innerPocketWidth: - title: Inner pocket width - description: The width of the inner pocket - -innerPocketDepth: - title: Inner pocket depth - description: The depth of the inner pocket - -innerPocketWeltHeight: - title: Inner pocket welt height - description: The height of the inner pocket welt - -pocketFoldover: - title: Pocket fold-over - description: The amount by which the main fabric is folder over into the pocket - -centerFrontHemDrop: - title: Center front hem drop - description: The amount by which the hem is lowered towards the center front - -backVent: - title: Back vent - description: The amount of back vents - -backVentLength: - title: Back vent length - description: The length of the back vent(s) - -buttonLength: - title: Button length - description: The distance over which buttons are spread - -frontCutawayAngle: - title: Front cutaway angle - description: The angle under which the front is cut away towards the hem - -frontCutawayStart: - title: Front cutaway start - description: The location at which the front starts opening up towards the hem - -frontCutawayEnd: - title: Front cutaway end - description: Increasing this will make the front cutaway stay closer to the center front - -collarSpread: - title: Collar spread - description: The collar spread controls how the collar drapes over the shoulders - -lapelStart: - title: Lapel start - description: Location where the center front goes over into the lapels - -lapelReduction: - title: Lapel reduction - description: How much the tip of the lapels turns inwards - -collarHeight: - title: Collar height - description: Height of the collar - -collarNotchDepth: - title: Collar notch depth - description: Depth of the collar notch - -collarNotchAngle: - title: Collar notch angle - description: Angle of the collar notch - -collarNotchReturn: - title: Collar notch return - description: How much the collar returns from the notch, in comparison to the lapel - -rollLineCollarHeight: - title: Roll-line collar height - description: How much the roll-line hugs the neck - -hemRadius: - title: Hem radius - description: The amount by which the hem is rounded diff --git a/packages/i18n/src/locales/en/options/lucy.yml b/packages/i18n/src/locales/en/options/lucy.yml deleted file mode 100644 index 044cb7d390b..00000000000 --- a/packages/i18n/src/locales/en/options/lucy.yml +++ /dev/null @@ -1,12 +0,0 @@ -width: - title: Width - description: Width of the pocket - -length: - title: Length - description: Length (depth) of the pocket - -edge: - title: Taper - description: Controls how much the pocket opening tapers inwards - diff --git a/packages/i18n/src/locales/en/options/lunetius.yml b/packages/i18n/src/locales/en/options/lunetius.yml deleted file mode 100644 index 9593fb50f8c..00000000000 --- a/packages/i18n/src/locales/en/options/lunetius.yml +++ /dev/null @@ -1,17 +0,0 @@ -lengthRatio: - title: Length ratio - description: Controls the length of the garment - -widthRatio: - title: Width ratio - description: Controls the width of the garment - -length: - title: Length - description: Choose from the different length styles - options: - toKnee: On the knee - toBelowKnee: Below the knee - toHips: On the hips - toUpperLeg: On the thigh - toFloor: To the floor diff --git a/packages/i18n/src/locales/en/options/noble.yml b/packages/i18n/src/locales/en/options/noble.yml deleted file mode 100644 index 0bd31c94bb6..00000000000 --- a/packages/i18n/src/locales/en/options/noble.yml +++ /dev/null @@ -1,61 +0,0 @@ -dartPosition: - description: Controls whether to split at the shoulder or armhole - title: Dart position -chestEase: - description: Controls the amount of ease at the chest - title: Chest ease -waistEase: - description: Controls the amount of ease at the waist - title: Waist ease -bustSpanEase: - description: Controls the amount of ease along the bust span - title: Bust span ease -backDartHeight: - description: Back dart height - title: Controls the height of the back dart -waistDartLength: - description: Controls the length of the waist dart - title: Waist dart length -shoulderDartPosition: - description: Controls the position of the shoulder dart - title: Shoulder dart position -upperDartLength: - description: Controls the length of the upper dart - title: Upper dart length -armholeDartPosition: - description: Controls the position of the armhole dart - title: Armhole dart position -armholeDepth: - description: Controls the depth of the armhole - title: Armhole depth -backArmholeSlant: - description: Controls the slant of the armhole at the back - title: Back armhole slant -backArmholeCurvature: - description: Controls how deep the armhole is scooped out at the back - title: Back armhole curvature -frontArmholeCurvature: - title: Front armhole curvature - description: Controls how deep the armhole is scooped out at the front bottom -frontArmholePitchDepth: - description: Controls how deep the armhole cuts into the front - title: Front armhole pitch depth -backArmholePitchDepth: - description: Controls how deep the armhole cuts into the back - title: Back armhole pitch depth -backNeckCutout: - description: Controls how deep the neck is cutout in the back - title: Back neck cutout -backHemSlope: - description: Constrols the slope of the back hem - title: Back hem slope -frontShoulderWidth: - description: Controls how much width is added to the shoulder in the front - title: Front shoulder width -highBustWidth: - description: Controls the width of the high bust - title: High bust width -shoulderToShoulderEase: - description: Controls the amount of ease along the shoulder to shoulder measurement - title: Shoulder to shoulder ease - diff --git a/packages/i18n/src/locales/en/options/octoplushy.yml b/packages/i18n/src/locales/en/options/octoplushy.yml deleted file mode 100644 index 5b54503d752..00000000000 --- a/packages/i18n/src/locales/en/options/octoplushy.yml +++ /dev/null @@ -1,36 +0,0 @@ -size: - title: Size - description: Controls the overall size - -type: - title: Type - description: Allows you to choose one of the variants of this design - -armWidth: - title: Arm width - description: Controls the width of the arms - -armLength: - title: Arm length - description: Controls the length of the arms - -neckWidth: - title: Neck width - description: Determines the width at the neck - -armTaper: - title: Arm tapering - description: Controls the amount by which the arms taper - -bottomTopArmRatio: - title: Bottom/Top arm ratio - description: "FIXME: No idea what this does" - -bottomArmReduction: - title: Bottom arm reduction - description: "FIXME: No idea what this does" - -bottomArmReductionPlushy: - title: Bottom arm reduction (plushy) - description: "FIXME: No idea what this does" - diff --git a/packages/i18n/src/locales/en/options/paco.yml b/packages/i18n/src/locales/en/options/paco.yml deleted file mode 100644 index bf283a081bb..00000000000 --- a/packages/i18n/src/locales/en/options/paco.yml +++ /dev/null @@ -1,15 +0,0 @@ -heelEase: - title: Heel ease - description: The amount of ease at your heel (when stepping into the leg) -frontPockets: - title: Front pockets - description: Whether or not to add front pockets on the side seam -backPockets: - title: Back pockets - description: Whether or not to add welt pockets to the back -elasticatedHem: - title: Elasticated hem - description: Whether or not you want an elasticated hem -ankleElastic: - title: Ankle/Hem elastic width - description: Width of the (optional) elastic at the ankle/hem diff --git a/packages/i18n/src/locales/en/options/penelope.yml b/packages/i18n/src/locales/en/options/penelope.yml deleted file mode 100644 index d8e3730b345..00000000000 --- a/packages/i18n/src/locales/en/options/penelope.yml +++ /dev/null @@ -1,58 +0,0 @@ -backDartDepthFactor: - title: Back dart depth factor - description: How far down does the back dart go from the waistband. This is a factor of the Natural Waist To Seat measurement. - -backVent: - title: Back vent - description: Add a vent in the back of the skirt. - -backVentLength: - title: Back vent length - description: Length of the Back Vent as a percentage of the skirt length. - -dartToSideSeamFactor: - title: Dart to side seam factor - description: Percentage of how much of the hip to waist reduction has to be taken in by the darts versus the side seam. - -frontDartDepthFactor: - title: Front dart depth factor - description: How far down does the front dart go from the waistband. This is a factor of the Natural Waist To Seat measurement. - -hem: - title: Size of the hem - description: The size of the hem. Measurement in absolute values. - -hemBonus: - title: Hem bonus - description: This option will reduce the circumference of the skirt at the hem. Percentage of the Seat measurement. - -lengthBonus: - title: Length bonus - description: This sets the length of the skirt. Percentage of the Natural Waist to Knee measurement. - -nrOfDarts: - title: Number of darts - description: The number of darts used in the pattern. Maximum is 2. This option can be reduced by the pattern if the calculations create darts that are too small. - -seatEase: - title: Seat ease - description: Amount of ease at the seat level. - -waistBand: - title: Waist band - description: Add a waistband to the pattern. - -waistBandWidth: - title: Waist band width - description: The width of the waist band. - -waistEase: - title: Waist ease - description: Amount of ease at the waist level. - -zipperLocation: - title: Zipper location - description: The location of the zipper. - options: - backSeam: At the back seam - sideSeam: At the side seam diff --git a/packages/i18n/src/locales/en/options/sandy.yml b/packages/i18n/src/locales/en/options/sandy.yml deleted file mode 100644 index b0aff069eb5..00000000000 --- a/packages/i18n/src/locales/en/options/sandy.yml +++ /dev/null @@ -1,33 +0,0 @@ ---- -waistbandWidth: - title: Waistband width - description: Controls the width of the waistband. - -waistbandPosition: - title: Waistband position - description: Controls the position of the waistband. - -waistbandShape: - title: Waistband shape - description: Whether you want a straight or shaped waistband. - -circleRatio: - title: Circle ratio - description: The percentage of a circle you want the skirt to be. - -waistbandOverlap: - title: Waistband overlap - description: The amount by which the waistband overlaps. - -gathering: - title: Gathering - description: The percent by which the top of the skirt is longer than the bottom of the waistband. - -seamlessFullCircle: - title: Seamless full circle - description: Enables a seamless full circle skirt. - -hemWidth: - title: Hem width - description: Width of the hem - diff --git a/packages/i18n/src/locales/en/options/shin.yml b/packages/i18n/src/locales/en/options/shin.yml deleted file mode 100644 index 60cce143ad1..00000000000 --- a/packages/i18n/src/locales/en/options/shin.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- -legReduction: - title: Leg reduction - description: Reduces the leg opening to prevent gaping - -elasticWidth: - title: Elastic width - description: Width of the elastic at the waist diff --git a/packages/i18n/src/locales/en/options/simon.yml b/packages/i18n/src/locales/en/options/simon.yml deleted file mode 100644 index 87e1f00de85..00000000000 --- a/packages/i18n/src/locales/en/options/simon.yml +++ /dev/null @@ -1,171 +0,0 @@ -backDarts: - title: Back darts - description: Whether or not to include back darts - options: - auto: Automatic - always: Always - never: Never - -backDartShaping: - title: Back dart shaping - description: The amount of shaping that is done by the back darts - -barrelCuffNarrowButton: - title: Cuff narrow button - description: Whether to include a button to tie the cuffs more narrow. This option is only relevant for barrel cuffs. - -boxPleat: - title: Box pleat - description: Whether to include a box pleat at the back or not - -boxPleatWidth: - title: Box pleat width - description: The total widh of the box pleat - -boxPleatFold: - title: Box pleat fold - description: The amount by with the box pleat folds inwards - -buttonPlacketStyle: - title: Button placket style - description: Style of the button placket. - options: - classic: Classic style - seamless: French style (seamless) - -buttonPlacketWidth: - title: Button placket width - description: Width of the button placket. - -buttonFreeLength: - title: Button free length - description: How much of the bottom of the front closure to keep button-free. - -buttonholePlacketFoldWidth: - title: Buttonhole placket fold width - description: Width of the buttonhole placket fold. - -buttonholePlacketStyle: - title: Buttonhole placket style - description: Style of the buttonhole placket. - options: - classic: Classic style - seamless: French style (seamless) - -buttonholePlacketWidth: - title: Buttonhole placket width - description: Width of the buttonhole placket. - -buttons: - title: Number of buttons - description: The number of buttons on the front closure. - -collarAngle: - title: Collar angle - description: The angle of the collar tips. - -collarBend: - title: Collar bend - description: The bend of the collar. - -collarFlare: - title: Collar flare - description: The flare of the collar tips. - -collarGap: - title: Collar gap - description: The gap between the the two collar ends. - -collarRoll: - title: Collar roll - description: The amount by which the top collar is larger than the undercollar. - -collarStandBend: - title: Collar stand bend - description: The bend of the collar stand. - -collarStandCurve: - title: Collar stand curve - description: The curve of the collar stand. - -collarStandWidth: - title: Collar stand width - description: Width of the collar stand. - -cuffButtonRows: - title: Cuff button rows - description: Whether to draft a single or double row of cuff buttons. This option is only relevant for barrel cuffs. - options: - '1': Single cuff button row - '2': Double cuff button row - -cuffDrape: - title: Cuff drape - description: The amount by which the sleeve is wider than the cuff where the are joined. - -cuffLength: - title: Cuff length - description: The length of the cuffs. - -cuffStyle: - title: Cuff style - description: The style of the cuffs. - options: - roundedBarrelCuff: Rounded barrel cuff - angledBarrelCuff: Angled barrel cuff - straightBarrelCuff: Straight barrel cuff - roundedFrenchCuff: Rounded French cuff - angledFrenchCuff: Angled French cuff - straightFrenchCuff: Straight French cuff - -extraTopButton: - title: Extra top button - description: Whether or not to include an extra top button on the front closure. - -ffsa: - title: Flat-felled seam allowace - description: The amount of seam allowance on flet-felled seams as a proportion of the regular seam allowance - -hemCurve: - title: Hem curve - description: The height of the curve on a curved hem. - -hemStyle: - title: Hem style - description: The style of the shirt hem. - options: - straight: Straight hem - baseball: Baseball hem - slashed: Slashed hem - -roundBack: - title: Round back - description: To fit a round(er) back, this adds length to the center back (at the yoke) that tapers of towards the sides. - -seperateButtonholePlacket: - title: Seperate buttonhole placket - description: Draft a separate buttonhole placket. - -seperateButtonPlacket: - title: Seperate button placket - description: Draft a separate button placket - -sleevePlacketLength: - title: Sleeve placket length - description: The length of the sleeve placket. - -sleevePlacketWidth: - title: Sleeve placket width - description: The width of the sleeve placket. - -splitYoke: - title: Split yoke - description: Whether to draft a split or regular yoke. - -waistEase: - title: Waist ease - description: The amount of ease at your (natural) waist. - -yokeHeight: - title: Yoke height - description: Controls the height of the yoke diff --git a/packages/i18n/src/locales/en/options/simone.yml b/packages/i18n/src/locales/en/options/simone.yml deleted file mode 100644 index 46f20b2b13d..00000000000 --- a/packages/i18n/src/locales/en/options/simone.yml +++ /dev/null @@ -1,27 +0,0 @@ -bustAlignedButtons: - title: Bust-aligned buttons - description: Optional button spacing strategies to ensure a button at the bustline - options: - even: Even spacing - split: Split spacing - disabled: Disabled - -bustDartAngle: - title: Bust dart angle - description: Controls the angle by which the (side) bust dart slopes downward - -bustDartLength: - title: Bust dart length - description: Controls how close the bust dart approaches the bust point - -contour: - title: Contour - description: Controls how sharply the extra room for breasts is removed again below the chest - -frontDarts: - title: Front darts - description: Whether to include front darts or not - -frontDartLength: - title: Front dart length - description: Controls how close the front dart approaches the bust point diff --git a/packages/i18n/src/locales/en/options/sven.yml b/packages/i18n/src/locales/en/options/sven.yml deleted file mode 100644 index bff97a68834..00000000000 --- a/packages/i18n/src/locales/en/options/sven.yml +++ /dev/null @@ -1,15 +0,0 @@ -hipsEase: - title: Hips ease - description: Controls the amount of ease at your hips (the bottom of the sweater) - -ribbing: - title: Ribbing - description: Whether to finish the hem and cuffs with ribbing or not. - -ribbingHeight: - title: Ribbing height - description: The height of the ribbing on cuffs and hem. - -ribbingStretch: - title: Ribbing stretch - description: The amount of negative ease to apply to the ribbing used for cuffs and hem. diff --git a/packages/i18n/src/locales/en/options/tamiko.yml b/packages/i18n/src/locales/en/options/tamiko.yml deleted file mode 100644 index 82ec434067a..00000000000 --- a/packages/i18n/src/locales/en/options/tamiko.yml +++ /dev/null @@ -1,11 +0,0 @@ -flare: - title: Flare - description: The amount by which the garment flares from your chest downwards - -shoulderseamLength: - title: Shoulder seam length - description: The length of the shoulder seam, as a factor of your shoulder to shoulder measurement - -shoulderSlope: - title: Shoulder slope - description: Controls the angle of the shoulder seams diff --git a/packages/i18n/src/locales/en/options/teagan.yml b/packages/i18n/src/locales/en/options/teagan.yml deleted file mode 100644 index acb943ab3a9..00000000000 --- a/packages/i18n/src/locales/en/options/teagan.yml +++ /dev/null @@ -1,18 +0,0 @@ -draftForHighBust: - title: Draft for high bust - description: Draft the pattern for the high bust measurement (if available) rather than the (full) chest. This will result in a more fitted garment for people with breasts. -sleeveEase: - title: Sleeve ease - description: Amount of ease of your sleeves -sleeveLength: - title: Sleeve length - description: Controls the length of your sleeves -necklineBend: - title: Neckline curvature - description: Controls the curvature of the neckline. -necklineDepth: - title: Neckline depth - description: Controls how deep the neck opening plunges down. -necklineWidth: - title: Neckline width - description: Controls the width of the neck opening. diff --git a/packages/i18n/src/locales/en/options/theo.yml b/packages/i18n/src/locales/en/options/theo.yml deleted file mode 100644 index 88b64ee5d1a..00000000000 --- a/packages/i18n/src/locales/en/options/theo.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- -wedge: - title: Wedge - description: Controls the length of the cross seam - -legWidth: - title: Leg width - description: Controls the width of the legs diff --git a/packages/i18n/src/locales/en/options/tiberius.yml b/packages/i18n/src/locales/en/options/tiberius.yml deleted file mode 100644 index 09aef001c78..00000000000 --- a/packages/i18n/src/locales/en/options/tiberius.yml +++ /dev/null @@ -1,47 +0,0 @@ -headRatio: - title: Head ratio - description: Controls the size of the head opening - -armholeDrop: - title: Armhole drop - description: Controls the depth of the armhole - -lengthBonus: - title: Length bonus - description: Allows variation of the length of the garment - -widthBonus: - title: Width bonus - description: Allows variation of the width of the garment - -clavi: - title: Clavi - description: Whether or not to include guides for clavi - -clavusLocation: - title: Clavus location - description: Controls the location of the clavi - -clavusWidth: - title: Clavus width - description: Controls the width of the clavi - -length: - title: Length - description: Controls the length of the garment - options: - toKnee: On the knee - toMidLeg: On the thigh - toFloor: To the floor - -width: - title: Width - description: Controls the width of the garment - options: - toElbow: To the elbow - toShoulder: To the shoulder - toMidArm: To the upper arm - -forceWidth: - title: Force width - description: Apply width settings regardless of constraints diff --git a/packages/i18n/src/locales/en/options/titan.yml b/packages/i18n/src/locales/en/options/titan.yml deleted file mode 100644 index 4d46855c296..00000000000 --- a/packages/i18n/src/locales/en/options/titan.yml +++ /dev/null @@ -1,45 +0,0 @@ -kneeEase: - title: Knee ease - description: Controls the amout of ease at the knee -waistHeight: - title: Waist height - description: Controls the height of the waist, 100% = waist height, 0% = hip height -lengthBonus: - title: Length bonus - description: Controls the length of the trousers -crotchDrop: - title: Crotch drop - description: Lowers the crotch for a more relaxed fit -fitKnee: - title: Fit the knee - description: Fits the legs from based on the knee circumference, rather than seat circumference -legBalance: - title: Leg balance - description: Controls the ratio between front and back panel of the leg -crossSeamCurveStart: - title: Start of the cross seam curve - description: Controls how far into the cross seam we start to curve -crossSeamCurveBend: - title: Cross seam bend - description: Controls the curvature of the cross seam -crossSeamCurveAngle: - title: Cross seam angle - description: Controls the angle of the cross seam -crotchSeamCurveStart: - title: Start of the crotch seam curve - description: Controls how far into the crotch seam we start to curve -crotchSeamCurveBend: - title: Crotch seam bend - description: Controls the curvature of the crotch seam -crotchSeamCurveAngle: - title: Crotch seam angle - description: Controls the angle of the crotch seam -waistBalance: - title: Waist balance - description: Controls the horizontal position of the waist relative to the seat -waistbandWidth: - title: Waistband width - description: The width of the waistband -grainlinePosition: - title: Grainline position - description: Controls the horizontal position of the leg relative to the seat diff --git a/packages/i18n/src/locales/en/options/trayvon.yml b/packages/i18n/src/locales/en/options/trayvon.yml deleted file mode 100644 index c8a3701060c..00000000000 --- a/packages/i18n/src/locales/en/options/trayvon.yml +++ /dev/null @@ -1,7 +0,0 @@ -tipWidth: - title: Tip width - description: The width of your tie at the tip - -knotWidth: - title: Knot width - description: The width of your tie at the knot diff --git a/packages/i18n/src/locales/en/options/unice.yml b/packages/i18n/src/locales/en/options/unice.yml deleted file mode 100644 index f5c26142d41..00000000000 --- a/packages/i18n/src/locales/en/options/unice.yml +++ /dev/null @@ -1,16 +0,0 @@ -fabricStretchX: - title: Fabric stretch (horizontal) - description: Adjust this for more or less stretchy fabrics - -fabricStretchY: - title: Fabric stretch (vertical) - description: Adjust this for more or less stretchy fabrics - -adjustStretch: - title: Adjust stretch - description: This option allows you to put in the maximum stretch that the fabric will allow in both horizontal and vertical directions; When disabled, the stretch values are used as-is - -useCrossSeam: - title: Use crossseam - description: When enabled, the total height of the pattern pieces combined will match the cross seam length minus the front and back rise. When disabled, the total height depends on the gusset length option. - diff --git a/packages/i18n/src/locales/en/options/ursula.yml b/packages/i18n/src/locales/en/options/ursula.yml deleted file mode 100644 index af25f9ec551..00000000000 --- a/packages/i18n/src/locales/en/options/ursula.yml +++ /dev/null @@ -1,42 +0,0 @@ -fabricStretch: - title: Fabric stretch - description: Adjust this for more or less stretchy fabrics - -gussetWidth: - title: Gusset width - description: Controls the width of the gusset - -gussetLength: - title: Gusset length - description: Controls the length of the gusset - -elasticStretch: - title: Elastic stretch - description: Adjust this for more or less stretchy elastic - -rise: - title: Rise - description: Controls the height of the waist - -legOpening: - title: Leg opening - description: Controls how high the leg is cut out - -frontDip: - title: Front waist dip - description: Controls how much the front waist curves (revealing more or less skin) - -backDip: - title: Back waist dip - description: Controls how much the back waist curves (revealing more or less skin) - -taperToGusset: - title: Front exposure - description: Controls the amount of exposed skin on the front - -backExposure: - title: Back exposure - description: Controls the amount of exposed skin on the back - - - diff --git a/packages/i18n/src/locales/en/options/wahid.yml b/packages/i18n/src/locales/en/options/wahid.yml deleted file mode 100644 index 15fb31eebfd..00000000000 --- a/packages/i18n/src/locales/en/options/wahid.yml +++ /dev/null @@ -1,55 +0,0 @@ -backScyeDart: - title: Back scye dart - description: The amount to take out in a dart at the back of the armhole. - -frontScyeDart: - title: Front scye dart - description: The amount to take out in a dart at the front of the armhole. - -pocketLocation: - title: Pocket location - description: Determines the placement of the pocket - -pocketWidth: - title: Pocket width - description: Determines the width of the pocket - -weltHeight: - title: Welt height - description: Determines the height of the welt - -necklineDrop: - title: Neckline drop - description: Determines how low the neckline drops at the front - -frontStyle: - title: Neck opening style - description: Style of the neck opening - -hemStyle: - title: Hem style - description: Style of the front hem - -hemRadius: - title: Hem radius - description: Radius by which the hem is rounded - -backInset: - title: Back inset - description: How much the back of the armhole is cut inwards - -frontInset: - title: Front inset - description: How much the front of the armhole is cut inwards - -shoulderInset: - title: Shoulder inset - description: How much the shoulder seam is cut inwards at the shoulder - -neckInset: - title: Neck inset - description: How much the shoulder seam is cut inwards at the neck - -pocketAngle: - title: Pocket angle - description: Angle of the pocket slant diff --git a/packages/i18n/src/locales/en/options/walburga.yml b/packages/i18n/src/locales/en/options/walburga.yml deleted file mode 100644 index b74c292d7f2..00000000000 --- a/packages/i18n/src/locales/en/options/walburga.yml +++ /dev/null @@ -1,27 +0,0 @@ -headRatio: - title: Head ratio - description: Controls the size of the head opening - -lengthBonus: - title: Length bonus - description: Allows variation of the length of the garment - -widthBonus: - title: Width bonus - description: Allows variation of the width of the garment - -length: - title: Length - description: Controls the length of the garment - options: - toKnee: On the knee - toMidLeg: On the thigh - toFloor: To the floor - -neckoRatio: - title: Neck opening shape - description: controls the shape of the neck opening - -neckline: - title: Neckline - description: Controls whether or not to draft a neck opening diff --git a/packages/i18n/src/locales/en/options/waralee.yml b/packages/i18n/src/locales/en/options/waralee.yml deleted file mode 100644 index 35c91f1bd4b..00000000000 --- a/packages/i18n/src/locales/en/options/waralee.yml +++ /dev/null @@ -1,56 +0,0 @@ -backPocket: - title: Back pocket - description: Whether to include a back pocket or not - -frontPocket: - title: Front pocket - description: Whether to include a front pocket or not - -hemWidth: - title: Hem size - description: Size of the hem at the bottom of the pants - -waistbandWidth: - title: Waist Band - description: Size of the waist band - -waistRaise: - title: Waist Raise - description: How much to raise the waist from the seat depth measurement. This influences the depth of the crotch cut-out. - -crotchBack: - title: Crotch Back - description: The percentage of the seat circumference that the back crotch needs to occupy. This creates more or less space between the side seam and the back. - -crotchFront: - title: Crotch Front - description: The percentage of the seat circumference that the front crotch needs to occupy. This creates more or less space between the side seam and the front. - -crotchFactorBackHor: - title: Back Crotch Factor Horizontal - description: Used to move the curve of the crotch in the back horizontally - -crotchFactorBackVer: - title: Back Crotch Factor Vertical - description: Used to move the curve of the crotch in the back vertically - -crotchFactorFrontHor: - title: Front Crotch Factor Horizontal - description: Used to move the curve of the crotch in the front horizontally - -crotchFactorFrontVer: - title: Front Crotch Factor Vertical - description: Used to move the curve of the crotch in the front vertically - -waistOverlap: - title: Waist Overlap - description: This dicates how much you want the leg flaps to overlap at the waist. A setting of 0 would have them meet at the side seam, and a setting of 100 makes them meet at the front/back. - -legShortening: - title: Leg Shortening - description: This dictates how long the pants will be. It is a factor of the inseam measurement. The larger the value, the more that will be taken off the length. - -backRaise: - title: Back Raise - description: This setting raises the waist in the back. Our waist does not sit horizontally, but is angled up at the back. This seting allows you to raise this in the back if you need it for a good fit. - diff --git a/packages/i18n/src/locales/en/parts.yaml b/packages/i18n/src/locales/en/parts.yaml deleted file mode 100644 index fbe657504ab..00000000000 --- a/packages/i18n/src/locales/en/parts.yaml +++ /dev/null @@ -1,57 +0,0 @@ -back: Back -backBase: Back base -backPocketWelt: Back pocket welt -base: Base -bentBack: Bent back -bentBase: Bent base -bentFront: Bent front -bentSleeve: Bent sleeve -bentTopSleeve: Bent top sleeve -bentUnderSleeve: Bent under sleeve -buttonholePlacket: Buttonhole placket -buttonPlacket: Button placket -collar: Collar -collarStand: Collar stand -cuff: Cuff -fabricTail: Fabric tail -fabricTip: Fabric tip -frontBase: Front base -frontFacing: Front facing -front: Front -frontLeft: Front left -frontLining: Front lining -frontRight: Front right -gusset: Gusset -hoodCenter: Hood center -hood: Hood -hoodSide: Hood side -inset: Inset -interfacingTail: Interfacing tail -interfacingTip: Interfacing tip -liningTail: Lining tail -liningTip: Lining tip -loop: Loop -panel1: Panel 1 -panel2: Panel 2 -panel3: Panel 3 -panel4: Panel 4 -panel5: Panel 5 -panel6: Panel 6 -panels: Panels -pocketBag: Pocket bag -pocketFacing: Pocket facing -pocketInterfacing: Pocket interfacing -pocket: Pocket -pocketWelt: Pocket welt -side: Side -sleeveBase: Sleeve base -sleevecap: Sleevecap -sleevePlacketOverlap: Sleeve placket overlap -sleevePlacketUnderlap: Sleeve placket underlap -sleeve: Sleeve -topSleeve: Topsleeve -top: Top -underCollar: Under collar -underSleeve: Undersleeve -waistband: Waistband -yoke: Yoke diff --git a/packages/i18n/src/locales/en/plugin/index.js b/packages/i18n/src/locales/en/plugin/index.js deleted file mode 100644 index c96001efcd6..00000000000 --- a/packages/i18n/src/locales/en/plugin/index.js +++ /dev/null @@ -1,35 +0,0 @@ -import brian from './patterns/brian.yaml' -import aaron from './patterns/aaron.yaml' -import bruce from './patterns/bruce.yaml' -import hugo from './patterns/hugo.yaml' -import simon from './patterns/simon.yaml' -import teagan from './patterns/teagan.yaml' -import cfp from './patterns/cfp.yaml' -import cutonfold from './plugins/cutonfold.yaml' -import grainline from './plugins/grainline.yaml' -import scalebox from './plugins/scalebox.yaml' -import title from './plugins/title.yaml' -import cutlist from './plugins/cutlist/yaml' - -const files = { - brian, - aaron, - bruce, - hugo, - simon, - teagan, - cfp, - cutonfold, - grainline, - scalebox, - title, - cutlist, -} - -const messages = {} - -for (const file in files) { - for (const [key, val] of Object.entries(files[file])) messages[key] = val -} - -export default messages diff --git a/packages/i18n/src/locales/en/plugin/patterns/aaron.yaml b/packages/i18n/src/locales/en/plugin/patterns/aaron.yaml deleted file mode 100644 index da8e07b0d80..00000000000 --- a/packages/i18n/src/locales/en/plugin/patterns/aaron.yaml +++ /dev/null @@ -1,4 +0,0 @@ -cutOneStripToFinishTheNeckOpening: Cut one strip to finish the neck opening -cutTwoStripsToFinishTheArmholes: Cut two strips to finish the armholes -length: Length -width: Width diff --git a/packages/i18n/src/locales/en/plugin/patterns/brian.yaml b/packages/i18n/src/locales/en/plugin/patterns/brian.yaml deleted file mode 100644 index 126b02c8e0a..00000000000 --- a/packages/i18n/src/locales/en/plugin/patterns/brian.yaml +++ /dev/null @@ -1,3 +0,0 @@ -back: Back -front: Front -sleeve: Sleeve diff --git a/packages/i18n/src/locales/en/plugin/patterns/bruce.yaml b/packages/i18n/src/locales/en/plugin/patterns/bruce.yaml deleted file mode 100644 index a72110ed48f..00000000000 --- a/packages/i18n/src/locales/en/plugin/patterns/bruce.yaml +++ /dev/null @@ -1,2 +0,0 @@ -inset: Inset -side: Side diff --git a/packages/i18n/src/locales/en/plugin/patterns/cfp.yaml b/packages/i18n/src/locales/en/plugin/patterns/cfp.yaml deleted file mode 100644 index b48816ef16a..00000000000 --- a/packages/i18n/src/locales/en/plugin/patterns/cfp.yaml +++ /dev/null @@ -1 +0,0 @@ -hello: Hello diff --git a/packages/i18n/src/locales/en/plugin/patterns/cornelius.yaml b/packages/i18n/src/locales/en/plugin/patterns/cornelius.yaml deleted file mode 100644 index b2de2c7738a..00000000000 --- a/packages/i18n/src/locales/en/plugin/patterns/cornelius.yaml +++ /dev/null @@ -1,2 +0,0 @@ -Vent: Vent -PocketFacing: Pocket facing diff --git a/packages/i18n/src/locales/en/plugin/patterns/hortensia.yaml b/packages/i18n/src/locales/en/plugin/patterns/hortensia.yaml deleted file mode 100644 index 400cdbda296..00000000000 --- a/packages/i18n/src/locales/en/plugin/patterns/hortensia.yaml +++ /dev/null @@ -1,9 +0,0 @@ -SidePanel: Side Panel -FrontBackPanel: Front and Back Panel -BottomPanel: Bottom Panel -ZipperPanel: Zipper Panel -Strap: Handle -strapLength: Length of the Handles -handleWidth: Width of the handles -zipperSize: Standard zipper size -SidePanelReinforcement: Side Reinforcement Panel diff --git a/packages/i18n/src/locales/en/plugin/patterns/hugo.yaml b/packages/i18n/src/locales/en/plugin/patterns/hugo.yaml deleted file mode 100644 index 63e1c72b181..00000000000 --- a/packages/i18n/src/locales/en/plugin/patterns/hugo.yaml +++ /dev/null @@ -1,6 +0,0 @@ -cuff: Cuff -hoodCenter: Hood center -hoodSide: Hood side -pocketFacing: Pocket facing -pocket: Pocket -waistband: Waistband diff --git a/packages/i18n/src/locales/en/plugin/patterns/simon.yaml b/packages/i18n/src/locales/en/plugin/patterns/simon.yaml deleted file mode 100644 index 2681658f9e2..00000000000 --- a/packages/i18n/src/locales/en/plugin/patterns/simon.yaml +++ /dev/null @@ -1,12 +0,0 @@ -buttonholePlacket: Buttonhole placket -buttonPlacket: Button placket -collarAndUndercollar: Collar and Undercollar -collarStand: Collar stand -cutUndercollarSlightlySmaller: Cut undercollar slightly smaller -frontLeft: Front left -frontRight: Front right -sideOfTheCollarStand: Side of the collar stand -sleevePlacketOverlap: Sleeve placket overlap -sleevePlacketUnderlap: Sleeve placket underlap -yoke: Yoke -matchHere: Match fabric along this line diff --git a/packages/i18n/src/locales/en/plugin/patterns/teagan.yaml b/packages/i18n/src/locales/en/plugin/patterns/teagan.yaml deleted file mode 100644 index 8d3516f08cd..00000000000 --- a/packages/i18n/src/locales/en/plugin/patterns/teagan.yaml +++ /dev/null @@ -1 +0,0 @@ -fullLengthFromHps: Full length (from HPS) diff --git a/packages/i18n/src/locales/en/plugin/patterns/ursula.yaml b/packages/i18n/src/locales/en/plugin/patterns/ursula.yaml deleted file mode 100644 index 7ca4ba47f4d..00000000000 --- a/packages/i18n/src/locales/en/plugin/patterns/ursula.yaml +++ /dev/null @@ -1,2 +0,0 @@ -cutTwoPiecesOfElasticToFinishTheLegOpenings: Cut two pieces of elastic to finish the leg openings -cutOnePieceOfElasticToFinishTheWaistBand: Cut one piece of elastic to finish the waist band diff --git a/packages/i18n/src/locales/en/plugin/plugins/cutonfold.yaml b/packages/i18n/src/locales/en/plugin/plugins/cutonfold.yaml deleted file mode 100644 index 7812f04505d..00000000000 --- a/packages/i18n/src/locales/en/plugin/plugins/cutonfold.yaml +++ /dev/null @@ -1,2 +0,0 @@ -cutOnFoldAndGrainline: Cut on fold / Grainline -cutOnFold: Cut on fold diff --git a/packages/i18n/src/locales/en/plugin/plugins/grainline.yaml b/packages/i18n/src/locales/en/plugin/plugins/grainline.yaml deleted file mode 100644 index 4c1647fa9b5..00000000000 --- a/packages/i18n/src/locales/en/plugin/plugins/grainline.yaml +++ /dev/null @@ -1 +0,0 @@ -grainline: Grainline diff --git a/packages/i18n/src/locales/en/plugin/plugins/scalebox.yaml b/packages/i18n/src/locales/en/plugin/plugins/scalebox.yaml deleted file mode 100644 index ea3dbf6e039..00000000000 --- a/packages/i18n/src/locales/en/plugin/plugins/scalebox.yaml +++ /dev/null @@ -1,3 +0,0 @@ -theBlackOutsideOfThisBoxShouldMeasure: The outside of this box should measure -theWhiteInsideOfThisBoxShouldMeasure: The inside of this box should measure -supportFreesewingBecomeAPatron: Support FreeSewing, become a Patron diff --git a/packages/i18n/src/locales/en/plugin/plugins/title.yaml b/packages/i18n/src/locales/en/plugin/plugins/title.yaml deleted file mode 100644 index 7a7d249759f..00000000000 --- a/packages/i18n/src/locales/en/plugin/plugins/title.yaml +++ /dev/null @@ -1,2 +0,0 @@ -cut: Cut -onFold: On the fold diff --git a/packages/i18n/src/locales/en/settings.yml b/packages/i18n/src/locales/en/settings.yml deleted file mode 100644 index 27c65e4163a..00000000000 --- a/packages/i18n/src/locales/en/settings.yml +++ /dev/null @@ -1,56 +0,0 @@ -advanced: - title: Expert mode - description: Controls whether or not to display advanced settings and pattern options - -paperless: - title: Paperless - description: Drafts a pattern with all dimensions included so you can transfer it on fabric or another medium without the need to print - -sabool: - title: Include seam allowance - description: Controls whether or not to include seam allowance in your pattern - -sa: - title: Seam allowance size - description: Controls the amount of seam allowance included in your pattern - -locale: - title: Language - description: Determines the language used on your pattern - -only: - title: Contents - description: Allows you to control which pattern parts will be included in your pattern - -units: - title: Units - description: Controls the units used on your pattern - -margin: - title: Margin - description: Controls the margin around pattern parts - -complete: - title: Detail - description: Controls how detailed the pattern is; Either a complete pattern with all details, or a basic outline of the pattern parts - -layout: - title: Layout - description: Controls how the individual pattern parts are placed on your pattern - -debug: - title: Debug - description: Enable debug to gain additional info about how your pattern was created - -scale: - title: Scale - description: Controls the overall line width, font size, and other elements that do not scale with the pattern's measurements - -renderer: - title: Render engine - description: Controls how the pattern is rendered (drawn) on the screen - -xray: - title: X-ray - description: Look under the hood with FreeSewing's X-ray mode - diff --git a/packages/i18n/src/locales/en/susi.yaml b/packages/i18n/src/locales/en/susi.yaml deleted file mode 100644 index 6ea2f107660..00000000000 --- a/packages/i18n/src/locales/en/susi.yaml +++ /dev/null @@ -1,16 +0,0 @@ -joinFreeSewing: Join FreeSewing -toReceiveSignupLink: To receive a signup link, enter your email address -emailAddress: Email address -pleaseProvideValidEmail: Please provide a valid email address -emailSignupLink: Email me a signup link -alreadyHaveAnAccount: Already have an account? -dontHaveAnAccount: Don't have an account yet? -signIn: Sign in -signInHere: Sign in here -signUpHere: Sign up here -emailUsernameId: Email address, username, or user ID -welcomeName: 'Welcome { name }' -password: Password -processing: Processing -emailSent: Email sent -somethingWentWrong: Something went wrong diff --git a/packages/i18n/src/locales/en/welcome.yaml b/packages/i18n/src/locales/en/welcome.yaml deleted file mode 100644 index 8f8f32ebe80..00000000000 --- a/packages/i18n/src/locales/en/welcome.yaml +++ /dev/null @@ -1,9 +0,0 @@ -units: Select the units you want to use -username: Pick a username -avatar: Add a profile picture -bio: Tell us a little bit about yourself -social: Let us know where we can follow you -newsletter: Give us your newsletter preference -letUsSetupYourAccount: Let us set up your account. -walkYouThrough: "We'll walk you through the following steps:" -someOptional: While all these steps are optional, we recommend you go through them to get the most out of FreeSewing. diff --git a/packages/i18n/src/locales/es/account.yaml b/packages/i18n/src/locales/es/account.yaml deleted file mode 100644 index 909ba0522bc..00000000000 --- a/packages/i18n/src/locales/es/account.yaml +++ /dev/null @@ -1,60 +0,0 @@ ---- -accountRemoved: Cuenta eliminada -accountRestricted: Cuenta restringida -avatar: Avatar -avatarInfo: Tu avatar o foto de perfil se mostrarán en tu página de perfil. -avatarTitle: Establece tu foto de perfil -bio: Bio -bioInfo: Aquí es donde puede contarle a otros usuarios un poco sobre usted. Este campo admite MarkDown, por lo que también puede incluir enlaces. Si tienes un blog, aquí es donde te vinculas para que otros puedan descubrirlo. -bioTitle: Escribe una breve biografía -currentPassword: Contraseña actual -email: Dirección de correo electrónico -emailInfo: La dirección de correo electrónico vinculada a su cuenta es importante, ya que se utilizará para recuperar el acceso a su cuenta si olvida su contraseña. Debido a esto, cambiar su dirección de correo electrónico requiere confirmación. -emailTitle: Ingrese la dirección de correo electrónico que desea vincular a esta cuenta -exportYourData: Exporta tus datos -exportYourDataInfo: La Protección de datos general (GDPR) de la UE garantiza su así llamado derecho a la portabilidad de datos. -exportYourDataTitle: Haga clic abajo para descargar sus datos personales. -github: Github -githubInfo: Si proporciona su nombre de usuario de GitHub, su página de perfil contendrá un enlace a su cuenta de Github, de modo que los visitantes puedan descubrir sus contribuciones de código, protagonizarlo o seguirlo. -githubTitle: Rellene su nombre de usuario Github -instagramInfo: Si proporciona su nombre de usuario de Instagram, su página de perfil contendrá un enlace a su cuenta de Instagram, para que los visitantes puedan descubrir sus imágenes y seguirlo. -instagram: Instagram -instagramTitle: Rellene su nombre de usuario Instagram -languageInfo: Esta opción de idioma determina en qué idioma recibirá los correos electrónicos de freesewing. No determina el idioma del sitio web, que se puede elegir en cada página -language: Idioma -languageTitle: Seleccione el idioma de su elección -newPassword: Nueva contraseña -newsletter: Boletín -newsletterTitle: '¿Le gustaría recibir el boletín de noticias FreeSewing?' -newsletterInfo: Una vez cada 3 meses, enviamos nuestro boletín de noticias con contenido sano y honesto. Sin seguimiento, sin anuncios, sin sentido. -passwordInfo: Cambiar tu contraseña requiere tu contraseña actual. Rellene eso, luego complete su nueva contraseña también. -password: Contraseña -passwordTitle: Ingrese su contraseña actual y su nueva contraseña -patronInfo: Los patrocinadores apoyan a Freesewing financieramente. Son partidarios leales que aseguran un futuro sostenible para freesewing.org, nuestro código, nuestros patrones y nuestra comunidad. -patron: Mecenas -removeYourAccountInfo: Esto eliminará su cuenta, sus borradores, sus modelos y todos los datos que tenemos almacenados para usted. No hay vuelta atrás, así que proceda con precaución. -removeYourAccount: Elimina tu cuenta -removeYourAccountWarning: Esto eliminará su cuenta, sus borradores, sus modelos y todos los datos que hemos almacenado para usted. No hay vuelta atrás de esto. -resetPasswordInfo: Ingrese su nueva contraseña. -resetPassword: Restablecer contraseña -resetPasswordTitle: Ingrese una nueva contraseña -restrictProcessingOfYourDataInfo: 'La Protección de datos general (GDPR) de la UE garantiza su llamado derecho a restringir el procesamiento : el derecho a detener el procesamiento de sus datos.' -restrictProcessingOfYourData: Restringir el procesamiento de sus datos -restrictProcessingWarning: Si bien no se eliminarán los datos, esto lo desconectará y congelará su cuenta. Además, puede interesarle su propio negocio, pero deberá comunicarse con nosotros cuando desee restaurar el acceso a su cuenta. -reviewYourConsent: Revisa tu consentimiento -socialInfo: Si proporciona su nombre de usuario de GitHub, Twitter o Instagram, su página de perfil contendrá enlaces a sus cuentas en estos sitios. Esto permite que los usuarios libres lo sigan allí.
No estamos contactando a ninguno de estos sitios en su nombre. Esto es solo para que las personas puedan conectar los puntos y saber que, por ejemplo, el usuario @joost en freesewing es la misma persona que el usuario @j__st en twitter. -social: Social -socialTitle: Deja que la gente te siga a otra parte -twitterInfo: Si proporciona su nombre de usuario de Twitter, su página de perfil contendrá un enlace a su cuenta de Twitter, para que los visitantes puedan descubrir sus tweets y seguirlo. -twitterTitle: Rellene su nombre de usuario Twitter -twitter: Twitter -unitsInfo: Freesewing admite tanto el sistema métrico como las medidas imperiales. -unitsTitle: Seleccione el sistema de unidad con el que esté más familiarizado -units: Unidades -usernameInfo: Actualmente tienes un nombre de usuario generado aleatoriamente. Eso no es muy personal, por lo que puedes cambiar tu nombre de usuario a algo más para ti. Me gusta tu nombre, o reinadepedos o lo que sea. -usernameTitle: Por favor, elija su nombre de usuario -username: Nombre de usuario -accountIsInactive: Tu cuenta está inactiva -accountNeedsActivation: Antes de poder iniciar sesión, necesitas activar tu cuenta. Por favor, revisa tu bandeja de entrada para ver el correo electrónico de registro y haz clic en el enlace en él. -reloadAccount: Recargar cuenta -reloadAccountDescription: Esto recargará los datos de su cuenta desde el backend. Tiene el mismo efecto que cerrar sesión, y luego iniciar sesión de nuevo. diff --git a/packages/i18n/src/locales/es/app.yaml b/packages/i18n/src/locales/es/app.yaml deleted file mode 100644 index 8e9bb32b424..00000000000 --- a/packages/i18n/src/locales/es/app.yaml +++ /dev/null @@ -1,348 +0,0 @@ ---- -100PercentCommunity: 100% comunidad -100PercentFree: 100% gratis -100PercentOpenSource: 100% código abierto -aboutFreesewing: Acerca de Freesewing -accessoryPatterns: Patrones de accesorios -account: Cuenta -accountCreated: Cuenta creada -actions: Acciones -allDocumentation: Toda la documentación -andThatIsAwesome: Y eso es genial -applyThisLayout: Aplicar este diseño -areYouSureYouWantToContinue: '¿Seguro que quieres continuar?' -askForHelp: Pide ayuda -automatic: Automático -averagePeopleDoNotExist: "La gente promedio no existe" -awesome: Genial -back: Atrás -becauseThatWouldBeReallyHelpful: Porque eso sería realmente útil. -becomeAPatron: Conviértete en un mecenas -blockPatterns: Patrones base o básicos -blog: Blog -browseBlogposts: Hojea las publicaciones del blog -browsePatterns: Hojea los patrones -browseShowcases: Navegar por las escaparates -butThatCouldChange: Pero eso podría cambiar -cancel: Cancelar -changePerson: Cambiar persona -changePattern: Cambiar patrón -chatOnDiscord: Chatear en Discord -checkInboxClickLinkInConfirmationEmail: Ahora revise su bandeja de entrada y haga clic en el enlace en el correo electrónico de confirmación que le hemos enviado. -chest: Pecho -chestInfo: Los senos requieren medidas adicionales. Si esta persona no tiene senos, se ocultarán las medidas irrelevantes al configurarlos. Esto no tiene ningún impacto en cómo se generan los patrones. -chooseASize: Elige un tamaño -chooseAPerson: Elige una persona -chooseADesign: Elige un diseño -chooseAPattern: Elige un patrón -chooseYourOptions: Elige tus opciones -close: Cerrar -community: Comunidad -configureLayout: Configurar diseño -configureYourDraft: Configurar su boceto -contactUs: Contacta con nosotros -contentLocaleFallback: Es por eso que te mostramos la versión en inglés. -contents: Contenido -continue: Continuar -copiedToClipboard: Copiado al portapapeles -copy: Dupdo -couldYouTranslateThis: '¿Podrías traducir esto?' -countModelsLackingForPattern: '{count} de tus personas carecen de las medidas necesarias para esbozar el patrón {pattern}' -created: Creado -custom: Personalizado -customSeamAllowance: Margen de costura personalizada -lightMode: Modo claro -data: Datos -darkMode: Modo oscuro -default: Defecto -demo: Demostración -designOptions: Opciones de diseño -designs: Diseños -docs: Documentación -docsFooterMsg: La documentación nunca se termina. Ojalá pudiéramos responder a todas sus preguntas, pero si ese no es el caso, hay ayuda disponible. -docsNotFoundMsg: No pudimos encontrar esta documentación, lo que generalmente significa que aún no se ha escrito. -docsNotFoundTitle: Esta documentación falta -documentationForDevelopers: Documentación para desarrolladores -documentationForEditors: Documentación para editores -documentationForTranslators: Documentación para traductores -documentationOverview: Documentation general -dolls: Dolls -download: Descargar -draft: Boceto -draftPattern: 'Trazar {pattern} ' -testPattern: 'Prueba {pattern}' -draftPatternForModel: 'Trazar {pattern} para {model} ' -drafts: Bocetos -draftSettings: Ajustes del boceto -dragAndDropImageHere: Arrastra y suelta una imagen aquí, o selecciona una manualmente con el botón de abajo -emailAddress: Dirección de correo electrónico -emailWorksToo: "Si no conoces tu nombre de usuario, tu dirección de correo electrónico también funcionará" -enterEmailPickPassword: Introduce tu dirección de email y elige una contraseña -export: Exportar -exportTiledPDF: Exportar PDF paginado -faq: Preguntas frecuentes -fieldRemoved: '{field} eliminado' -fieldSaved: '{field} guardado' -filterByPattern: Filtrar por patrón -filterPatterns: Filtrar los patrones -forgotLoginInstructions: "Entra tu nombre de usuario o correo electrónico debajo y pulsa el botón de Restablecer contraseña" -freesewing: Freesewing -freesewingOnGithub: Freesewing en GitHub -garmentPatterns: Patrones de prendas -giants: Giants -github: GitHub -goAheadWeWillWait: Adelante, esperaremos. -goodJob: Buen trabajo -goodToSeeYouAgain: Bueno verte de nuevo {user} -handle: Referencia -helpUsTranslate: Ayúdanos a traducir -home: Página principal -howCanWeHelpYou: '¿Cómo podemos ayudarte?' -howToTakeMeasurements: Cómo tomar medidas -i18n: Internacionalización -imperialUnits: Unidades imperiales (pulgadas) -instagram: Instagram -invalidTldMessage: '.{tld} no es un TLD válido' -joinTheChatMsg: Tenemos una comunidad en Discord con gente amistosa a la que puedes chatear. -justAMoment: Un momento -layout: Diseño -logIn: Iniciar sesión -loginWithProvider: 'Iniciar sesión con {provider}' -logOut: cerrar sesión -manual: A mano -markdownHelp: Markdown ayuda -measurements: Medidas -menu: Menú -metadata: Metadatos -metricUnits: Unidades métricas (cm) -person: Persona -people: Personas -nameInfo: Un nombre ayuda a mantener las cosas separadas. Puedes elegir el nombre que quieras. -name: Nombre -addThing: Añadir {thing} -newThing: Nuevo {thing} -newPatternForModel: 'Nuevo {pattern} para {model}' -noChanges: No hay cambios -no: 'No' #Keep in quotes or it will evaluate to false -noPasswordPolicy: No aplicamos una política de contraseña -noSeamAllowance: Sin margen de costura -notAllOfThisContentIsAvailableInLanguage: No todo este contenido está disponible en español. -notesInfo: Estas son tus notas. Puedes escribir lo que quieras aquí. -notes: Notas -ohNo: '¡Oh no!' -oneMoreThing: Una cosa más -optionalMeasurements: Medidas opcionales -options: Opciones -orPayPerYear: O pagar por año -other: Otro -otherThing: 'Otras {thing}' -ourPatrons: Nuestros mecenas -ourRevenuePledge: Nuestra promesa de ingresos -patron-2: Chico de la pólvora -patron-4: Primer oficial -patron-8: Capitán -patronHelp: Si tiene alguna pregunta, o desea hacer cambios en su estado de Patrón, por favor contáctenos -patron: Patrocinador -patronPitch: Si crees que lo que hacemos vale la pena, y si puedes ahorrar algunas monedas cada mes sin dificultades, por favor apoya nuestro trabajo -patronsKeepUsAfloat: El apoyo financiero de nuestros mecenas posibilita la liberación gratuita. Mantienen este barco a flote. -patternInstructions: Intrucciones de los patrones -patternOptions: Opciones del patrón -pattern: patrón -sewingPatterns: Patrones de costura -patterns: Patrones -pendingConfirmation: Confirmación pendiente -perMonth: por mes -pleaseEnterAValidEmailAddress: Por favor, entra una dirección de E-mail válida -pleaseIncludeTheInformationBelow: Por favor incluya la siguiente información -preview: vista previa -privacyNotice: Aviso de Privacidad -proceedWithCaution: Proceder con cautela -profile: Perfil -relatedLinks: Enlaces relacionados -remove: Eliminar -removeThing: Eliminar {thing} -reportThisOnGithub: Notifícalo en GitHub -requiredMeasurements: Medidas requeridas -resendActivationEmailMessage: "Complete la dirección de correo electrónico con la que se registró y le enviaremos un nuevo mensaje de confirmación." -resendActivationEmail: Reenviar email de activación -resetPassword: Restablecer contraseña -reset: Reiniciar -restoreDefaults: Restaurar valores por defecto -restoreDesignDefaults: Restaurar el diseño por defecto -restorePatternDefaults: Restaurar patrones por defecto -saveDraftToYourAccount: Guarda el boceto en tu cuenta -save: Guardar -searchLanguageMsg: Cada idioma tiene su propio índice de búsqueda. Dado que no todo nuestro contenido está traducido, puede encontrar más resultados en la búsqueda en inglés. -searchLanguageTitle: '¿No encuentras lo que buscas?' -search: Buscar -selectAPartToMoveMirrorOrRotate: Seleccione una parte para mover, reflejar o rotar -selectImage: Seleccionar imagen -sendAnEmail: Enviar un correo electrónico -settings: Ajustes -sewingHelp: Ayuda de costura -sewingPatternsForNonAveragePeople: Patrones de costura para personas no promedio -share: Compartir -shareFreesewing: Compartir FreeSewing -showcase: Escaparate -signUpForAFreeAccount: Regístrate para una cuenta gratuíta -signUp: Registrarse -signupWithProvider: 'Regístrate con {provider}' -sortByField: Ordenar por {field} -standardSeamAllowance: Margen de costura estándar -startOver: Comenzar de nuevo -startTranslatingNowOrRead: '{startTranslatingNow}, o lea primero la {documentationForTranslators}.' -startTranslatingNow: Empezar a traducir ahora -subscribe: Suscribir -support: Soporte -supportFreesewing: Apoyo de freesewing -tellMeMore: Dime más -thanksForYourSupport: Gracias por su apoyo -thisContentIsNotAvailableInLanguage: Este contenido no está disponible en Español. -thisFieldSupportsMarkdown: Este campo admite Markdown -thisPageRequiresAuthentication: esta página requiere autenticación -troubleLoggingIn: '¿Problemas para acceder?' -twitter: Twitter -txt-footer: Freesewing está hecho por una comunidad de colaboradores
con el apoyo financiero de nuestros Patrones -txt-tier2: Nuestro nivel más democrático de precios. Puede ser menor que el precio de un café con leche, pero su apoyo significa mucho para nosotros. -txt-tier4: Suscríbase a este nivel y le enviaremos parte de nuestro codiciado botín de diseño gratuito a su hogar en cualquier parte del mundo. -txt-tier8: "Si no solo desea apoyarnos, sino que quiere ver prosperar en la libertad, este es el nivel para usted. También: botín extra!" -txt-tiers: 'FreeSewing es alimentado por un modelo de suscripción voluntario' -unitsInfo: Freesewing es compatible con el sistema métrico y las unidades imperiales. Simplemente elige cuál querrías usar aquí (por defecto usamos las unidades configuradas en tu cuenta). -updated: Actualizado -update: Actualizar -userHasBeenWithUsSince: '{user} ha estado con nosotros desde {since}' -users: Userios -utilityPatterns: Patrones de prendas de trabajo -weAreValidatingYourConfirmationCode: Estamos validando tu código de confirmación -weCouldNotValidateYourConfirmationCode: No pudimos validar su código de confirmación -weEncounteredAProblem: Nos encontramos con un problema -weEncourageYouToReportThis: Le animamos a informar de esto -welcomeAboard: Bienvenido a bordo -welcome: Bienvenido -weNeverShareYourEmail: Nunca compartiremos esto con nadie -whatIsThis: Que es esto -withBreasts: Con pechos -withoutBreasts: Sin pechos -yay: '¡Hurra!' -yes: 'Yes' #Keep in quotes or it will evaluate to true -youAreAPatron: Eres un mecenas -youAreNotAPatron: Tu no eres un mecenas -youAreNotLoggedIn: No has iniciado sesión -yourRights: Tus derechos -makerDocs: Documentación para diseñadores -devDocs: Documentación para desarrolladores -slogan: Una librería JavaScript para patrones de costura a medida -getStarted: Empieza -apiReference: Referencia de la API -tutorial: Tutorial -editThisPage: Edita esta página -loginRequiredRedirect: 'Has sido redirigido a la página de inicio de sesión porque {page} requiere autenticación' -various: Varios -sewing: Costura -examples: Ejemplos -by: por -years: Años -pricing: Precios -createFirst: Empezar por crear un nuevo patrón -noPattern: No tienes ningún patrón (todavía). Crea un nuevo patrón, luego guárdalo en tu cuenta. -modelFirst: Empezar añadiendo mediciones -noModel: No has añadido ninguna medición (aún). La Coser libre puede generar patrones de costura hechos a medida. Pero para eso necesitamos mediciones. -noModel2: Así que lo primero que debes hacer es añadir una persona y agitar tu cinta de medición. -noUserBrowsingTitle: "No puedes navegar por todos los usuarios" -noUserBrowsingText: "Tenemos miles de ellos. ¿Seguro que tienes cosas mejores que hacer?" -usePatternMeasurements: 'Usar las medidas del patrón original' -createReplica: Crear una réplica -showDetails: Mostrar detalles -hideDetails: Ocultar detalles -clickBelowToLogOut: Haga clic abajo para cerrar sesión -compare: Comparar -savePattern: Guardar patrón -recreate: Recrear -recreateThing: Recrear {thing} -recreateThingForPerson: Recrear {thing} para {person} -seeYouLaterUser: Nos vemos después {user} -exportForPrinting: Exportar para impresión -exportForEditing: Exportar para editar -startWithNeckTitle: Comenzar con la circunstancia del cuello -startWithNeckDescription: Basándonos en la circunferencia del cuello, podemos ayudarte a detectar errores en tus medidas. -whatYouNeed: Lo que necesitas -fabricOptions: Opciones de tela -cutting: Corte -instructions: Instrucciones -hide: Ocultar -show: Mostrar -oneMomentPlease: Un momento, por favor -loadingMagic: Estamos cargando la magia -estimate: Estimar -actual: Actual -weEstimateYM2B: 'Estimamos que tu {measurement} es aproximadamente:' -exportAsData: Exportar como datos -availablePatterns: Patrones disponibles -browseCollection: Navegar colección -browseYourPatterns: Navega tus patrones -yourPatterns: Tus patrones -loginNeededToSavePatternsMsg: Necesitas iniciar sesión para guardar tus patrones -docsForContributors: Documentación para colaboradores -patternDocs: Documentación del patrón -socialMedia: Redes sociales -create: Crear -browse: Navegar -patrons: Patrones -scrollToTop: Desplazar hasta el inicio -sitemap: Mapa del sitio -contributeToThing: Contribuye a {thing} -mtmIsOurJam: Patrones de costura hechos a medida es en lo que nos especializamos -fitYouDeserve: Te estás perdiendo lo bueno si eliges tamaños estandarizados.
Regístrate hoy y consigue el ajuste adecuado que te mereces. -supportNag: La costura gratuita es gratis, pero agradeceríamos que consideraras apoyarnos. -madeToMeasure: a medida -sizes: Tamaños -standardSizes: Tamaños estándar -accountRequired: Esta característica requiere una cuenta de FreeSewing -size: Tamaño -switchToThing: 'Cambiar a {thing}' -saveThing: 'Guardar {thing}' -shareThing: 'Compartir {thing}' -link: Enlace -cloneThing: 'Clonar {thing}' -cloneDescription: Recrear una copia exacta, utilizando las mediciones del patrón original. -furtherReading: Lectura adicional -saveAsNewPattern: Guardar como nuevo patrón -saveAsNewPattern-txt: Guardar (una copia de) este patrón en tu cuenta de FreeSewing -exportPattern: Exportar patrón -printPattern: Patrón de impresión -exportPattern-txt: Exporte un PDF adecuado para su impresora, o descargue este patrón en una variedad de formatos -editThing: 'Editar {thing}' -editPattern-txt: Cargar este patrón en el editor de patrones -featureRequiresAccount: Esta función requiere una cuenta de FreeSewing -zoom: Zoom -zoomIn: Acerca el zoom -zoomOut: Aleja el zoom -zoom-txt: Cambia entre restringir la altura o el ancho del patrón para caber en la pantalla -savePattern-txt: Guarda este patrón en tu cuenta de FreeSewing -comparePattern: Patrón de comparación -showPattern: Mostrar patrón -comparePattern-txt: Compara tu patrón con un rango de tamaños estándar para revisar posibles problemas de ajuste -recreatePattern: Recrear patrón -recreatePattern-txt: Elige una persona diferente, luego recrear este patrón para esa persona -editOwnPatternsOnly: Solo puedes editar tus propios patrones -editOwnPatternsOnly-txt: No puedes editar este patrón porque no es tuyo, pero puedes usarlo como línea de referencia para crear tu propio patrón. -updateNotes-txt: Actualiza las notas que guardas a lo largo de tu patrón -franceWarning: Tenga cuidado con los usuarios en Francia -franceWarning-txt: Se sabe que varios proveedores de correo electrónico franceses (incluyendo free.fr, laposte.net, orange.fr y sfr.fr) descartan de forma rutinaria nuestros correos electrónicos. -emailNotReceived: Si no recibes el correo electrónico de activación, por favor contacta con nosotros para que podamos ayudarte. -error: Error -info: Información -warning: Advertencia -debug: Debug -unsubscribe: Darse de baja -slogan-come: Ven a los patrones de costura -slogan-stay: Quédate por la comunidad -lightTheme: Tema claro -darkTheme: Tema oscuro -hax0rTheme: Tema Hax0r -lgbtqTheme: Tema LGBTQ -transTheme: Tema Trans -accessoryDesigns: Accessory Designs -blockDesigns: Block/Sloper Designs -garmentDesigns: Garment Designs -utilityDesigns: Utility Designs diff --git a/packages/i18n/src/locales/es/cfp.yaml b/packages/i18n/src/locales/es/cfp.yaml deleted file mode 100644 index 1a03a859e15..00000000000 --- a/packages/i18n/src/locales/es/cfp.yaml +++ /dev/null @@ -1,33 +0,0 @@ ---- -author: Autor -githubRepo: Repositorio GitHub -packageManager: Gestor de paquetes -patternName: Nombre del patrón -patternType: Tipo de patrón -patternCreated: Tu esqueleto de patrón ha sido creado en -runTheseCommands: Para empezar, ejecuta este comando -startRollup: En una terminal, inicia el paquete de rollup en modo reloj -startWebpack: "Entrará en la carpeta \"ejemplo\" e iniciará el entorno de desarrollo." -devDocsAvailableAt: Documentación para desarrolladores está disponible en -talkToUs: Para preguntas, comentarios o sugerencias, únete a nuestro servidor de Discord -draftYourPattern: Traza tu patrón -testYourPattern: Prueba tu patrón -draftThing: 'Trazar {thing} ' -testThing: 'Prueba {thing}' -renderInBrowser: Haz clic abajo para mostrar el patrón en el navegador. -weWillReRender: Cuando realices cambios, lo volveremos a trazar para ti. -youCan: Puedes -enterMeasurements: Introducir medidas a mano -preloadMeasurements: Precarga un conjunto de medidas -size: Tamaño -noRequiredMeasurements: Este patrón no requiere tiene medidas -howtoAddMeasurements: Para requerir mediciones, agrégalas a la sección de mediciones del archivo de configuración del patrón. -seeDocsAt: La documentación sobre este tema está disponible en -clearDesignMode: Borrar modo de diseño -designMode: Modo de diseño -exportMode: Modo de exportación -thingIsEnabled: '{thing} está habilitado' -thingIsDisabled: '{thing} está deshabilitado' -turnOn: Encender -turnOff: Apagar -validNameWarning: "Por favor, elija un nombre diferente ya que este nombre podría causar problemas.\nNosotros (re)usamos el nombre del patrón como el nombre del paquete NPM.\nLos nombres de los paquetes deben ser minúsculas y no pueden contener caracteres especiales.\nAsí que por favor nombre su patrón en consecuencia, como:" diff --git a/packages/i18n/src/locales/es/components/common.yaml b/packages/i18n/src/locales/es/components/common.yaml deleted file mode 100644 index 0ad5a482933..00000000000 --- a/packages/i18n/src/locales/es/components/common.yaml +++ /dev/null @@ -1,13 +0,0 @@ ---- -account: Cuenta -blog: Blog -commumity: Comunidad -designs: Diseños -docs: Documentación -patternInstructions: Intrucciones de los patrones -patternOptions: Opciones del patrón -requiredMeasurements: Medidas requeridas -showcase: Escaparate -sloganCome: Ven a los patrones de costura -sloganStay: Quédate por la comunidad -support: Soporte diff --git a/packages/i18n/src/locales/es/components/homepage.yaml b/packages/i18n/src/locales/es/components/homepage.yaml deleted file mode 100644 index 99a9f27e0bc..00000000000 --- a/packages/i18n/src/locales/es/components/homepage.yaml +++ /dev/null @@ -1,2 +0,0 @@ ---- -scrollDownToLearnMore: Scroll down to learn more about FreeSewing and try it for free diff --git a/packages/i18n/src/locales/es/components/ograph.yaml b/packages/i18n/src/locales/es/components/ograph.yaml deleted file mode 100644 index f2f860780a2..00000000000 --- a/packages/i18n/src/locales/es/components/ograph.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -orgTitle: Welcome to FreeSewing.org -devTitle: Welcome to FreeSewing.dev -labTitle: Welcome to lab.FreeSewing.lab -devDescription: Documentation and tutorials for FreeSewing developers and contributors. Plus our Developers Blog diff --git a/packages/i18n/src/locales/es/components/patrons.yaml b/packages/i18n/src/locales/es/components/patrons.yaml deleted file mode 100644 index a2a0b231b67..00000000000 --- a/packages/i18n/src/locales/es/components/patrons.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -becomeAPatron: Conviértete en un mecenas -supportFreesewing: Support FreeSewing -patronLead: FreeSewing es alimentado por un modelo de suscripción voluntario -patronPitch: Si crees que lo que hacemos vale la pena, y si puedes ahorrar algunas monedas cada mes sin dificultades, por favor apoya nuestro trabajo diff --git a/packages/i18n/src/locales/es/components/posts.yaml b/packages/i18n/src/locales/es/components/posts.yaml deleted file mode 100644 index 86f2dcb7659..00000000000 --- a/packages/i18n/src/locales/es/components/posts.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -xMadeThis: '{x} made this' -xWroteThis: '{x} wrote this' diff --git a/packages/i18n/src/locales/es/components/themes.yaml b/packages/i18n/src/locales/es/components/themes.yaml deleted file mode 100644 index 3a55a286bad..00000000000 --- a/packages/i18n/src/locales/es/components/themes.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -lightTheme: Tema claro -darkTheme: Tema oscuro -hax0rTheme: Tema Hax0r -lgbtqTheme: Tema LGBTQ -transTheme: Tema Trans diff --git a/packages/i18n/src/locales/es/components/workbench.yaml b/packages/i18n/src/locales/es/components/workbench.yaml deleted file mode 100644 index 904c5b0e689..00000000000 --- a/packages/i18n/src/locales/es/components/workbench.yaml +++ /dev/null @@ -1,11 +0,0 @@ ---- -designOptions: Opciones de diseño -forPrinting: For printing -forCutting: For cutting -layoutThing: 'Layout {thing}' -pageSize: Page size -startBySelectingAThing: 'Start by selecting a {thing}' -testThing: 'Prueba {thing}' -yamlEditViewTitleThing: 'Edit Pattern Configuration for {thing}' -yamlEditViewError: Issues with YAML -yamlEditViewErrorDesc: We saved your input, but it might not work for the following reasons diff --git a/packages/i18n/src/locales/es/cty.yaml b/packages/i18n/src/locales/es/cty.yaml deleted file mode 100644 index 29079556c89..00000000000 --- a/packages/i18n/src/locales/es/cty.yaml +++ /dev/null @@ -1,20 +0,0 @@ ---- -wafsHashtag: Costura sin WeAres -weAreACommunityOfMakers: Somos una comunidad de creadores -weProvideMtmSewingPatterns: Proporcionamos patrones de costura a medida -isAPatron: es un patrón -contributesWith: contribuye con -communityBuilding: Edificio comunitario -development: Desarrollo -patternTesting: Pruebas de patrón -patternDesign: Diseño de patrón -support: Soporte -translation: Traducción -writing: Escribir -whereToFindUs: Dónde encontrarnos -whoWeAre: Quiénes somos -community: Comunidad -team: Equipo -teams: Equipos -contributors: Colaboradores -calls: Llamadas de colaborador diff --git a/packages/i18n/src/locales/es/designs.yml b/packages/i18n/src/locales/es/designs.yml deleted file mode 100644 index 5144528d4de..00000000000 --- a/packages/i18n/src/locales/es/designs.yml +++ /dev/null @@ -1,142 +0,0 @@ ---- -aaron: - description: Aaron es una camiseta deportiva de tirantes. - title: Aaron, camiseta de tirantes -albert: - description: Albert es un delantal. - title: Albert, delantal -bee: - description: Bee el sujetador de un bikini - title: Bee, sujetador de bikini -bella: - description: Bella es un patrón báse para personas con pechos. - title: Bella, patrón base de torso con pechos -benjamin: - description: Benjamin es un patrón de pajarita con cuatro formas a elegir. - title: Benjamin, pajarita -bent: - description: Este patrón base con mangas de dos partes es la base de nuestros patrones de chaqueta y abrigo. - title: Bent, patrón base de chaqueta -bob: - description: This is the bib that you can create by following our design tutorial - title: Bob the bib -breanna: - description: Breanna es un patrón base de torso para personas con pechos. - title: Breanna, patrón base de torso con pechos -brian: - description: Brian es un patrón base para personas sin pechos. - title: Brian, patrón base de torso sin pechos -bruce: - description: Bruce es un bóxer cerrado cómodo y elegante. - title: Bruce, calzoncillos bóxer -carlita: - description: 'La versión para gente con pechos de nuestro abrigo Carlton, también conocido como el abrigo de Sherlock Holmes.' - title: Carlita, abrigo -carlton: - description: 'Para un cosplay de Sherlock Holms, o simplemente un abrigo muy bonito.' - title: Carlton, abrigo -cathrin: - description: Cathrin es un corset por debajo del pecho o faja. - title: Cathrin, corset -charlie: - description: Charlie es un patrón de pantalón tipo chinos. - title: Charlie, chinos -cornelius: - description: Cornelius son pantalones cortos de ciclista basados en el método de bocetado Keystone. - title: Cornelius, pantalones cortos de ciclista -diana: - description: Diana es un top con un escote drapeado. - title: Diana, top de escote drapeado -florent: - description: 'Florent es una boina, redondeada, con una pequeña visera rígida en en la parte de delante.' - title: Florent, boina -florence: - description: 'Florence es una mascarilla.' - title: Máscara de Florencia -hi: - description: The world's friendliest shark - title: Hi shark plush toy -holmes: - description: 'Para un cosplay de Sherlock Holmes o simplemente un sombrero bonito.' - title: Holmes, sombrero deerstalker o cervadora -hortensia: - description: 'Hortensia es un bolso de mano.' - title: Hortensia, bolso de mano -huey: - description: Huey es una sudadera con capucha, cremallera y bolsillos delanteros opcionales. - title: Huey, sudadera con capucha -hugo: - description: Hugo es una sudadera con capucha y manga raglán. - title: Hugo, sudadera con capucha -jaeger: - description: Jaeger es una chaqueta de estilo deportivo con dos botones y bolsillos de parche. - title: Jaeger, chaqueta -lucy: - description: Lucy is a historical pocket that you can tie around your waist. - title: Lucy tie-on pocket -lunetius: - description: Lunetius es una lacerna, una capa histórica romana - title: Lunetius, lacerna -noble: - description: Noble es un patrón base de torso con corte de príncipe o princesa - title: Noble, patrón base de torso -octoplushy: - description: A multi-armed companion for next-level hugs - title: Octoplushy the octopus -paco: - description: Paco son pantalones de verano casual pero con estilo. - title: Paco, pantalones largos -penelope: - description: Penelope es una falda de tubo una gorra de lápiz con o sin apertura en la parte de atrás. - title: Penelope, falda de tubo -sandy: - description: Sandy es un patrón de falda de vuelo circular adaptable. - title: Sandy, falda de vuelo -shin: - description: Shin es un bañador de tipo pantalón corto. - title: Shin, bañador -simon: - description: Simon es un patrón de camisa altamente adaptable para personas sin pechos. - title: Simon, camisa -simone: - description: Simone es Simón, una patrón de camisa, adaptado para gente con pechos. - title: Simone, camisa -sven: - description: Sven es una sudadera de líneas sencillas. - title: Sven, sudadera -tamiko: - description: Tamiko es un top cero residuos (zero-waste). - title: Tamiko top -teagan: - description: Teagan es un patrón de camiseta entallada. - title: Teagan, camiseta -theo: - description: Theo es un patrón de pantalones clásico. - title: Pantalones Theo -tiberius: - description: Tiberius es una túnica romana histórica. - title: Tiberius, túnica -titan: - description: Titán es un patrón base de pantalón sin pinzas. - title: Titan, patrón base de pantalón -trayvon: - description: Trayvon es una corbata que no repara en gastos para un resultado profesional. - title: Trayvon, corbata -unice: - description: Unice is a variant of Ursula; A basic, highly-customizable underwear pattern. - title: Unice undies -ursula: - description: Ursula es un patrón básico de braguitas altamente personalizable. - title: Ursula, braguitas -wahid: - description: Wahid es el clásico chaleco entallado. - title: Wahid, chaleco -walburga: - description: Walburga es un tabardo o sobreveste, una prenda histórica de la Europa medieval - title: Walburga, tabardo -waralee: - description: Waralee son pantalones envolventes. - title: Pantalones de Waralee -yuri: - description: Yuri es una elegante sudadera tipo cárdigan sin cremallera, basado en las sudaderas Huey y Hugo - title: Yuri, sudadera diff --git a/packages/i18n/src/locales/es/email.yaml b/packages/i18n/src/locales/es/email.yaml deleted file mode 100644 index a20d37a5745..00000000000 --- a/packages/i18n/src/locales/es/email.yaml +++ /dev/null @@ -1,26 +0,0 @@ ---- -emailChangeActionText: 'Confirme su nueva dirección de correo electrónico' -emailChangeCopy1: 'You requested to change the E-mail address linked to your account at FreeSewing.org.' -emailChangeCopy2: 'Before we do that, you need to confirm your new E-mail address. Please click the link below to do that:' -emailChangeHiddenIntro: "Confirmemos tu nueva dirección de correo electrónico" -emailChangeTitle: 'Por favor confirme su nueva dirección de correo electrónico' -emailChangeWhy: 'You received this E-mail because you changed the E-mail address linked to your account on FreeSewing.org' -goodbyeCopy1: "If you'd like to share why you're leaving, you can reply to this message." -goodbyeCopy2: "From our side, we won't bother you again." -goodbyeTitle: 'Thank you for giving FreeSewing a chance' -goodbyeWhy: 'You received this E-mail as a final farewell after removing your account on FreeSewing.org' -passwordResetActionText: 'Recupere el acceso a su cuenta' -passwordResetCopy1: 'You forgot your password for your account at FreeSewing.org.' -passwordResetCopy2: 'Click the link below to reset your password:' -passwordResetHeaderOpeningLine: "No te preocupes, estas cosas nos pasan a todos." -passwordResetHiddenIntro: 'Recupere el acceso a su cuenta' -passwordResetSubject: 'Recupere el acceso a su cuenta en freesewing.org' -passwordResetTitle: 'Restablece tu contraseña y vuelve a obtener acceso a tu cuenta' -passwordResetWhy: 'Recibió este correo electrónico porque solicitó restablecer su contraseña en freesewing.org' -questionsJustReply: "Si tiene alguna pregunta, simplemente responda a este correo electrónico. Siempre feliz de ayudar. 🙂" -signupActionText: 'Confirme su dirección de correo electrónico' -signupCopy1: 'Thank you for signing up at FreeSewing.org.' -signupCopy2: 'Before we get started, you need to confirm your E-mail address. Please click the link below to do that:' -signupHiddenIntro: "Confirmemos tu dirección de correo electrónico" -signupSubject: 'Welcome to FreeSewing.org' -signupWhy: 'Recibió este correo electrónico porque acaba de registrarse para una cuenta en freesewing.org' diff --git a/packages/i18n/src/locales/es/errors.yaml b/packages/i18n/src/locales/es/errors.yaml deleted file mode 100644 index dc209b4e013..00000000000 --- a/packages/i18n/src/locales/es/errors.yaml +++ /dev/null @@ -1,11 +0,0 @@ ---- -404: La página que estás buscando no se encuentra -confirmationNotFound: Si llegó a esta página a través del enlace en un correo electrónico de confirmación, le recomendamos que informe de este problema. -emailExists: Ya tenemos un usuario con esa dirección de correo electrónico. Tal vez le gustaría iniciar sesión en su lugar? -networkError: El backend o la red parecen estar apagados -notAValidImageFormat: No es un formato de imagen válido -requestFailedWithStatusCode400: Solicitud fallida -requestFailedWithStatusCode401: Autenticación fallida -requestFailedWithStatusCode403: Prohibido -requestFailedWithStatusCode500: Hubo un problema inesperado. Por favor informe de esto. -something: Algo salió mal diff --git a/packages/i18n/src/locales/es/filter.yml b/packages/i18n/src/locales/es/filter.yml deleted file mode 100644 index 0cc37c682e4..00000000000 --- a/packages/i18n/src/locales/es/filter.yml +++ /dev/null @@ -1,20 +0,0 @@ ---- -filter: Filtros -department: Departamento -type: Tipo -tags: Etiquetas -code: Código -design: Diseño -difficulty: Dificultad -resetFilter: Reajustar el filtro -accessories: Accesorios -block: Bloque -pattern: Patrón -byPattern: Filtrar por patrón -underwear: Ropa interior -top: Arriba -tops: Veces -bottom: Fondo -bottoms: Bottomas -coats: Abrigos y chaquetas -swimwear: Ropa de baño diff --git a/packages/i18n/src/locales/es/i18n.yaml b/packages/i18n/src/locales/es/i18n.yaml deleted file mode 100644 index 054df6403c0..00000000000 --- a/packages/i18n/src/locales/es/i18n.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -de: Alemán -en: Inglés -es: Español -fr: Francés -nl: Holandés diff --git a/packages/i18n/src/locales/es/index.js b/packages/i18n/src/locales/es/index.js deleted file mode 100644 index 328625f6af9..00000000000 --- a/packages/i18n/src/locales/es/index.js +++ /dev/null @@ -1,85 +0,0 @@ -import account from './account.yaml' -import app from './app.yaml' -import cfp from './cfp.yaml' -import cty from './cty.yaml' -import email from './email.yaml' -import errors from './errors.yaml' -import filter from './filter.yml' -import gdpr from './gdpr.yaml' -import i18n from './i18n.yaml' -import intro from './intro.yaml' -import measurements from './measurements.yaml' -import lab from './lab.yaml' -import options from './options/' -import optiongroups from './optiongroups.yaml' -import parts from './parts.yaml' -import patterns from './patterns.yml' -import plugin from './plugin/' -import settings from './settings.yml' -import welcome from './welcome.yaml' - -import jargonFile from './jargon.yml' - -const topics = { - account, - app, - cfp, - cty, - email, - errors, - filter, - gdpr, - i18n, - intro, - measurements, - lab, - options, - optiongroups, - parts, - patterns, - plugin, - settings, - welcome, -} - -const strings = {} - -for (let topic of Object.keys(topics)) { - for (let id of Object.keys(topics[topic])) { - if (typeof topics[topic][id] === 'string') strings[topic + '.' + id] = topics[topic][id] - else { - for (let key of Object.keys(topics[topic][id])) { - if (typeof topics[topic][id][key] === 'string') - strings[topic + '.' + id + '.' + key] = topics[topic][id][key] - else { - for (let subkey of Object.keys(topics[topic][id][key])) { - if (typeof topics[topic][id][key][subkey] === 'string') - strings[topic + '.' + id + '.' + key + '.' + subkey] = topics[topic][id][key][subkey] - else { - for (let subsubkey of Object.keys(topics[topic][id][key][subkey])) { - if (typeof topics[topic][id][key][subkey][subsubkey] === 'string') - strings[topic + '.' + id + '.' + key + '.' + subkey + '.' + subsubkey] = - topics[topic][id][key][subkey][subsubkey] - else { - console.log('Depth exceeded!', topic, id, key, subkey, subsubkey) - } - } - } - } - } - } - } - } -} - -const jargon = {} -for (let entry in jargonFile) { - jargon[jargonFile[entry].term] = jargonFile[entry].description -} - -export default { - strings, - plugin, - jargon, - topics, -} diff --git a/packages/i18n/src/locales/es/intro.yaml b/packages/i18n/src/locales/es/intro.yaml deleted file mode 100644 index 603835f3a3a..00000000000 --- a/packages/i18n/src/locales/es/intro.yaml +++ /dev/null @@ -1,12 +0,0 @@ ---- -txt-blog: Noticias, actualizaciones y anuncios del equipo de freesewing. -txt-community: 'Todo es llevado por colaboradores voluntarios. TNo hay ninguna entidad comercial detrás de, o vinculada a, este proyecto.' -txt-different: En qué somos diferentes -txt-draft: "Elige uno de los patrones, elige un model y elige tus opciones. Nosotros hacemos el resto" -txt-how: Cómo funciona -txt-join: Únete a miles de personas y regístrate en freesewing.org. -txt-model: Todos nuestros patrones son a medida. Así que lo primero que necesitas es un metro. -txt-newHere: "Si eres nuevo aquí, el mejor lugar para comenzar es nuestra demostración:" -txt-opensource: 'Nuestra plataforma, nuestros patrones e incluso este sitio web. Todo nuestro código está disponible en GitHub. Modificaciones son bienvenidas!' -txt-patrons: Freesewing es posible por el apoyo económico de nuestros patrocinadores. Desplácese hacia abajo para conocer nuestro modelo de suscripción. -txt-showcase: Proyectos terminados de la comunidad de freesewing diff --git a/packages/i18n/src/locales/es/jargon.yml b/packages/i18n/src/locales/es/jargon.yml deleted file mode 100644 index 7515cad6c4b..00000000000 --- a/packages/i18n/src/locales/es/jargon.yml +++ /dev/null @@ -1,85 +0,0 @@ ---- -basting: - term: hilvanar - description: "Ver hilvanar en la documentación de costura" -coverlock: - term: cubierto - description: "Ver Coverlock en la documentación de costura" -cutting: - term: corte - description: "Ver Cortando en la documentación de costura" -darts: - term: pinzas - description: "Ver Dardos en la documentación de costura" -doubleWeltPockets: - term: bolsillos de doble soldadura - description: "Vea Bolsillos de doble soldadura en la documentación de costura" -ease: - term: facilidad - description: "Ve Sube en la documentación de costura" -edgestitch: - term: pespunte - description: "Ver pespunte en la documentación de costura" -fabricGrain: - term: grano de tela - description: "Ver Grano de tela en la documentación de costura" -goodSidesTogether: - term: lado bueno juntos - description: "Ver buenas partes juntas en la documentación de costura" -onTheFold: - term: en el pliegue - description: "Ver En el plegado en la documentación de costura" -hemming: - term: hemming - description: "Ver Hemming en la documentación de coser" -jersey: - term: jersey - description: "Ver Jersey en la documentación de costura" -knitBinding: - term: unión de tejidos - description: "Ver Enlace de Knit en la documentación de costura" -knitFabric: - term: tejido de tejidos - description: "Ver Tela de Knit en la documentación de costura" -pinning: - term: fijar - description: "Ver Fijar en la documentación de costura" -rayon: - term: rayon - description: "Ver Rayon en la documentación de costura" -sa: - term: margen de costura - description: "Ver Permiso de costura en la documentación de costura" -serger: - term: serrador - description: "Ver Serger en la documentación de costura" -slipstitch: - term: punto deslizado - description: "Ver punto deslizado en la documentación de costura" -topstitching: - term: topstitching - description: "Ver Topstitching en la documentación de costura" -trimming: - term: rascacielos - description: "Ver Trimming en la documentación de costura" -twinNeedle: - term: aguja gemela - description: "Ver aguja gemela en la documentación de costura" -zigZag: - term: zig-zag stitch - description: "Ver Zig-zag stitch en la documentación de cobertura" -freesewing: - term: freesewing - description: 'FreeSewing es una plataforma de código abierto para patrones de costura hechos a medida' -patternOptions: - term: opciones del patrón - description: 'Las opciones de patrón te permiten personalizar el diseño del patrón' -draftSettings: - term: ajustes del boceto - description: 'Los ajustes del boceto te permiten controlar cómo se genera un patrón' -patrons: - term: mecenas - description: 'Los mecenas apoyan a Freesewing económicamente. Son colaboradores fieles que aseguran un futuro sostenible para freesewing.org, nuestro código, nuestros patrones y nuestra comunidad.' -msf: - term: msf - description: "Médicos Sin Fronteras/Médecins Sans Frontières - Ver msf.org" diff --git a/packages/i18n/src/locales/es/lab.yaml b/packages/i18n/src/locales/es/lab.yaml deleted file mode 100644 index edb281f358d..00000000000 --- a/packages/i18n/src/locales/es/lab.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -slogan: The FreeSewing lab provides -slogan1: All our pattern designs -slogan2: New & old version -slogan3: Bleeding edge code -slogan4: Unreleased designs diff --git a/packages/i18n/src/locales/es/loader.yaml b/packages/i18n/src/locales/es/loader.yaml deleted file mode 100644 index 3449e3e68b3..00000000000 --- a/packages/i18n/src/locales/es/loader.yaml +++ /dev/null @@ -1 +0,0 @@ -processing: Processing diff --git a/packages/i18n/src/locales/es/optiongroups.yaml b/packages/i18n/src/locales/es/optiongroups.yaml deleted file mode 100644 index f45c7b85c7a..00000000000 --- a/packages/i18n/src/locales/es/optiongroups.yaml +++ /dev/null @@ -1,25 +0,0 @@ ---- -advanced: Avanzado -armhole: Agujero armado -closure: Cierre -collar: Cuello -construction: Construcción -cuffs: Puños -darts: Dardos -elastic: Elástico -fit: Ajuste -pockets: Bolsillos -preferences: Preferencias -sleevecap: Manga corta -sleeves: Mangas -style: Estilo -backPockets: Paquetes de retroceso -frontPockets: Pockets delanteros -waistband: Pretina -fly: Vuela -bellaDarts: Pinzas de Bella -bellaArmhole: Sisa de Bella -bellaAdvanced: Bella advanced -clavi: Clavi -type: Tipo -size: Talla diff --git a/packages/i18n/src/locales/es/options/aaron.yml b/packages/i18n/src/locales/es/options/aaron.yml deleted file mode 100644 index 92efae9da20..00000000000 --- a/packages/i18n/src/locales/es/options/aaron.yml +++ /dev/null @@ -1,25 +0,0 @@ ---- -armholeDrop: - title: Caída de la sisa - description: Baja la sisa esta cantidad. Valores negativos la elevan. -backlineBend: - title: Forma posterior de la sisa - description: Determina la forma/curva de la parte posterior de la sisa. -hipsEase: - title: Holgura de cadera - description: La cantidad de holgura en la cadera. -necklineBend: - title: Forma del cuello - description: Determina la forma/curva del cuello en el frente. -necklineDrop: - title: Caída del escote - description: La cantidad de cuello que se corta en el frente. -shoulderStrapPlacement: - title: Posición de los tirantes - description: Determina si los tirantes se colocan cerca del cuello (números más bajos) o del hombro (números más altos). -shoulderStrapWidth: - title: Anchura de los tirantes - description: La anchura de los tirantes. -stretchFactor: - description: Determina la holgura negativa horizontal. - title: Extensión diff --git a/packages/i18n/src/locales/es/options/albert.yml b/packages/i18n/src/locales/es/options/albert.yml deleted file mode 100644 index 922249a0f78..00000000000 --- a/packages/i18n/src/locales/es/options/albert.yml +++ /dev/null @@ -1,20 +0,0 @@ ---- -backOpening: - title: Abertura de la espalda - description: Controla la apertura en la parte trasera del Profeta -chestDepth: - title: Longitud del Strp - description: Controla la longitud de las correas -lengthBonus: - title: Bonus de longitud - description: Controla la longitud del buque -bibLength: - title: Longitud de bib - description: Controla la longitud de la bib -bibWidth: - title: Ancho bib - description: Controla el ancho de la bib -strapWidth: - title: Strap width - description: Controla el ancho de la correa - diff --git a/packages/i18n/src/locales/es/options/bee.yml b/packages/i18n/src/locales/es/options/bee.yml deleted file mode 100644 index 7c6ae936a47..00000000000 --- a/packages/i18n/src/locales/es/options/bee.yml +++ /dev/null @@ -1,82 +0,0 @@ ---- -chestEase: - title: Holgura de pecho - description: Controla la holgura del pecho en el patrón base (Bella) en el que se basa Bee -waistEase: - title: Holgura de cintura - description: Controla la holgura de cintura en el patrón base (Bella) en el que se basa Bee -bustSpanEase: - title: Holgura alrededor del busto - description: Controla la holgura de busto en el patrón base (Bella) en el que se basa Bee -topDepth: - title: Límite superior - description: Controla hasta qué punto la copa de bikini se extiende hacia arriba -bottomCupDepth: - title: Límite inferior - description: Controla hasta qué punto la copa de bikini se extiende hacia abajo -sideDepth: - title: Límite lateral - description: Controla hasta qué punto se extiende la copa del bikini hacia el lado -sideCurve: - title: Curva lateral exterior - description: Controla la curvatura del lado exterior de la copa del bikini -frontCurve: - title: Curva lateral interior - description: Controla la curvatura de la parte lateral interior de la copa del bikini -bellaGuide: - title: Mostrar Bella - description: Muestra el contorno del patrón base Bella en el que se basa Bee -ties: - title: Cintas - description: Sobre si incluir cintas o no -bandTieWidth: - title: Ancho de la cinta del pecho - description: Controla el ancho de las cintas alrededor del pecho -bandTieLength: - title: Longitud de la cinta del pecho - description: Controla la longitud de las cintas alrededor del pecho -bandTieEnds: - title: Puntas de la cinta del pecho - description: Si prefieres que las puntas de la cinta alrededor del pecho sean planas o acaben en punta -bandTieColours: - title: Colores de la longitud de la cinta del pecho - description: Sobre si quieres cintas de un solo color alrededor del pecho o de dos colores. -neckTieWidth: - title: Ancho de la cinta del cuello - description: Controla el ancho de las cintas alrededor del pecho -neckTieLength: - title: Longitud de la cinta del cuello - description: Controla la longitud de las cintas alrededor del pecho -neckTieEnds: - title: Puntas de la cinta del cuello - description: Si prefieres que las puntas de la cinta alrededor del pecho sean planas o acaben en punta -neckTieColours: - title: Colores de la cinta del cuello - description: Sobre si quieres cintas de un solo color alrededor del pecho o de dos colores. -crossBackTies: - title: Cintas cruzadas - description: Whether you'd like to use the cross back tie variation of Bee -bandLength: - title: Band Length (Cross back ties) - description: Controla la longitud de la cinta alrededor de tu pecho para la versión de tirantes cruzados de Bee -backDartHeight: - title: Back dart height (Bella) - description: Controla la altura de la pinza trasera en el patrón base Bella, en el que se basa Bee -armholeDepth: - title: Armhole depth (Bella) - description: Controla la profundidad de la sisa en el patron de base Bella en el que se basa Bee -frontArmholePitchDepth: - title: Front armhole pitch depth (Bella) - description: Controls the front armhole pitch depth in the underlying Bella block Bee is based on -frontShoulderWidth: - title: Front shoulder width (Bella) - description: Controla el ancho de hombros en el patrón de base Bella en el que se basa Bee -fullChestEaseReduction: - title: Full chest reduction (Bella) - description: Controls the full chest reduction in the underlying Bella block Bee is based on -highBustWidth: - title: High bust width (Bella) - description: Controls the high bust width in the underlying Bella block Bee is based on -shoulderToShoulderEase: - title: Ancho de hombros (Bella) - description: Controla el ancho de hombros en el patrón de base Bella en el que se basa Bee diff --git a/packages/i18n/src/locales/es/options/bella.yml b/packages/i18n/src/locales/es/options/bella.yml deleted file mode 100644 index 83f6ed17b28..00000000000 --- a/packages/i18n/src/locales/es/options/bella.yml +++ /dev/null @@ -1,58 +0,0 @@ ---- -chestEase: - title: Holgura de pecho - description: Controla la cantidad de facilidad en la parte más completa de tu cofre -waistEase: - title: Holgura de cintura - description: Controla la cantidad de facilidad en tu cintura -bustSpanEase: - title: Facilidad de la expansión del polvo - description: Controla la cantidad de facilidad (horizontal) que se agrega a tu superficie de busto al ubicar el punto de busto. -shoulderToShoulderEase: - title: Shoulder to Shoulder ease - description: Controls the amount of ease between your shoulders. Initially set to -.5% because Bella implements a block that is used in the industry. -fullChestEaseReduction: - title: Full chest ease reduction - description: Allows you to independently reduce the ease around the chest to make it fit tight(er) in that area -backDartHeight: - title: Altura del dart trasero - description: Controla la altura del dart posterior -bustDartLength: - title: Longitud del dart del polvo - description: Controla la longitud del polvo -waistDartLength: - title: Longitud del dart de Waist - description: Controla la longitud del dardo de la cintura -bustDartCurve: - title: Curva darda de busto - description: Controla la curvatura del polvo -armholeDepth: - title: Profundidad del orificio - description: Controla la profundidad del orificio -backArmholeSlant: - title: Slant del orificio trasero - description: Rota ligeramente el orificio alrededor de su punto de zanja -frontArmholeCurvature: - title: Front armhole curvature - description: Controls how deep the armhole is scooped out at the front bottom -backArmholeCurvature: - title: Curvatura del orificio trasero - description: Controla la profundidad del agujero de armadura en la parte trasera -frontArmholePitchDepth: - title: Profundidad del tono del orificio delantero - description: Modifica la posición horizontal del punto de giro del blindaje frontal -backArmholePitchDepth: - title: Profundidad del tono del orificio trasero - description: Modifica la posición horizontal del punto de giro del orificio trasero -backNeckCutout: - title: Corte trasero del cuello - description: Controla la profundidad de la apertura del cuello en la espalda -backHemSlope: - title: Pendiente trasera - description: Controla la pendiente del hem en la espalda -frontShoulderWidth: - title: Ancho del hombro frontal - description: Controla la estrechez de los hombros delanteros relativos a la parte trasera -highBustWidth: - title: Ancho de bust alto - description: Le permite ajustar el ancho del polvo alto en la parte frontal diff --git a/packages/i18n/src/locales/es/options/benjamin.yml b/packages/i18n/src/locales/es/options/benjamin.yml deleted file mode 100644 index 7ad31488b07..00000000000 --- a/packages/i18n/src/locales/es/options/benjamin.yml +++ /dev/null @@ -1,28 +0,0 @@ ---- -adjustmentRibbon: - title: Cinta de ajuste - description: Incluir o no una cinta de ajuste -bandLength: - title: Longitud de la banda - description: Longitud de la banda -tipWidth: - title: Ancho de la punta - description: Ancho de las puntas -knotWidth: - title: Ancho de nudo - description: Ancho del nudo -bowLength: - title: Longitud del lazo - description: Longitud del lazo (cuando está anudado) -bowStyle: - title: Estilo del lazo - description: Estilo del lazo -endStyle: - title: Estilo de las puntas - description: Estilo de las puntas del lazo -collarEase: - title: Facilidad de cuello - description: The amount of ease at your neck -ribbonWidth: - title: Ribbon width - description: Width of the ribbon diff --git a/packages/i18n/src/locales/es/options/bent.yml b/packages/i18n/src/locales/es/options/bent.yml deleted file mode 100644 index 7274592e627..00000000000 --- a/packages/i18n/src/locales/es/options/bent.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- -sleeveBend: - title: Manga doblada - description: Curva de la manga en el codo. -sleevecapHeight: - title: Altura de la manga - description: Controla la altura de la manga. - diff --git a/packages/i18n/src/locales/es/options/bob.yml b/packages/i18n/src/locales/es/options/bob.yml deleted file mode 100644 index aa25028a99a..00000000000 --- a/packages/i18n/src/locales/es/options/bob.yml +++ /dev/null @@ -1,12 +0,0 @@ -neckRatio: - title: Neck opening - description: Controls the size of the neck opening relative to the bib size -widthRatio: - title: Anchura - description: Controla el ancho de la bib -lengthRatio: - title: Longitud - description: Controla la longitud de la bib -headSize: - title: Head size - description: The head circumference you want the bib to accomodate diff --git a/packages/i18n/src/locales/es/options/breanna.yml b/packages/i18n/src/locales/es/options/breanna.yml deleted file mode 100644 index 62cc2613911..00000000000 --- a/packages/i18n/src/locales/es/options/breanna.yml +++ /dev/null @@ -1,41 +0,0 @@ ---- -shoulderDart: - title: Dardo de hombro - description: Incluir o no un dardo en el hombro para redondear la espalda -shoulderDartSize: - title: Tamaño dart de hombro - description: El tamaño del dart del hombro -shoulderDartLength: - title: Longitud del dart del hombro - description: La longitud del dart del hombro -waistDart: - title: Dardo de Waist - description: Incluir o no un dardo en la cintura para redondear la espalda -waistDartSize: - title: Tamaño dart de Waist - description: El tamaño del dardo de la cintura -waistDartLength: - title: Longitud del dart de Waist - description: La longitud del dardo de la cintura -verticalEase: - title: Fácil vertical - description: La cantidad de facilidad para distribuir a lo largo de la ropa -waistEase: - title: Holgura de cintura - description: La cantidad de facilidad en la cintura -primaryBustDart: - title: Dardo de busto - description: Donde colocar el polvo para dar forma al cofre -primaryBustDartLength: - title: Longitud del dart del polvo - description: La longitud del polvo -secondaryBustDart: - title: Armadura de polvo secundaria - description: Opcionalmente incluye un polvo secundario para distribuir la forma del cofre -secondaryBustDartLength: - title: Longitud del polvo secundario - description: La longitud del polvo secundario -primaryBustDartShaping: - title: Dardos de busto que conforman - description: Controla el equilibrio entre los dardos principales y secundarios - diff --git a/packages/i18n/src/locales/es/options/brian.yml b/packages/i18n/src/locales/es/options/brian.yml deleted file mode 100644 index affeeb8803a..00000000000 --- a/packages/i18n/src/locales/es/options/brian.yml +++ /dev/null @@ -1,106 +0,0 @@ ---- -acrossBackFactor: - title: Factor de ancho de espalda - description: Controla el ancho de espalda como un factor de la medida de hombro a hombro. -armholeDepthFactor: - title: Factor de profundidad de la sisa - description: Controla la profundidad de la sisa. Valores más altos producen sisas más profundas. -backNeckCutout: - title: Corte trasero del cuello - description: Cómo de profundo es el cuello por detrás -bicepsEase: - title: Holgura del bíceps - description: 'La cantidad de holgura en la parte superior del brazo. Ten en cuenta que, aunque intentamos repetar esto, ajustar la manga a la sisa toma preferencia sobre respetar la cantidad exacta de holgura.' -collarEase: - title: Facilidad de cuello - description: La cantidad de facilidad alrededor de tu cuello. -chestEase: - title: Holgura de pecho - description: La cantidad de holgura en el pecho -cuffEase: - title: Holgura de muñeca - description: La cantidad de holgura en la muñeca. -draftForHighBust: - title: Borrador para alta caída - description: Borra el patrón para la medición alta del polvo (si está disponible) en lugar del cofre (completo). Esto dará lugar a una prenda más ajustada para las personas con senos. -frontArmholeDeeper: - title: Sujetador delantero extra recorte - description: '¿Cuánto quieres que se corte la sisa delantera más allá de la espalda?' -lengthBonus: - title: Bonus de longitud - description: La cantidad a elongar. Valores negativos lo acortan. -s3Collar: - title: 'Mayo de costura de hombro: lado de cuello' - description: Aumenta esta opción para desplazar la costura del hombro hacia adelante en el lado del cuello. Disminuye su desplazamiento hacia atrás. -s3Armhole: - title: 'Mayo de costura de hombro: lado del orificio' - description: Aumenta esta opción para desplazar la costura del hombro hacia adelante en el lado del blindaje. Disminuye su desplazamiento hacia atrás. -shoulderEase: - title: Holgura de hombro - description: La cantidad de holgura en los hombros. Esto incrementa la distancia de hombro a hombro para dejar espacio para la ropa que lleves debajo. -shoulderSlopeReduction: - title: Reducción de caída del hombro - description: La cantidad en la que la caída del hombro se reduce para añadir hombreras. -sleeveLengthBonus: - title: Longitud extra de manga - description: La cantidad a alargar la manga. Un valor negativo la acorta. -sleevecapEase: - title: Holgura de la parte superior de la manga - description: La cantidad en la que la parte superior de la manga es más larga que la sisa -sleevecapTopFactorX: - title: Funda tapa X - description: Controla la ubicación horizontal de la parte superior de la funda -sleevecapTopFactorY: - title: Funda tapa Y - description: Controla la altura de la manga. Un valor más alto hace que la parte superior de la manga sea más alta y estrecha. -sleevecapBackFactorX: - title: Funda atrás X - description: Controla la colocación del punto de inflexión posterior de la funda en el eje X (horizontal) -sleevecapBackFactorY: - title: Funda atrás X - description: Controla la colocación del punto de inflexión posterior de la funda en el eje Y (vertical) -sleevecapFrontFactorX: - title: Funda frontal X - description: Controla la colocación del punto de inflexión frontal de la funda en el eje X (horizontal) -sleevecapFrontFactorY: - title: Funda frontal Y - description: Controla la colocación del punto de inflexión frontal de la funda en el eje Y (vertical) -sleevecapQ1Offset: - title: Funda Q1 offset - description: Controla la curvatura de la funda en el primer cuadrante (sisa frontal) -sleevecapQ2Offset: - title: Funda Q2 offset - description: Controla la curvatura de la funda en el segundo cuadrante (hombro delantero) -sleevecapQ3Offset: - title: Funda Q3 offset - description: Controla la curvatura de la funda en el tercer cuadrante (hombro posterior) -sleevecapQ4Offset: - title: Funda Q4 offset - description: Controla la curvatura de la funda en el cuarto cuadrante (sisa trasera) -sleevecapQ1Spread1: - title: Funda Q1 propagación a la baja - description: Controla la propagación de la curvatura del primer cuadrante de la manga hacia la sisa. -sleevecapQ1Spread2: - title: Funda Q1 propagación hacia arriba - description: Controla la propagación de la curvatura del primer cuadrante de manga hacia el hombro -sleevecapQ2Spread1: - title: Funda Q2 propagación a la baja - description: Controla la propagación de la curvatura del segundo cuadrante del manguito hacia la sisa. -sleevecapQ2Spread2: - title: Funda Q2 extendido hacia arriba - description: Controla la propagación de la curvatura del segundo cuadrante de manga hacia el hombro -sleevecapQ3Spread1: - title: Funda Q3 extendido hacia arriba - description: Controla la propagación de la curvatura del tercer cuadrante de manga hacia el hombro -sleevecapQ3Spread2: - title: Funda Q3 propagación a la baja - description: Controla la propagación de la curvatura del tercer cuadrante de la manga hacia la sisa. -sleevecapQ4Spread1: - title: Funda Q4 extendido hacia arriba - description: Controla la propagación de la curvatura del cuarto cuadrante de manga hacia el hombro -sleevecapQ4Spread2: - title: Funda Q4 propagación a la baja - description: Controla la propagación de la curvatura del cuarto cuadrante de manga hacia la sisa. -sleeveWidthGuarantee: - title: Garantía de anchura de la manga - description: Controla cuánto del ancho de la manga se garantizará. Esto determina cuánto podemos alterar el ancho de la manga para que se ajuste a la manga en la sisa. diff --git a/packages/i18n/src/locales/es/options/bruce.yml b/packages/i18n/src/locales/es/options/bruce.yml deleted file mode 100644 index a80bb39e179..00000000000 --- a/packages/i18n/src/locales/es/options/bruce.yml +++ /dev/null @@ -1,19 +0,0 @@ ---- -bulge: - title: Bulto - description: Incrementar el ángulo para crear más espacio en el bolsillo delantero. -legBonus: - title: Extra de longitud de pierna - description: La longitud extra a añadir a las perneras. -rise: - title: Elevación de la cintura - description: La cantidad a elevar la cintura. Valores negativos la bajan. -stretch: - title: Extensión - description: La cantidad de holgura negativa. -legStretch: - title: Estiramiento de la pernera - description: 'Para mejores resultados, junta tus piernas más; di no a los huecos.' -backRise: - title: Elevación de la espalda - description: Porcentaje en el que la cintura se elevará en la espalda. diff --git a/packages/i18n/src/locales/es/options/carlita.yml b/packages/i18n/src/locales/es/options/carlita.yml deleted file mode 100644 index 8e6d8a8ddd3..00000000000 --- a/packages/i18n/src/locales/es/options/carlita.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -contour: - title: Contorno - description: Controla cómo de abrubtamente se ajustan las costuras princesa. diff --git a/packages/i18n/src/locales/es/options/carlton.yml b/packages/i18n/src/locales/es/options/carlton.yml deleted file mode 100644 index eb0b518f628..00000000000 --- a/packages/i18n/src/locales/es/options/carlton.yml +++ /dev/null @@ -1,31 +0,0 @@ ---- -seatEase: - title: Holgura de asiento - description: Cantidad de facilidad alrededor de tu trasero -pocketPlacementHorizontal: - title: Colocación horizontal del bolsillo - description: La ubicación (horizontal) de los bolsillos -pocketPlacementVertical: - title: Colocación vertical del bolsillo - description: La ubicación (vertical) de los bolsillos -collarHeight: - title: Altura del cuello - description: Altura del cuello -length: - title: Longitud - description: Largo total -pocketFlapRadius: - title: Radio de la tapa del bolsillo - description: La cantidad por la cual se redondea la solapa del bolsillo -pocketRadius: - title: Radio de bolsillo - description: La cantidad por la cual se redondea el bolsillo -chestPocketHeight: - title: Altura del bolsillo pecho - description: Altura del bolsillo del pecho -beltWidth: - title: Ancho del cinturón - description: Ancho del cinturón -buttonSpacingHorizontal: - title: Espaciado horizontal de los botones - description: El espaciado horizontal de los botones, también determina la superposición del cierre frontal diff --git a/packages/i18n/src/locales/es/options/cathrin.yml b/packages/i18n/src/locales/es/options/cathrin.yml deleted file mode 100644 index c99658d4392..00000000000 --- a/packages/i18n/src/locales/es/options/cathrin.yml +++ /dev/null @@ -1,28 +0,0 @@ ---- -panels: - title: Número de paneles - description: La cantidad de paneles a trazar. Más paneles permiten un mejor ajuste para cuerpos con más curvas. - options: - '11': 11 paneles - '13': 13 paneles -waistReduction: - title: Reducción de cintura - description: La cantidad en la que quieres que el corset reduzca la cintura. -backOpening: - title: Abertura de la espalda - description: Abertura en el centro del cierre de la espalda. -backRise: - title: Elevación de la espalda - description: Cantidad en que los paneles traseros se elevan sobre el centro de la espalda -backDrop: - title: Caída de la espalda - description: En qué medida los paneles posteriores se extienden bajo la cadera. Valores negativos los elevan sobre ella. -frontRise: - title: Elevación frontal - description: 'Cuánto se eleva el panel frontal entre tus pechos. Valores negativos lo bajan.' -frontDrop: - title: Caída frontal - description: Cuánto los paneles frontales caen bajo la cadera en el centro por delate. -hipRise: - title: Elevación de la cadera - description: Cuánto se elevan los paneles laterales sobre tu cadera. diff --git a/packages/i18n/src/locales/es/options/charlie.yml b/packages/i18n/src/locales/es/options/charlie.yml deleted file mode 100644 index ca8533c4f20..00000000000 --- a/packages/i18n/src/locales/es/options/charlie.yml +++ /dev/null @@ -1,52 +0,0 @@ ---- -backPocketHorizontalPlacement: - title: Colocación horizontal del bolsillo trasero - description: Controla la posición horizontal del bolsillo trasero -backPocketVerticalPlacement: - title: Colocación vertical del bolsillo trasero - description: Controla la posición vertical del bolsillo trasero -backPocketWidth: - title: Ancho del bolsillo trasero - description: Controla el ancho del bolsillo trasero -backPocketDepth: - title: Profundidad del bolsillo trasero - description: Controla la profundidad del bolsillo trasero -backPocketFacing: - title: Back pocket facing - description: Controls whether or not to include facing on the back pockets -frontPocketSlantDepth: - title: Profundidad delantera de bolsillo - description: Controla la profundidad de la capa delantera del bolsillo -frontPocketSlantWidth: - title: Anchura del bolsillo delantero - description: Controla el ancho de la franja del bolsillo (delante) -frontPocketSlantRound: - title: Pócket delantero slant round - description: Controla qué tan lejos del final del esclavizado empezamos a redondear hacia el exterior -frontPocketSlantBend: - title: Pócket delantero inclinado - description: Controla el radio por el cual redondeamos el bolsillo hacia el exterior -frontPocketWidth: - title: Ancho bolsillo frontal - description: Controla el ancho de la bolsa de bolsillo frontal -frontPocketDepth: - title: Profundidad de bolsillo frontal - description: Controla la profundidad de la bolsa de bolsillo frontal -frontPocketFacing: - title: Pócket frontal - description: Controla hasta qué punto la cara del bolsillo se extiende a la bolsa de bolsillo -beltLoops: - title: Bucles de cinturón - description: Controla la cantidad de bucles de cinta -flyCurve: - title: Curva de vuelo - description: Controla la curvatura de la mosca J-costura -flyLength: - title: Longitud del vuelo - description: Controla la longitud de la mosca -flyWidth: - title: Fly width - description: Controla hasta qué punto la costura J del desplazamiento del borde de la mosca -waistbandCurve: - title: Curva de Waistband - description: Controla lo curvada que es la banda de cintura. diff --git a/packages/i18n/src/locales/es/options/cornelius.yml b/packages/i18n/src/locales/es/options/cornelius.yml deleted file mode 100644 index 60f41f340d2..00000000000 --- a/packages/i18n/src/locales/es/options/cornelius.yml +++ /dev/null @@ -1,26 +0,0 @@ ---- -fullness: - title: Cumplimiento - description: Controla la integridad de los breeches -waistbandBelowWaist: - title: Banda inferior - description: Porcentaje para mover la cintura debajo de la cintura actual -waistReduction: - title: Reducción de cintura - description: Porcentaje para reducir la cintura -cuffWidth: - title: Cuff width - description: Ancho del corte de la pierna -cuffStyle: - title: Estilo del puño - description: Estilo del corte de la pierna -bandBelowKnee: - title: Corta debajo de la rodilla - description: Controla la distancia del corte desde la rodilla -kneeToBelow: - title: Longitud del puño - description: Controla la rigidez del corte en comparación con la rodilla -ventLength: - title: Longitud del ventilador - description: Controla la longitud del ventilador entre la rodilla y el corte - diff --git a/packages/i18n/src/locales/es/options/diana.yml b/packages/i18n/src/locales/es/options/diana.yml deleted file mode 100644 index c6d1eeaf3b0..00000000000 --- a/packages/i18n/src/locales/es/options/diana.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- -shoulderSeamLength: - title: Longitud de la costura de hombro - description: Controla la longitud de la costura de hombro -drapeAngle: - title: Ángulo del drapeado - description: Controla la cantidad de drapeado - diff --git a/packages/i18n/src/locales/es/options/florence.yml b/packages/i18n/src/locales/es/options/florence.yml deleted file mode 100644 index 80fecd0c3d3..00000000000 --- a/packages/i18n/src/locales/es/options/florence.yml +++ /dev/null @@ -1,10 +0,0 @@ ---- -height: - title: Altura - description: Controla la altura de la mascarilla -length: - title: Longitud - description: Controla la longitud de la mascarilla -curve: - title: Curva - description: Controla la curvatura del borde superior de la mascarilla diff --git a/packages/i18n/src/locales/es/options/florent.yml b/packages/i18n/src/locales/es/options/florent.yml deleted file mode 100644 index 5403f141c42..00000000000 --- a/packages/i18n/src/locales/es/options/florent.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -headEase: - title: Holgura de cabeza - description: La cantidad de holgura alrededor de la cabeza diff --git a/packages/i18n/src/locales/es/options/hi.yml b/packages/i18n/src/locales/es/options/hi.yml deleted file mode 100644 index 8b612086158..00000000000 --- a/packages/i18n/src/locales/es/options/hi.yml +++ /dev/null @@ -1,12 +0,0 @@ -hungry: - title: Hambre - description: Cambios en la forma de la boca para expresar que Hi tiene hambre -nosePointiness: - title: Agudeza de la nariz - description: Controla cómo de puntiaguda es la nariz de Hi -aggressive: - title: Agresividad - description: Ponle o no dientes puntiagudos a Hi -size: - title: Tamaño - description: Los tiburones vienen en todos los tamaños, y Hi también diff --git a/packages/i18n/src/locales/es/options/holmes.yml b/packages/i18n/src/locales/es/options/holmes.yml deleted file mode 100644 index 77b8643dbdd..00000000000 --- a/packages/i18n/src/locales/es/options/holmes.yml +++ /dev/null @@ -1,28 +0,0 @@ ---- -headEase: - title: Holgura de cabeza - description: La cantidad de facilidad alrededor de tu cabeza. -lengthRatio: - title: Ratio de longitud - description: Controls the length of the crown and ear flaps -gores: - title: Número de paneles - description: The number of gores used to construct the crown -visorAngle: - title: Visor angle - description: The arc angle used to draft the inner curve of the visor -visorWidth: - title: Visor width - description: Controls the width of the visor -earLength: - title: Ear flap length - description: Controls the length of the ear flaps independently from the crown pieces -earWidth: - title: Ear flap width - description: Controls the width of the ear flaps -buttonhole: - title: Buttonhole guide - description: Adds a buttonhole to the ear flap to help you draft the buttonhole ear flap variant -visorLength: - title: Visor length - description: Controls the length of the visor diff --git a/packages/i18n/src/locales/es/options/hortensia.yml b/packages/i18n/src/locales/es/options/hortensia.yml deleted file mode 100644 index 4cdfc869b6e..00000000000 --- a/packages/i18n/src/locales/es/options/hortensia.yml +++ /dev/null @@ -1,13 +0,0 @@ ---- -size: - title: Tamaño - description: Controla el tamaño total del bolso -zipperSize: - title: Tamaño Zipper - description: Qué tamaño de zipper usar -strapLength: - title: Longitud del Strp - description: Controla la longitud de la correa -handleWidth: - title: Anchura del Manejo - description: Controla el ancho del asa diff --git a/packages/i18n/src/locales/es/options/huey.yml b/packages/i18n/src/locales/es/options/huey.yml deleted file mode 100644 index e32d5df6172..00000000000 --- a/packages/i18n/src/locales/es/options/huey.yml +++ /dev/null @@ -1,22 +0,0 @@ ---- -pocket: - title: Bolsillo - description: Si se añade un bolsillo delantero o no -pocketHeight: - title: Altura de bolsillo - description: Controla la altura del bolsillo -hoodHeight: - title: Altura de capucha - description: Controla la altura del capucha -hoodCutback: - title: Recorta capucha - description: Controla cómo abrir el capó se recorta -hoodClosure: - title: Cierre de capucha - description: Controla la parte del capó que forma parte del cierre frontal -hoodDepth: - title: Profundidad de capucha - description: Controla la profundidad del capucha -hoodAngle: - title: Angulo de capucha - description: Controla el ángulo en el que la capucha es unida diff --git a/packages/i18n/src/locales/es/options/hugo.yml b/packages/i18n/src/locales/es/options/hugo.yml deleted file mode 100644 index 26398e98551..00000000000 --- a/packages/i18n/src/locales/es/options/hugo.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -hipsEase: - title: Holgura de cadera - description: La cantidad de holgura en la cadera. diff --git a/packages/i18n/src/locales/es/options/index.js b/packages/i18n/src/locales/es/options/index.js deleted file mode 100644 index 38731b05a6f..00000000000 --- a/packages/i18n/src/locales/es/options/index.js +++ /dev/null @@ -1,127 +0,0 @@ -import florence from './florence.yml' -import brian from './brian.yml' -import bella from './bella.yml' -import breanna from './breanna.yml' -import diana from './diana.yml' -import aaron from './aaron.yml' -import simon from './simon.yml' -import simone from './simone.yml' -import sven from './sven.yml' -import wahid from './wahid.yml' -import bent from './bent.yml' -import bruce from './bruce.yml' -import cathrin from './cathrin.yml' -import holmes from './holmes.yml' -import huey from './huey.yml' -import hugo from './hugo.yml' -import tamiko from './tamiko.yml' -import teagan from './teagan.yml' -import trayvon from './trayvon.yml' -import jaeger from './jaeger.yml' -import carlton from './carlton.yml' -import carlita from './carlita.yml' -import benjamin from './benjamin.yml' -import florent from './florent.yml' -import theo from './theo.yml' -import sandy from './sandy.yml' -import shin from './shin.yml' -import penelope from './penelope.yml' -import waralee from './waralee.yml' -import titan from './titan.yml' -import paco from './paco.yml' -import albert from './albert.yml' -import hortensia from './hortensia.yml' -import cornelius from './cornelius.yml' -import charlie from './charlie.yml' -import ursula from './ursula.yml' -import lunetius from './lunetius.yml' -import tiberius from './tiberius.yml' -import walburga from './walburga.yml' -import bee from './bee.yml' -import hi from 'hi.yml' -import unice from 'unice.yml' -import lucy from 'lucy.yml' -import bob from 'bob.yml' -import noble from 'noble.yml' -import octoplushy from 'octoplushy.yml' -import { options as optionList } from '@freesewing/pattern-info' -import shared from '../../../shared-options.yml' - -let patterns = { - florence, - bella, - brian, - breanna, - diana, - aaron, - simon, - simone, - sven, - wahid, - bent, - bruce, - cathrin, - huey, - hugo, - tamiko, - trayvon, - jaeger, - carlton, - carlita, - benjamin, - florent, - theo, - sandy, - shin, - penelope, - waralee, - holmes, - titan, - paco, - teagan, - albert, - hortensia, - cornelius, - charlie, - ursula, - yuri: false, - lunetius, - tiberius, - walburga, - bee, - hi, - unice, - lucy, - bob, - noble, - octoplushy, -} - -let options = {} -for (let pattern in patterns) { - options[pattern] = {} - if (typeof optionList[pattern] === 'undefined') - throw new Error('pattern ' + pattern + ' has no option list') - for (let option of optionList[pattern]) { - let value = patterns[pattern][option] - if (typeof value === 'object') options[pattern][option] = value - else { - if (typeof value === 'undefined') { - if (shared[pattern]) { - if (shared[pattern].dflt && typeof patterns[shared[pattern].dflt][option] === 'object') { - options[pattern][option] = patterns[shared[pattern].dflt][option] - } else if ( - typeof shared[pattern].other !== 'undefined' && - typeof shared[pattern].other[option] === 'string' - ) { - options[pattern][option] = patterns[shared[pattern].other[option]][option] - } else { - throw new Error(`No option translation found for ${option} in ${pattern}`) - } - } - } - } - } -} - -export default options diff --git a/packages/i18n/src/locales/es/options/jaeger.yml b/packages/i18n/src/locales/es/options/jaeger.yml deleted file mode 100644 index 48e7f77a05a..00000000000 --- a/packages/i18n/src/locales/es/options/jaeger.yml +++ /dev/null @@ -1,112 +0,0 @@ ---- -centerBackDart: - title: Pinza en el centro de la espalda - description: Dardos en el centro de la parte trasera del cuello para acomodar una espalda redondeada -sleeveVentLength: - title: Longitud de la vista de la manga - description: Longitud de la vista de la manga -sleeveVentWidth: - title: Ancho de la vista de la manga - description: Ancho de la vista de la manga -chestShaping: - title: Forma del pecho - description: Cantidad de configuración a tener en cuenta para la curva del cofre -frontDartPlacement: - title: Colocación de la pinza delantera - description: Ubicación de las pinzas delanteras -frontOverlap: - title: Superposición frontal - description: Cuánto se extiende la tela más allá de los botones de cierre -sideFrontPlacement: - title: Colocación lateral / frontal - description: La ubicación del borde lateral / frontal -chestPocketDepth: - title: Profundidad del bolsillo del pecho - description: La profundidad del bolsillo del pecho -chestPocketWidth: - title: Ancho bolsillo del pecho - description: El ancho del bolsillo del pecho -chestPocketPlacement: - title: Colocación de bolsillo en el pecho - description: La ubicación del bolsillo del pecho -chestPocketAngle: - title: Ángulo de bolsillo del pecho - description: El ángulo bajo el cual se coloca el bolsillo del pecho -chestPocketWeltSize: - title: Talla de bolsillo de bolsillo - description: El tamaño de la bolsa de pecho -frontPocketPlacement: - title: Colocación frontal del bolsillo - description: Colocación frontal del bolsillo -frontPocketWidth: - title: Ancho bolsillo frontal - description: El ancho del bolsillo delantero -frontPocketDepth: - title: Profundidad de bolsillo frontal - description: La profundidad del bolsillo frontal -frontPocketRadius: - title: Radio de bolsillo delantero - description: El radio por el cual se redondea el bolsillo delantero -innerPocketPlacement: - title: Colocación del bolsillo interior - description: La ubicación del bolsillo interior -innerPocketWidth: - title: Ancho bolsillo interior - description: El ancho del bolsillo interior -innerPocketDepth: - title: Profundidad del bolsillo interior - description: La profundidad del bolsillo interior -innerPocketWeltHeight: - title: Altura interior de los bolsillos - description: La altura de la bolsa interior -pocketFoldover: - title: Bolsillo plegable - description: La cantidad por la cual el tejido principal es la carpeta sobre el bolsillo -centerFrontHemDrop: - title: Dobladillo delantero central - description: La cantidad por la que se baja el dobladillo hacia el centro delantero -backVent: - title: Abertura trasera - description: La cantidad de respiraderos traseros -backVentLength: - title: Longitud de la abertura trasera - description: La longitud de la (s) ventilación (es) posterior (es) -buttonLength: - title: Longitud del botón - description: La distancia sobre la cual los botones se extienden -frontCutawayAngle: - title: Ángulo de corte frontal - description: El ángulo bajo el cual se corta el frente hacia el dobladillo -frontCutawayStart: - title: Estrella de corte frontal - description: La ubicación en la que el frente comienza a abrirse hacia el dobladillo. -frontCutawayEnd: - title: Extremo frontal cortado - description: Aumentar esto hará que el corte frontal permanezca más cerca del centro delantero -collarSpread: - title: Cuello extendido - description: La extensión del collar controla cómo el collar cubre los hombros -lapelStart: - title: Inicio de la solapa - description: Lugar donde el frente central pasa por las solapas -lapelReduction: - title: Reducción de la solapa - description: Cuánto gira hacia adentro la punta de las solapas -collarHeight: - title: Altura del collar - description: Altura del cuello -collarNotchDepth: - title: Profundidad de la muesca del cuello - description: Profundidad de la muesca del cuello -collarNotchAngle: - title: Ángulo de la muesca del cuello - description: Ángulo de la muesca del cuello -collarNotchReturn: - title: Cuello muesca retorno - description: Cuánto retorna el cuello de la muesca, en comparación con la solapa -rollLineCollarHeight: - title: Altura de cuello de línea de rodadura - description: '¿Qué tanto la línea de balanceo abraza el cuello?' -hemRadius: - title: Radio del dobladillo - description: La cantidad por la cual se redondea el dobladillo diff --git a/packages/i18n/src/locales/es/options/lucy.yml b/packages/i18n/src/locales/es/options/lucy.yml deleted file mode 100644 index d879b1cfc8d..00000000000 --- a/packages/i18n/src/locales/es/options/lucy.yml +++ /dev/null @@ -1,10 +0,0 @@ -width: - title: Anchura - description: Width of the pocket -length: - title: Longitud - description: Length (depth) of the pocket -edge: - title: Taper - description: Controls how much the pocket opening tapers inwards - diff --git a/packages/i18n/src/locales/es/options/lunetius.yml b/packages/i18n/src/locales/es/options/lunetius.yml deleted file mode 100644 index fa474274b14..00000000000 --- a/packages/i18n/src/locales/es/options/lunetius.yml +++ /dev/null @@ -1,16 +0,0 @@ ---- -lengthRatio: - title: Ratio de longitud - description: Controls the length of the garment -widthRatio: - title: Width ratio - description: Controls the width of the garment -length: - title: Longitud - description: Choose from the different length styles - options: - toKnee: On the knee - toBelowKnee: Below the knee - toHips: On the hips - toUpperLeg: On the thigh - toFloor: To the floor diff --git a/packages/i18n/src/locales/es/options/noble.yml b/packages/i18n/src/locales/es/options/noble.yml deleted file mode 100644 index 798e7602dc8..00000000000 --- a/packages/i18n/src/locales/es/options/noble.yml +++ /dev/null @@ -1,61 +0,0 @@ -dartPosition: - description: Controls whether to split at the shoulder or armhole - title: Posición de la pinza -chestEase: - description: Controls the amount of ease at the chest - title: Holgura de pecho -waistEase: - description: Controls the amount of ease at the waist - title: Holgura de cintura -bustSpanEase: - description: Controls the amount of ease along the bust span - title: Holgura alrededor del busto -backDartHeight: - description: Altura del dart trasero - title: Controla la altura del dart posterior -waistDartLength: - description: Controla la longitud del dardo de la cintura - title: Longitud del dart de Waist -shoulderDartPosition: - description: Controls the position of the shoulder dart - title: Shoulder dart position -upperDartLength: - description: Controls the length of the upper dart - title: Upper dart length -armholeDartPosition: - description: Controls the position of the armhole dart - title: Armhole dart position -armholeDepth: - description: Controla la profundidad del orificio - title: Profundidad del orificio -backArmholeSlant: - description: Controls the slant of the armhole at the back - title: Slant del orificio trasero -backArmholeCurvature: - description: Controls how deep the armhole is scooped out at the back - title: Curvatura del orificio trasero -frontArmholeCurvature: - title: Front armhole curvature - description: Controls how deep the armhole is scooped out at the front bottom -frontArmholePitchDepth: - description: Controls how deep the armhole cuts into the front - title: Profundidad del tono del orificio delantero -backArmholePitchDepth: - description: Controls how deep the armhole cuts into the back - title: Profundidad del tono del orificio trasero -backNeckCutout: - description: Controls how deep the neck is cutout in the back - title: Corte trasero del cuello -backHemSlope: - description: Constrols the slope of the back hem - title: Pendiente trasera -frontShoulderWidth: - description: Controls how much width is added to the shoulder in the front - title: Ancho del hombro frontal -highBustWidth: - description: Controls the width of the high bust - title: Ancho de bust alto -shoulderToShoulderEase: - description: Controls the amount of ease along the shoulder to shoulder measurement - title: Shoulder to shoulder ease - diff --git a/packages/i18n/src/locales/es/options/octoplushy.yml b/packages/i18n/src/locales/es/options/octoplushy.yml deleted file mode 100644 index 1f8ff71e7c1..00000000000 --- a/packages/i18n/src/locales/es/options/octoplushy.yml +++ /dev/null @@ -1,28 +0,0 @@ -size: - title: Tamaño - description: Controls the overall size -type: - title: Tipo - description: Allows you to choose one of the variants of this design -armWidth: - title: Arm width - description: Controls the width of the arms -armLength: - title: Arm length - description: Controls the length of the arms -neckWidth: - title: Neck width - description: Determines the width at the neck -armTaper: - title: Arm tapering - description: Controls the amount by which the arms taper -bottomTopArmRatio: - title: Bottom/Top arm ratio - description: "FIXME: No idea what this does" -bottomArmReduction: - title: Bottom arm reduction - description: "FIXME: No idea what this does" -bottomArmReductionPlushy: - title: Bottom arm reduction (plushy) - description: "FIXME: No idea what this does" - diff --git a/packages/i18n/src/locales/es/options/paco.yml b/packages/i18n/src/locales/es/options/paco.yml deleted file mode 100644 index e3748dcee12..00000000000 --- a/packages/i18n/src/locales/es/options/paco.yml +++ /dev/null @@ -1,16 +0,0 @@ ---- -heelEase: - title: Heel ease - description: La cantidad de facilidad en tu talón (cuando pisas la pierna) -frontPockets: - title: Pockets delanteros - description: Añadir o no bolsillos frontales en la costura lateral -backPockets: - title: Paquetes de retroceso - description: Añadir o no bolsillos de soldadura a la espalda -elasticatedHem: - title: Hilo Elasticado - description: Si desea o no un llavero elasticado -ankleElastic: - title: Anchura elástica Ancla/Hem - description: Ancho de elástico (opcional) en el ancla/hem diff --git a/packages/i18n/src/locales/es/options/penelope.yml b/packages/i18n/src/locales/es/options/penelope.yml deleted file mode 100644 index 13b6e382ac3..00000000000 --- a/packages/i18n/src/locales/es/options/penelope.yml +++ /dev/null @@ -1,46 +0,0 @@ ---- -backDartDepthFactor: - title: Factor de la pinza trasera - description: Hasta dónde llega la pinza trasera desde la cintura. Es proporción de la medida cintura natural a asiento. -backVent: - title: Ventilación posterior - description: Añade una avertura en la parte trasera de la falda. -backVentLength: - title: Longitud de ventilación posterior - description: Longitud de la abertura trasera como porcentaje de la longitud de la falda. -dartToSideSeamFactor: - title: Factor pinza a costura lateral - description: Porcentaje de cuánta de la reducción de cadera a cintura se toma de las pinzas con respecto a las costuras laterales. -frontDartDepthFactor: - title: Factor de la pinza delantera - description: Hasta dónde llega la pinza delantera desde la cintura. Es proporción de la medida cintura natural a asiento. -hem: - title: Anchura del dobladillo - description: El tamaño del dobladillo. Medida en valores absolutos. -hemBonus: - title: Bonus del dobladillo - description: Esta opción reduce la circunferencia de la falda en el dobladillo. Porcentaje de la medida de asiento. -lengthBonus: - title: Extra de longitud - description: Esto ajusta la longitud de la falda. Porcentaje de la medida de cintura natural a rodilla. -nrOfDarts: - title: Número de pinzas - description: El número de pinzas usadas en el patrón. El máximo es 2. Esta opción puede ser reducida por el patrón si los cálculos crean pinzas demasiado pequeñas. -seatEase: - title: Facilidad de asiento - description: La holgura al nivel del asiento. -waistBand: - title: Cinturilla - description: Añade una cinturilla al patrón. -waistBandWidth: - title: Anchura de la cinturilla - description: La anchura de la cinturilla. -waistEase: - title: Holgura de cintura - description: La holgura al nivel de la cintura. -zipperLocation: - title: Ubicación de la cremallera - description: La ubicación de la cremallera. - options: - backSeam: En la costura trasera - sideSeam: En la costura lateral diff --git a/packages/i18n/src/locales/es/options/sandy.yml b/packages/i18n/src/locales/es/options/sandy.yml deleted file mode 100644 index e288ce34219..00000000000 --- a/packages/i18n/src/locales/es/options/sandy.yml +++ /dev/null @@ -1,26 +0,0 @@ ---- -waistbandWidth: - title: Anchura de la cinturilla - description: Controla la anchura de la cinturilla. -waistbandPosition: - title: Posición de la cinturilla - description: Controla la posición de la cinturilla. -waistbandShape: - title: Forma de la cinturilla - description: Si quieres una cinturilla recta o curvada. -circleRatio: - title: Porcentaje de círculo - description: El porcentaje de círculo que quieres que tenga la falda. -waistbandOverlap: - title: Superposición de la cinturilla - description: La cantidad en la que los extremos de la cinturilla se superponen. -gathering: - title: Fruncido - description: El porcentaje por el que la parte superior de la falda es más largo que la parte inferior de la cinturilla. -seamlessFullCircle: - title: Círculo completo sin costura - description: Permite una falda de círculo completo sin costuras. -hemWidth: - title: Hem width - description: Anchura del dobladillo - diff --git a/packages/i18n/src/locales/es/options/shin.yml b/packages/i18n/src/locales/es/options/shin.yml deleted file mode 100644 index 385eb0e0b1d..00000000000 --- a/packages/i18n/src/locales/es/options/shin.yml +++ /dev/null @@ -1,7 +0,0 @@ ---- -legReduction: - title: Reducción de pierna - description: Reduce la apertura de la pierna para prevenir que se abra -elasticWidth: - title: Elastic width - description: Width of the elastic at the waist diff --git a/packages/i18n/src/locales/es/options/simon.yml b/packages/i18n/src/locales/es/options/simon.yml deleted file mode 100644 index 443ec6e7996..00000000000 --- a/packages/i18n/src/locales/es/options/simon.yml +++ /dev/null @@ -1,136 +0,0 @@ ---- -backDarts: - title: Pinzas traseras - description: Incluir o no pinzas traseras - options: - auto: Automático - always: Siempre - never: Nunca -backDartShaping: - title: Forma de las pinzas traseras - description: La cantidad de forma que añaden las pinzas traseras -barrelCuffNarrowButton: - title: Botón de ajuste del puño - description: Incluír o no un botón extra para ajustar más los puños. Esta opción sólo es relevante para puños de barril. -boxPleat: - title: Pliegue en caja - description: Si incluir un pliegue en caja en la parte trasera o no -boxPleatWidth: - title: Anchura del pliegue en caja - description: El ancho total del pliegue en caja -boxPleatFold: - title: Doblado del pliegue en caja - description: La cantidad por la que el piegue en caja se dobla hacia adentro -buttonPlacketStyle: - title: Estilo de la vista de los botones - description: Estilo de la visto de los botones - options: - classic: Estilo clásico - seamless: Estilo francés (sin costuras) -buttonPlacketWidth: - title: Anchura de la vista de los botones - description: Anchura de la vista de los botones -buttonFreeLength: - title: Longitud sin botones - description: Qué longitud se deja entre el último botón y el bajo. -buttonholePlacketFoldWidth: - title: Anchura del pliegue de la vista de los ojales - description: Anchura del pliegue de la vista de los ojales. -buttonholePlacketStyle: - title: Estilo de la vista de los ojales - description: Estilo de la vista de los ojales. - options: - classic: Estilo clásico - seamless: Estilo francés (sin costuras) -buttonholePlacketWidth: - title: Anchura de la vista de los ojales - description: Ancho de la placa del agujero del botón. -buttons: - title: Número de botones - description: Número de botones delanteros -collarAngle: - title: Ángulo del pico del cuello - description: El ángulo de los picos del cuello -collarBend: - title: Inclinación del cuello - description: La inclinación del cuello hacia atrás. -collarFlare: - title: Forma de los picos del cuello - description: Cuánto más ancho es el cuello en los picos con respecto al centro. -collarGap: - title: Espaciado del cuello - description: La separación entre los dos extremos del cuello -collarRoll: - title: Vuelta del cuello - description: La cantidad en la que el cuello es más alto que la base del cuello en el centro por detrás. -collarStandBend: - title: Doblado de la base del cuello - description: La cantidad en la que el cuello superior es mayor que el inferior. -collarStandCurve: - title: Curvatura de la base del cuello - description: La curvatura de la base del cuello. -collarStandWidth: - title: Anchura de la base del cuello - description: Ancho del soporte de cuello. -cuffButtonRows: - title: Hileras de botones en los puños - description: Trazar una o dos hileras de botones en los puños. Esta opción es relevante sólo para puños de barril. - options: - '1': Hilera de botones sencilla - '2': Hilera de botones doble -cuffDrape: - title: Plisado del puño - description: La cantidad en la que la manga es más ancha que el puño en el lugar donde se unen. -cuffLength: - title: Longitud del puño - description: La longitud de los puños. -cuffStyle: - title: Estilo del puño - description: El estilo de los puños. - options: - roundedBarrelCuff: Puño de barril redondeado - angledBarrelCuff: Puño de barril en ángulo - straightBarrelCuff: Puño de barril recto - roundedFrenchCuff: Puño francés redondeado - angledFrenchCuff: Puño francés en ángulo - straightFrenchCuff: Puño francés recto -extraTopButton: - title: Botón extra superior - description: Incluír o no un botón extra en el cierre frontal. -ffsa: - title: Costura plana permitida - description: La cantidad de permisos de costura en costuras taladas con flete como una proporción de la franquicia regular de costura -hemCurve: - title: Curva del dobladillo - description: La altura de la curva en un dobladillo redondeado. -hemStyle: - title: Estilo del dobladillo - description: El estilo del dobladillo. - options: - straight: Recto - baseball: Baseball - slashed: Recortado -roundBack: - title: Retroceso - description: Para encajar un redondo(er) hacia atrás, esto añade longitud al centro de atrás (en el yo) que se atenúa hacia los lados. -seperateButtonholePlacket: - title: Tapeta de ojal separada - description: Construye una placa separada del botón. -seperateButtonPlacket: - title: Tapeta de botones separada - description: Borra una placket de botones separada -sleevePlacketLength: - title: Longitud de la vista de la manga - description: La longitud de la vista de la manga. -sleevePlacketWidth: - title: Anchura de la vista de la manga - description: La anchura de la vista de la manga. -splitYoke: - title: Canesú partido - description: Si se traza el canesú normal o partido. -waistEase: - title: Holgura de cintura - description: La cantidad de holgura en la cintura. -yokeHeight: - title: Altura del yugo - description: Controla la altura del yugo diff --git a/packages/i18n/src/locales/es/options/simone.yml b/packages/i18n/src/locales/es/options/simone.yml deleted file mode 100644 index 723ae578ce9..00000000000 --- a/packages/i18n/src/locales/es/options/simone.yml +++ /dev/null @@ -1,23 +0,0 @@ ---- -bustAlignedButtons: - title: Bust-aligned buttons - description: Optional button spacing strategies to ensure a button at the bustline - options: - even: Even spacing - split: Split spacing - disabled: Disabled -bustDartAngle: - title: Ángulo de dardos de polvo - description: Controla el ángulo por el cual el (lado) dardos de polvo tiene pendiente descendente -bustDartLength: - title: Longitud del dart del polvo - description: Controla cómo se acerca el polvo al punto de busto -contour: - title: Contorno - description: Controla cómo se elimina de nuevo el espacio extra para los senos debajo del cofre -frontDarts: - title: Dardos delanteros - description: Incluya o no las artes frontales -frontDartLength: - title: Longitud del dart frontal - description: Controla cómo se acerca el dardo frontal al punto de polvo diff --git a/packages/i18n/src/locales/es/options/sven.yml b/packages/i18n/src/locales/es/options/sven.yml deleted file mode 100644 index 1e7e054b1ad..00000000000 --- a/packages/i18n/src/locales/es/options/sven.yml +++ /dev/null @@ -1,13 +0,0 @@ ---- -hipsEase: - title: Holgura de cadera - description: Controla la cantidad de holgura en las caderas (en la parte de abajo de la sudadera) -ribbing: - title: Tejido acanalado - description: Ya sea para terminar el dobladillo y los puños con tejido acanalado. -ribbingHeight: - title: Altura de tejido acanalado - description: La altura del tejido acanalado en los puños y el dobladillo. -ribbingStretch: - title: Extensión de tejido acanalado - description: La cantidad de holgura negativa de tejido acanalado. diff --git a/packages/i18n/src/locales/es/options/tamiko.yml b/packages/i18n/src/locales/es/options/tamiko.yml deleted file mode 100644 index 67b380df7d8..00000000000 --- a/packages/i18n/src/locales/es/options/tamiko.yml +++ /dev/null @@ -1,10 +0,0 @@ ---- -flare: - title: Ensanchamiento - description: La cantidad por la cual la prenda se ensancha desde tu pecho hacia abajo. -shoulderseamLength: - title: Longitud de la costura de hombro - description: La longitud de la costura del hombro, como un factor de la medida de su hombro a hombro. -shoulderSlope: - title: Inclinación de hombro - description: Controla el ángulo de las costuras del hombro diff --git a/packages/i18n/src/locales/es/options/teagan.yml b/packages/i18n/src/locales/es/options/teagan.yml deleted file mode 100644 index 372566aed31..00000000000 --- a/packages/i18n/src/locales/es/options/teagan.yml +++ /dev/null @@ -1,19 +0,0 @@ ---- -draftForHighBust: - title: Borrador para alta caída - description: Borra el patrón para la medición alta del polvo (si está disponible) en lugar del cofre (completo). Esto dará lugar a una prenda más ajustada para las personas con senos. -sleeveEase: - title: Manga fácil - description: Cantidad de facilidad de sus mangas -sleeveLength: - title: Longitud de la manga - description: Controla la longitud de las mangas -necklineBend: - title: Curvatura neckline - description: Controla la curvatura del cuello. -necklineDepth: - title: Profundidad del cuello - description: Controla la profundidad de la abertura del cuello. -necklineWidth: - title: Neckline width - description: Controla el ancho de la abertura del cuello. diff --git a/packages/i18n/src/locales/es/options/theo.yml b/packages/i18n/src/locales/es/options/theo.yml deleted file mode 100644 index cdd0573f805..00000000000 --- a/packages/i18n/src/locales/es/options/theo.yml +++ /dev/null @@ -1,7 +0,0 @@ ---- -wedge: - title: Cuña - description: Controla la longitud de la costura cruzada -legWidth: - title: Ancho de la pierna - description: Controla la anchura de la pernera diff --git a/packages/i18n/src/locales/es/options/tiberius.yml b/packages/i18n/src/locales/es/options/tiberius.yml deleted file mode 100644 index 838da824733..00000000000 --- a/packages/i18n/src/locales/es/options/tiberius.yml +++ /dev/null @@ -1,39 +0,0 @@ ---- -headRatio: - title: Head ratio - description: Controls the size of the head opening -armholeDrop: - title: Caída de la sisa - description: Controla la profundidad del orificio -lengthBonus: - title: Bonus de longitud - description: Allows variation of the length of the garment -widthBonus: - title: Width bonus - description: Allows variation of the width of the garment -clavi: - title: Clavi - description: Whether or not to include guides for clavi -clavusLocation: - title: Clavus location - description: Controls the location of the clavi -clavusWidth: - title: Clavus width - description: Controls the width of the clavi -length: - title: Longitud - description: Controls the length of the garment - options: - toKnee: On the knee - toMidLeg: On the thigh - toFloor: To the floor -width: - title: Anchura - description: Controls the width of the garment - options: - toElbow: To the elbow - toShoulder: To the shoulder - toMidArm: To the upper arm -forceWidth: - title: Force width - description: Apply width settings regardless of constraints diff --git a/packages/i18n/src/locales/es/options/titan.yml b/packages/i18n/src/locales/es/options/titan.yml deleted file mode 100644 index 467aca51291..00000000000 --- a/packages/i18n/src/locales/es/options/titan.yml +++ /dev/null @@ -1,46 +0,0 @@ ---- -kneeEase: - title: Facilidad de rodilla - description: Controla el amout de la facilidad en la rodilla -waistHeight: - title: Altura de la muñeca - description: Controla la altura de la cintura, 100% = altura de la cintura, 0% = altura de la cadera -lengthBonus: - title: Bonus de longitud - description: Controla la longitud de los pantalones -crotchDrop: - title: Gota de cromo - description: Reduce el cromo para un ajuste más relajado -fitKnee: - title: Ajustar la rodilla - description: Se ajusta a las piernas en base a la circunstancia de la rodilla, en lugar de la circunstancia del asiento -legBalance: - title: Saldo de pierna - description: Controla la relación entre el panel frontal y trasero de la pierna -crossSeamCurveStart: - title: Inicio de la curva de costura cruzada - description: Controla hasta qué punto en la costura cruzada empezamos a curvar -crossSeamCurveBend: - title: curva de costura cruzada - description: Controla la curvatura de la costura cruzada -crossSeamCurveAngle: - title: Ángulo de costura cruzada - description: Controla el ángulo de la costura cruzada -crotchSeamCurveStart: - title: Inicio de la curva de costura de cromo - description: Controla hasta qué punto en la costura del cromo empezamos a curva -crotchSeamCurveBend: - title: curva de costura cruda - description: Controla la curvatura de la costura del cromo -crotchSeamCurveAngle: - title: Ángulo de costura cruda - description: Controla el ángulo de la costura del cromo -waistBalance: - title: Balance de Waist - description: Controla la posición horizontal de la cintura relativa al asiento -waistbandWidth: - title: Anchura de la cinturilla - description: El ancho de la cintura -grainlinePosition: - title: Posición en línea - description: Controla la posición horizontal de la pierna relativa al asiento diff --git a/packages/i18n/src/locales/es/options/trayvon.yml b/packages/i18n/src/locales/es/options/trayvon.yml deleted file mode 100644 index e96e2d137dc..00000000000 --- a/packages/i18n/src/locales/es/options/trayvon.yml +++ /dev/null @@ -1,7 +0,0 @@ ---- -tipWidth: - title: Ancho de la punta - description: El ancho de tu corbata en la punta -knotWidth: - title: Ancho de nudo - description: El ancho de tu corbata en el nudo diff --git a/packages/i18n/src/locales/es/options/unice.yml b/packages/i18n/src/locales/es/options/unice.yml deleted file mode 100644 index f91da2e5626..00000000000 --- a/packages/i18n/src/locales/es/options/unice.yml +++ /dev/null @@ -1,13 +0,0 @@ -fabricStretchX: - title: Elasticidad de la tela (horizontal) - description: Ajusta esto para telas más o menos elásticas -fabricStretchY: - title: Elasticidad de la tela (vertical) - description: Ajusta esto para telas más o menos elásticas -adjustStretch: - title: Ajuste por elasticidad - description: En esta opción puedes poner la elasticidad total del tejido tanto en horizontal como en vertical. Cuando se deshabilita, los valores de elasticidad se usan tal cual -useCrossSeam: - title: Usa el tiro completo - description: Cuando se habilita, la altura total de las piezas del patrón combinadas será la misma que la medida del tiro completo menos las elevaciones frontales y traseras. Cuando se deshabilita, la altura total dependerá de la opción del molde medio o pieza de refuerzo. - diff --git a/packages/i18n/src/locales/es/options/ursula.yml b/packages/i18n/src/locales/es/options/ursula.yml deleted file mode 100644 index a6a44df0c6b..00000000000 --- a/packages/i18n/src/locales/es/options/ursula.yml +++ /dev/null @@ -1,34 +0,0 @@ ---- -fabricStretch: - title: estiramiento de tela - description: Ajustar esto para más o menos tela estirada -gussetWidth: - title: Gusset width - description: Controla el ancho del set de ráfaga -gussetLength: - title: Longitud del Gusset - description: Controla la longitud del set de ráfaga -elasticStretch: - title: Estiramiento elástico - description: Ajustar esto para elástico más o menos estirado -rise: - title: Elevación de la cintura - description: Controla la altura de la cintura -legOpening: - title: Apertura de la pierna - description: Controla hasta qué punto se corta la pierna -frontDip: - title: Buceo de cintura frontal - description: Controla cuánto son las curvas de la cintura frontal (revelando más o menos la piel) -backDip: - title: Buceo de cintura trasera - description: Controla cuánto son las curvas de la cintura trasera (revelando más o menos la piel) -taperToGusset: - title: Exposición frontal - description: Controla la cantidad de piel expuesta en la parte frontal -backExposure: - title: Exposición trasera - description: Controla la cantidad de piel expuesta en la espalda - - - diff --git a/packages/i18n/src/locales/es/options/wahid.yml b/packages/i18n/src/locales/es/options/wahid.yml deleted file mode 100644 index 0d545d9ec73..00000000000 --- a/packages/i18n/src/locales/es/options/wahid.yml +++ /dev/null @@ -1,43 +0,0 @@ ---- -backScyeDart: - title: Pinza posterior de la sisa - description: La cantidad a reducir en una pinza en la parte posterior de la sisa. -frontScyeDart: - title: Pinza frontal de la sisa - description: La cantidad a reducir en una pinza en el frente de la sisa. -pocketLocation: - title: Ubicación de bolsillo - description: Determina la colocación del bolsillo -pocketWidth: - title: Anchura de bolsillo - description: La anchura del bolsillo -weltHeight: - title: Altura de verdugón del bolsillo - description: La altura de verdugón del bolsillo. -necklineDrop: - title: Caída del cuello - description: Determina lo bajo que cae la línea de cuello en la parte delantera -frontStyle: - title: Estilo de la apertura del cuello - description: Estilo de apertura del cuello -hemStyle: - title: Estilo del dobladillo - description: Estilo del dobladillo delantero -hemRadius: - title: Radio del dobladillo - description: Radio por el que el dobladillo es redondeado -backInset: - title: Inserción trasera - description: Cuánto de la parte de atrás de la sisa se corta hacia el interior -frontInset: - title: Inserción delantera - description: Cuánto de la parte de delante de la sisa se corta hacia el interior -shoulderInset: - title: Inserción de hombro - description: Cuánto la costura del hombro se recorta hacia el interior en el hombro -neckInset: - title: Inserción de cuello - description: Cuánto de la costura del hombro se corta hacia el interior en el cuello -pocketAngle: - title: Ángulo del bolsillo - description: Ángulo del forro del bolsillo diff --git a/packages/i18n/src/locales/es/options/walburga.yml b/packages/i18n/src/locales/es/options/walburga.yml deleted file mode 100644 index a2c8984f7c1..00000000000 --- a/packages/i18n/src/locales/es/options/walburga.yml +++ /dev/null @@ -1,23 +0,0 @@ ---- -headRatio: - title: Head ratio - description: Controls the size of the head opening -lengthBonus: - title: Bonus de longitud - description: Allows variation of the length of the garment -widthBonus: - title: Width bonus - description: Allows variation of the width of the garment -length: - title: Longitud - description: Controls the length of the garment - options: - toKnee: On the knee - toMidLeg: On the thigh - toFloor: To the floor -neckoRatio: - title: Neck opening shape - description: controls the shape of the neck opening -neckline: - title: Neckline - description: Controls whether or not to draft a neck opening diff --git a/packages/i18n/src/locales/es/options/waralee.yml b/packages/i18n/src/locales/es/options/waralee.yml deleted file mode 100644 index 93aa2ab8a91..00000000000 --- a/packages/i18n/src/locales/es/options/waralee.yml +++ /dev/null @@ -1,44 +0,0 @@ ---- -backPocket: - title: Bolsillo trasero - description: Si se añade un bolsillo trasero o no -frontPocket: - title: Bolsillo delantero - description: Si se añado un bolsillo frontal o no -hemWidth: - title: Hem size - description: Tamaño de la temperatura en la parte inferior de los pantalones -waistbandWidth: - title: Banda de Waist - description: Tamaño de la banda de cintura -waistRaise: - title: Aumento de Waist - description: Cuánto elevar la cintura a partir de la medición de profundidad del asiento, lo que influye en la profundidad del corte de los cojines. -crotchBack: - title: Retroceso - description: El porcentaje de la circunstancia del asiento que el cráneo de la espalda tiene que ocupar. Esto crea más o menos espacio entre la costura lateral y la espalda. -crotchFront: - title: Frente de cruz - description: El porcentaje de la circunstancia del asiento que el cráneo delantero debe ocupar. Esto crea más o menos espacio entre la costura lateral y la parte delantera. -crotchFactorBackHor: - title: Factor Horizontal de espalda - description: Utilizado para mover la curva del cromo en la parte trasera horizontalmente -crotchFactorBackVer: - title: Factor horizontal trasero - description: Utilizado para mover verticalmente la curva de la parte trasera -crotchFactorFrontHor: - title: Factor horizontal frontal de cromo - description: Utilizado para mover la curva del cromo en la parte frontal horizontalmente -crotchFactorFrontVer: - title: Factor vertical delantero de cromo - description: Utilizado para mover la curva del cromo en el frente verticalmente -waistOverlap: - title: Superposición de Waist - description: Esto dicta cuánto quieres que las aletas de las piernas se superpongan a la cintura. Un ajuste de 0 los haría reunirse en la costura lateral y un ajuste de 100 los hace reunirse en la parte delantera/trasera. -legShortening: - title: Acortamiento de la pierna - description: Esto dicta el tiempo que van a ser los pantalones y es un factor de la medición de las costuras. Cuanto más grande sea el valor, más se quitará de la longitud. -backRaise: - title: Ataque trasero - description: Este ajuste levanta la cintura en la espalda. Nuestra cintura no se sienta horizontalmente, sino que está enmarcada en la espalda. Este ajuste le permite levantar esto en la espalda si lo necesita para un buen ajuste. - diff --git a/packages/i18n/src/locales/es/parts.yaml b/packages/i18n/src/locales/es/parts.yaml deleted file mode 100644 index 60b2ad3a3bc..00000000000 --- a/packages/i18n/src/locales/es/parts.yaml +++ /dev/null @@ -1,58 +0,0 @@ ---- -back: Atrás -backBase: Base trasera -backPocketWelt: Ribete del bolsillo trasero -base: Base -bentBack: Trasero Bent -bentBase: Base Bent -bentFront: Frente Bent -bentSleeve: Manga Bent -bentTopSleeve: Manga superior Bent -bentUnderSleeve: Manga debajo Bent -buttonholePlacket: Tapeta de ojal -buttonPlacket: Tapeta de botones -collar: Cuello -collarStand: Soporte de collar -cuff: Cuffnl -fabricTail: Cola de tela -fabricTip: Punta de tela -frontBase: Base delantera -frontFacing: Delantero mirando hacia -front: Frente -frontLeft: Delantero izquierdo -frontLining: Delantero revestimiento -frontRight: Frente derecho -gusset: Gusset -hoodCenter: Centro de la capucha -hood: Capucha -hoodSide: Lado de la capucha -inset: Recuadro -interfacingTail: Cola de entretela -interfacingTip: Punta de entretela -liningTail: Cola de revestimiento -liningTip: Punta de revestimiento -loop: Lazo -panel1: Panel 1 -panel2: Panel 2 -panel3: Panel 3 -panel4: Panel 4 -panel5: Panel 5 -panel6: Panel 6 -panels: Paneles -pocketBag: Bolsa de bolsillo -pocketFacing: Cara de bolsillo -pocketInterfacing: Entretela de bolsillo -pocket: Bolsillo -pocketWelt: Ribete de bolsillo -side: Lado -sleeveBase: Base de la manga -sleevecap: Funda de manga -sleevePlacketOverlap: Top de manga tapeta -sleevePlacketUnderlap: Parte inferior de la tapeta de la manga -sleeve: Manga -topSleeve: Manga superior -top: Arriba -underCollar: Debajo del cuello -underSleeve: Manga debajo -waistband: Pretina -yoke: Yugo diff --git a/packages/i18n/src/locales/es/plugin/index.js b/packages/i18n/src/locales/es/plugin/index.js deleted file mode 100644 index 21533176bec..00000000000 --- a/packages/i18n/src/locales/es/plugin/index.js +++ /dev/null @@ -1,33 +0,0 @@ -import brian from './patterns/brian.yaml' -import aaron from './patterns/aaron.yaml' -import bruce from './patterns/bruce.yaml' -import hugo from './patterns/hugo.yaml' -import simon from './patterns/simon.yaml' -import teagan from './patterns/teagan.yaml' -import cfp from './patterns/cfp.yaml' -import cutonfold from './plugins/cutonfold.yaml' -import grainline from './plugins/grainline.yaml' -import scalebox from './plugins/scalebox.yaml' -import title from './plugins/title.yaml' - -const files = { - brian, - aaron, - bruce, - hugo, - simon, - teagan, - cfp, - cutonfold, - grainline, - scalebox, - title, -} - -const messages = {} - -for (const file in files) { - for (const [key, val] of Object.entries(files[file])) messages[key] = val -} - -export default messages diff --git a/packages/i18n/src/locales/es/plugin/patterns/aaron.yaml b/packages/i18n/src/locales/es/plugin/patterns/aaron.yaml deleted file mode 100644 index 8cd4d101216..00000000000 --- a/packages/i18n/src/locales/es/plugin/patterns/aaron.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -cutOneStripToFinishTheNeckOpening: Corta una tira para terminar la abertura del cuello. -cutTwoStripsToFinishTheArmholes: Corta dos tiras para terminar las sisas. -length: Longitud -width: Anchura diff --git a/packages/i18n/src/locales/es/plugin/patterns/brian.yaml b/packages/i18n/src/locales/es/plugin/patterns/brian.yaml deleted file mode 100644 index c51b385b290..00000000000 --- a/packages/i18n/src/locales/es/plugin/patterns/brian.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -back: Trasero -front: Frente -sleeve: Manga diff --git a/packages/i18n/src/locales/es/plugin/patterns/bruce.yaml b/packages/i18n/src/locales/es/plugin/patterns/bruce.yaml deleted file mode 100644 index 0069802f70d..00000000000 --- a/packages/i18n/src/locales/es/plugin/patterns/bruce.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -inset: Encarte -side: Lado diff --git a/packages/i18n/src/locales/es/plugin/patterns/cfp.yaml b/packages/i18n/src/locales/es/plugin/patterns/cfp.yaml deleted file mode 100644 index c3e0e11e536..00000000000 --- a/packages/i18n/src/locales/es/plugin/patterns/cfp.yaml +++ /dev/null @@ -1,2 +0,0 @@ ---- -hello: Hola diff --git a/packages/i18n/src/locales/es/plugin/patterns/cornelius.yaml b/packages/i18n/src/locales/es/plugin/patterns/cornelius.yaml deleted file mode 100644 index ec4717f8882..00000000000 --- a/packages/i18n/src/locales/es/plugin/patterns/cornelius.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -Vent: Ventilador -PocketFacing: Cara de bolsillo diff --git a/packages/i18n/src/locales/es/plugin/patterns/hortensia.yaml b/packages/i18n/src/locales/es/plugin/patterns/hortensia.yaml deleted file mode 100644 index b68ad42efd7..00000000000 --- a/packages/i18n/src/locales/es/plugin/patterns/hortensia.yaml +++ /dev/null @@ -1,10 +0,0 @@ ---- -SidePanel: Panel lateral -FrontBackPanel: Panel frontal y trasero -BottomPanel: Panel Principal -ZipperPanel: Panel de Caparazón -Strap: Referencia -strapLength: Longitud de los Manejos -handleWidth: Ancho de las asas -zipperSize: Tamaño estándar de zipper -SidePanelReinforcement: Ocultar Panel de Refuerzos diff --git a/packages/i18n/src/locales/es/plugin/patterns/hugo.yaml b/packages/i18n/src/locales/es/plugin/patterns/hugo.yaml deleted file mode 100644 index 06331ad2626..00000000000 --- a/packages/i18n/src/locales/es/plugin/patterns/hugo.yaml +++ /dev/null @@ -1,7 +0,0 @@ ---- -cuff: Puño -hoodCenter: Centro de la capucha -hoodSide: Lado de la capucha -pocketFacing: Mirando hacia el bolsillo -pocket: Bolsillo -waistband: Pretina diff --git a/packages/i18n/src/locales/es/plugin/patterns/simon.yaml b/packages/i18n/src/locales/es/plugin/patterns/simon.yaml deleted file mode 100644 index c8cf92bb6a7..00000000000 --- a/packages/i18n/src/locales/es/plugin/patterns/simon.yaml +++ /dev/null @@ -1,13 +0,0 @@ ---- -buttonholePlacket: Tapeta de ojal -buttonPlacket: Tapeta de botones -collarAndUndercollar: Collar y Undercollar -collarStand: Base del cuello -cutUndercollarSlightlySmaller: Corte undercollar ligeramente más pequeño -frontLeft: Delantero izquierdo -frontRight: Delantero derecha -sideOfTheCollarStand: Lado del soporte del collar -sleevePlacketOverlap: Vista de la manga superior -sleevePlacketUnderlap: Vista de la manga fondo -yoke: Canesú -matchHere: Coincidir tela a lo largo de esta línea diff --git a/packages/i18n/src/locales/es/plugin/patterns/teagan.yaml b/packages/i18n/src/locales/es/plugin/patterns/teagan.yaml deleted file mode 100644 index 082c8b11fba..00000000000 --- a/packages/i18n/src/locales/es/plugin/patterns/teagan.yaml +++ /dev/null @@ -1,2 +0,0 @@ ---- -fullLengthFromHps: Longitud completa (de HPS) diff --git a/packages/i18n/src/locales/es/plugin/patterns/ursula.yaml b/packages/i18n/src/locales/es/plugin/patterns/ursula.yaml deleted file mode 100644 index ccfa98ef49d..00000000000 --- a/packages/i18n/src/locales/es/plugin/patterns/ursula.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -cutTwoPiecesOfElasticToFinishTheLegOpenings: Corta dos trozos de elástico para acabar la abertura de las perneras -cutOnePieceOfElasticToFinishTheWaistBand: Corta un trozo de elástico para acabar la cintura diff --git a/packages/i18n/src/locales/es/plugin/plugins/cutlist.yaml b/packages/i18n/src/locales/es/plugin/plugins/cutlist.yaml deleted file mode 100644 index 5af7db3d604..00000000000 --- a/packages/i18n/src/locales/es/plugin/plugins/cutlist.yaml +++ /dev/null @@ -1,16 +0,0 @@ -canvas: Lona -cut: Cortar -cuttingLayout: Suggested Cutting Layout -fabric: Tela principal -fabricSize: "{length} of {width} wide material" -heavyCanvas: Heavy Canvas -interfacing: Interfaz -lining: Terminal -lmhCanvas: Light to Medium Hair Canvas -mirrored: mirrored -onFoldLower: en el pliegue -onFoldAndBias: folded on the bias -onBias: on the bias -plastic: Plástico -ribbing: Tejido acanalado -edgeOfFabric: Edge of Fabric diff --git a/packages/i18n/src/locales/es/plugin/plugins/cutonfold.yaml b/packages/i18n/src/locales/es/plugin/plugins/cutonfold.yaml deleted file mode 100644 index 69c3031d33b..00000000000 --- a/packages/i18n/src/locales/es/plugin/plugins/cutonfold.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -cutOnFoldAndGrainline: Cortar en pliegue / Linea de grano -cutOnFold: Cortar en pliegue diff --git a/packages/i18n/src/locales/es/plugin/plugins/grainline.yaml b/packages/i18n/src/locales/es/plugin/plugins/grainline.yaml deleted file mode 100644 index b23ebd05211..00000000000 --- a/packages/i18n/src/locales/es/plugin/plugins/grainline.yaml +++ /dev/null @@ -1,2 +0,0 @@ ---- -grainline: Linea de grano diff --git a/packages/i18n/src/locales/es/plugin/plugins/scalebox.yaml b/packages/i18n/src/locales/es/plugin/plugins/scalebox.yaml deleted file mode 100644 index 097b0376fe9..00000000000 --- a/packages/i18n/src/locales/es/plugin/plugins/scalebox.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -theBlackOutsideOfThisBoxShouldMeasure: El exterior de este cuadro debe medir -theWhiteInsideOfThisBoxShouldMeasure: El interior de este cuadro debe medir -supportFreesewingBecomeAPatron: Apoye a FreeSewing, conviértete en un patrón diff --git a/packages/i18n/src/locales/es/plugin/plugins/title.yaml b/packages/i18n/src/locales/es/plugin/plugins/title.yaml deleted file mode 100644 index 07736c5c49a..00000000000 --- a/packages/i18n/src/locales/es/plugin/plugins/title.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -cut: Cortar -onFold: En el pliegue diff --git a/packages/i18n/src/locales/es/settings.yml b/packages/i18n/src/locales/es/settings.yml deleted file mode 100644 index 0ac6e79ac24..00000000000 --- a/packages/i18n/src/locales/es/settings.yml +++ /dev/null @@ -1,44 +0,0 @@ ---- -advanced: - title: Modo experto - description: Controla si mostrar o no la configuración avanzada y las opciones de patrón -paperless: - title: Sin papel - description: Dibuja un patrón con todas las dimensiones incluidas para que puedas transferirlo sobre tela u otro medio sin la necesidad de imprimir -sabool: - title: Include seam allowance - description: Controls whether or not to include seam allowance in your pattern -sa: - title: Seam allowance size - description: Controla la cantidad de margen de costura incluido en tu patrón -locale: - title: Idioma - description: Determina el lenguaje utilizado en tu patrón -only: - title: Contenidos - description: Le permite controlar qué partes del patrón se incluirán en su patrón -units: - title: Unidades - description: Controla las unidades utilizadas en tu patrón -margin: - title: Margen - description: Controla el margen alrededor de las partes del patrón -complete: - title: Detalle - description: Controla qué tan detallado es el patrón. Ya sea un patrón completo con todos los detalles, o un esquema básico de las partes del patrón -layout: - title: Disposición - description: Controla cómo se colocan las partes individuales del patrón en tu patrón -debug: - title: Debug - description: Habilita la depuración para obtener información adicional sobre cómo se creó tu patrón -scale: - title: Escala - description: Controla el ancho de línea general, el tamaño de fuente y otros elementos que no cambian de escala junto a las medidas del patrón -renderer: - title: Render engine - description: Controls how the pattern is rendered (drawn) on the screen -xray: - title: X-ray - description: Look under the hood with FreeSewing's X-ray mode - diff --git a/packages/i18n/src/locales/es/susi.yaml b/packages/i18n/src/locales/es/susi.yaml deleted file mode 100644 index dbbe1132fd9..00000000000 --- a/packages/i18n/src/locales/es/susi.yaml +++ /dev/null @@ -1,16 +0,0 @@ -joinFreeSewing: Join FreeSewing -toReceiveSignupLink: To receive a signup link, enter your email address -emailAddress: Email address -pleaseProvideValidEmail: Please provide a valid email address -emailSignupLink: Email me a signup link -alreadyHaveAnAccount: Already have an account? -dontHaveAnAccount: Don't have an account yet? -signIn: Sign in -signInHere: Sign in here -signUpHere: Sign up here -emailUsernameId: Email address, username, or user ID -welcomeName: 'Welcome { name }' -password: Contraseña -processing: Processing -emailSent: Email sent -somethingWentWrong: Algo salió mal diff --git a/packages/i18n/src/locales/es/welcome.yaml b/packages/i18n/src/locales/es/welcome.yaml deleted file mode 100644 index dc9cc32c31d..00000000000 --- a/packages/i18n/src/locales/es/welcome.yaml +++ /dev/null @@ -1,10 +0,0 @@ ---- -units: Selecciona las unidades que deseas utilizar -username: Elige un nombre de usuario -avatar: Añade una foto de perfil -bio: Cuéntanos un poco acerca de ti -social: Háganos saber dónde podemos seguirle -newsletter: Danos tu preferencia al boletín de noticias -letUsSetupYourAccount: Permítanos configurar su cuenta. -walkYouThrough: "Te guiaremos a través de los siguientes pasos:" -someOptional: Aunque todos estos pasos son opcionales, te recomendamos que los recorras para sacar el máximo provecho de FreeSewing. diff --git a/packages/i18n/src/locales/fr/account.yaml b/packages/i18n/src/locales/fr/account.yaml deleted file mode 100644 index 1874f3ecc14..00000000000 --- a/packages/i18n/src/locales/fr/account.yaml +++ /dev/null @@ -1,60 +0,0 @@ ---- -accountRemoved: Compte supprimé -accountRestricted: Compte restreint -avatar: Avatar -avatarInfo: Votre avatar ou votre photo de profil s'afficheront sur votre page de profil. -avatarTitle: Configurez votre photo de profil -bio: Bio -bioInfo: C’est ici que vous pouvez parler un peu de vous aux autres utilisateurs de freesewing. Ce champ prend en charge MarkDown (langage de balisage) ; vous pouvez donc également inclure des liens. Si vous avez un blog, c’est là que vous indiquez le lien pour que les autres puissent le découvrir. -bioTitle: Rédigez une courte biographie -currentPassword: Mot de passe actuel -email: Adresse mail -emailInfo: L'adresse e-mail associée à votre compte est importante car elle sera utilisée pour retrouver l'accès à votre compte si vous oubliez votre mot de passe. Pour cette raison, la modification de votre adresse e-mail nécessite une confirmation. -emailTitle: Entrez l'adresse e-mail que vous souhaitez associer à ce compte -exportYourData: Exportez vos données -exportYourDataInfo: Le Règlement Général sur la Protection des Donnée de l'UE (RGPD) garantit votre droit à la portabilité - le droit d'obtenir et de réutiliser vos données personnelles à des fins personnelles, ou sur pour d'autres services. -exportYourDataTitle: Cliquez ci-dessous pour télécharger vos données personnelles -github: GitHub -githubInfo: Si vous fournissez votre nom d'utilisateur GitHub, votre page de profil contiendra un lien vers votre compte Github, afin que les visiteurs puissent découvrir vos contributions au code, vous mettre en vedette ou vous suivre. -githubTitle: Entrez votre nom d'utilisateur GitHub -instagramInfo: Si vous fournissez votre nom d'utilisateur Instagram, votre page de profil contiendra un lien vers votre compte Instagram, afin que les visiteurs puissent découvrir vos photos et vous suivre. -instagram: Instagram -instagramTitle: Entrez votre nom d'utilisateur Instagram -languageInfo: Ce choix de langue détermine dans quelle langue vous recevrez les courriers électroniques de freesewing. Il ne détermine pas la langue du site Web, qui peut être choisie sur chaque page. -language: Langue -languageTitle: Sélectionnez la langue de votre choix -newPassword: Nouveau mot de passe -newsletter: Newsletter -newsletterTitle: Voulez vous recevoir la newsletter de FreeSewing ? -newsletterInfo: Une fois tous les 3 mois, nous envoyons notre newsletter avec un contenu honnête et soigneusement défini. Aucun suivi, aucune pub, aucun contenu inutile. -passwordInfo: Changer votre mot de passe nécessite votre mot de passe actuel. Remplissez-le, puis entrez votre nouveau mot de passe. -password: Mot de passe -passwordTitle: Entrez votre mot de passe actuel et votre nouveau mot de passe -patronInfo: Les mécènes soutiennent financièrement Freesewing. Ce sont des fidèles soutiens qui assurent un avenir durable à freesewing.org, à notre code, à nos patrons et à notre communauté. -patron: Mécène -removeYourAccountInfo: Le Règlement Général sur la Protection des Donnée de l'UE (RGPD) vous assure le droit à l'effacement - il s'agit de votre droit à pouvoir faire supprimer toutes vos données personnelles. -removeYourAccount: Supprimer votre compte -removeYourAccountWarning: Cela supprimera votre compte, vos Ébauches, vos modèles et toutes les données que nous avons stockées pour vous. Il n'y a pas de retour en arrière. -resetPasswordInfo: Entrez votre nouveau mot de passe. -resetPassword: Réintialiser le mot de passe -resetPasswordTitle: Saisissez un nouveau mot de passe -restrictProcessingOfYourDataInfo: Le Règlement Général sur la Protection des Donnée de l'UE (RGPD) garantit votre droit de restreindre le traitement - le droit de suspendre le traitement de vos données. -restrictProcessingOfYourData: Restreindre le traitement de vos données -restrictProcessingWarning: Bien qu'aucune donnée ne soit supprimée, ceci se déconnectera et gèlera votre compte. De plus, vous ne pouvez pas annuler cela vous-même, mais vous devrez nous contacter lorsque vous souhaitez restaurer l'accès à votre compte. -reviewYourConsent: Révisez votre consentement -socialInfo: Si vous fournissez votre nom d'utilisateur GitHub, Twitter ou Instagram, votre page de profil contiendra des liens vers vos comptes sur ces sites. Cela permet aux utilisateurs de freesewing de vous suivre.
Nous ne contactons aucun de ces sites en votre nom. C'est simplement pour que les gens puissent faire le rapprochement et savoir que, par exemple, l'utilisateur @joost sur freesewing est la même personne que l'utilisateur @j__st sur twitter. -social: Réseaux Sociaux -socialTitle: Permettez aux gens vous suivre ailleurs -twitterInfo: Si vous indiquez votre nom d'utilisateur Twitter, votre page de profil contiendra un lien vers votre compte Twitter afin que les visiteurs puissent découvrir vos tweets et vous suivre. -twitterTitle: Entrez votre nom d'utilisateur Twitter -twitter: Twitter -unitsInfo: Freesewing prend en charge le système métrique et les mesures impériales. -unitsTitle: Veuillez sélectionner le système d'unités que vous préférez -units: Unités -usernameInfo: Vous avez actuellement un nom d'utilisateur généré de manière aléatoire. Ce n'est pas très personnel, vous pouvez donc changer votre nom d'utilisateur pour quelque chose de plus personnel. Comme votre nom, pseudo ou autre chose. Il vous suffit de saisir le nom d'utilisateur souhaité. -usernameTitle: Veuillez choisir votre nom d'utilisateur -username: Nom d'utilisateur -accountIsInactive: Votre compte est inactif -accountNeedsActivation: Avant de pouvoir vous connecter, vous devez activer votre compte. Veuillez vérifier votre boîte de réception et cliquez sur le lien que vous trouverez dans le mail d'enregistrement. -reloadAccount: Recharger le compte -reloadAccountDescription: Cela rechargera les données de votre compte en arrière-plan. Il a le même effet que la déconnexion, puis se reconnecter. diff --git a/packages/i18n/src/locales/fr/app.yaml b/packages/i18n/src/locales/fr/app.yaml deleted file mode 100644 index a0a1c63ce1d..00000000000 --- a/packages/i18n/src/locales/fr/app.yaml +++ /dev/null @@ -1,348 +0,0 @@ ---- -100PercentCommunity: 100 % communautaire -100PercentFree: 100 % gratuit -100PercentOpenSource: 100 % open source -aboutFreesewing: À propos de Freesewing -accessoryPatterns: Patrons d'accessoires -account: Mon Compte -accountCreated: Compte créé -actions: Actions -allDocumentation: Toute la documentation -andThatIsAwesome: Et c'est génial -applyThisLayout: Appliquer cette mise en page -areYouSureYouWantToContinue: Êtes-vous sûr de vouloir continuer ? -askForHelp: Demander de l'aide -automatic: Automatique -averagePeopleDoNotExist: "Les personnes standards n'existent pas" -awesome: Incroyable -back: Dos -becauseThatWouldBeReallyHelpful: Parce que ce serait vraiment utile. -becomeAPatron: Devenir mécène -blockPatterns: Patrons de base/Blocs -blog: Blog -browseBlogposts: Parcourir les articles du blog -browsePatterns: Parcourir les patrons -browseShowcases: Parcourir la galerie -butThatCouldChange: Mais cela pourrait changer -cancel: Annuler -changePerson: Changer de personne -changePattern: Changer de patron -chatOnDiscord: Chat sur Discord -checkInboxClickLinkInConfirmationEmail: Maintenant, vérifiez votre boîte de réception et cliquez sur le lien dans l'e-mail de confirmation que nous vous avons envoyé. -chest: Poitrine -chestInfo: Les seins nécessitent des mesures supplémentaires. Si cette personne n'a pas de seins, les mesures non pertinentes seront masquées lors de la configuration du modèle. Cela n'a aucun impact sur la façon dont les patrons sont tracés. -chooseASize: Choisir une taille -chooseAPerson: Choisir une personne -chooseADesign: Choisir un design -chooseAPattern: Choisir un patron -chooseYourOptions: Choisir vos options -close: Fermer -community: Communauté -configureLayout: Configurer la mise en page -configureYourDraft: Configurez votre propre patron -contactUs: Nous contacter -contentLocaleFallback: C'est pour cela que nous vous montrons plutôt la version anglaise. -contents: Contenu -continue: Continuer -copiedToClipboard: Copié dans le presse-papier -copy: Copier -couldYouTranslateThis: Pourriez-vous traduire cela ? -countModelsLackingForPattern: '{count} de vos personnes manquent des mesures requises pour dessiner {pattern}' -created: Créé -custom: Personnaliser -customSeamAllowance: Marge de couture customisée -lightMode: Mode Clair -data: Données -darkMode: Mode sombre -default: Défaut -demo: Démo -designOptions: Options de design -designs: Designs -docs: Documentation -docsFooterMsg: La documentation n'est jamais terminée. J'espère que nous avons pu répondre à toutes vos questions, mais si ce n'est pas le cas, de l'aide est disponible. -docsNotFoundMsg: Nous n'avons pas pu trouver cette documentation, ce qui signifie généralement qu'elle n'a pas encore été écrite. -docsNotFoundTitle: Cette documentation est manquante -documentationForDevelopers: Documentation pour les développeurs -documentationForEditors: Documentation pour les éditeurs -documentationForTranslators: Documentation pour les traducteurs -documentationOverview: Vue d'ensemble de la documentation -dolls: Poupées -download: Télécharger -draft: Ébauche -draftPattern: 'Ébauche de {pattern}' -testPattern: 'Tester {pattern}' -draftPatternForModel: 'Ébauche de {pattern} pour {model}' -drafts: Ébauches -draftSettings: Réglages de l'ébauche -dragAndDropImageHere: Glissez et déposez une image ici, ou sélectionnez-en une manuellement avec le bouton ci-dessous -emailAddress: Adresse mail -emailWorksToo: "Si vous ne connaissez pas votre nom d'utilisateur, votre adresse mail fonctionne également" -enterEmailPickPassword: Saisissez votre adresse mail et choisissez un mot de passe -export: Exporter -exportTiledPDF: Exporter un PDF paginé -faq: Foire Aux Questions (FAQ) -fieldRemoved: '{field} supprimé' -fieldSaved: '{field} enregistré' -filterByPattern: Filtrer par patron -filterPatterns: Filtrez les patrons -forgotLoginInstructions: "Entrez votre nom d'utilisateur ou votre adresse e-mail ci-dessous et cliquez sur le bouton Réintialiser le mot de passe." -freesewing: Freesewing -freesewingOnGithub: Freesewing sur GitHub -garmentPatterns: Patrons de vêtements -giants: Géants -github: GitHub -goAheadWeWillWait: Allez-y, nous attendrons. -goodJob: Bon travail -goodToSeeYouAgain: Content de te revoir {user} -handle: Anse -helpUsTranslate: Aidez-nous à traduire -home: Page d'accueil -howCanWeHelpYou: Comment pouvons-nous vous aider ? -howToTakeMeasurements: Comment prendre les mesures -i18n: Internationalisation -imperialUnits: Unités impériales (pouces) -instagram: Instagram -invalidTldMessage: '.{tld} n''est pas un TLD valide' -joinTheChatMsg: Nous avons une communauté sur Discord avec des amis avec lesquels vous pouvez discuter. -justAMoment: Juste un instant -layout: Mis en page -logIn: Connexion -loginWithProvider: 'Connectez-vous avec {provider}' -logOut: Déconnexion -manual: Manuel -markdownHelp: Aide de MarkDown -measurements: Mensurations -menu: Menu -metadata: Métadonnées -metricUnits: Unités métriques (cm) -person: Personne -people: Personnes -nameInfo: Un nom aide à reconnaitre les choses. Vous pouvez choisir n'importe quel nom. -name: Nom -addThing: Ajouter {thing} -newThing: Nouveau {thing} -newPatternForModel: 'Nouveau {pattern} pour {model}' -noChanges: Pas de changement -no: 'Non' #Keep in quotes or it will evaluate to false -noPasswordPolicy: Nous n'appliquons pas de politique sur les mots de passe -noSeamAllowance: Marges de couture non-comprises -notAllOfThisContentIsAvailableInLanguage: Tout ce contenu n'est pas disponible en français -notesInfo: Ce sont vos notes. Vous pouvez écrire tout ce que vous voulez ici. -notes: Remarques -ohNo: Oh non ! -oneMoreThing: Encore une chose -optionalMeasurements: Mesures optionnelles -options: Options -orPayPerYear: Ou payer par an -other: Autre -otherThing: 'Autres {thing}' -ourPatrons: Nos mécènes -ourRevenuePledge: Notre engagement de revenus -patron-2: Matelot -patron-4: Second -patron-8: Capitaine -patronHelp: Si vous avez des questions ou souhaitez modifier votre statut de Mécène, veuillez nous contacter -patron: Mécène -patronPitch: Si vous pensez que ce que nous faisons vaut la peine, et si vous pouvez épargner quelques pièces chaque mois sans difficulté, veuillez soutenir notre travail -patronsKeepUsAfloat: Freesewing est rendu possible grâce au soutien financier de nos mécènes. Ils gardent ce navire à flot. -patternInstructions: Documentation du patron -patternOptions: Options du patron -pattern: patron -sewingPatterns: Patrons de couture -patterns: Patrons -pendingConfirmation: En attente de confirmation -perMonth: Par Mois -pleaseEnterAValidEmailAddress: Merci d'entrer une adresse e-mail valide -pleaseIncludeTheInformationBelow: Merci d'inclure les informations ci-dessous -preview: Aperçu -privacyNotice: Politique de confidentialité -proceedWithCaution: Procédez avec précaution -profile: Profil -relatedLinks: Liens connexes -remove: Supprimer -removeThing: Supprimer {thing} -reportThisOnGithub: Le signaler sur Github -requiredMeasurements: Mensurations requises -resendActivationEmailMessage: "Remplissez l'adresse e-mail avec laquelle vous vous êtes inscrit, et nous vous enverrons un nouveau message de confirmation." -resendActivationEmail: Renvoyer le mail d'activation -resetPassword: Réinitialiser le mot de passe -reset: Réinitialiser -restoreDefaults: Rétablir les paramètres par défaut -restoreDesignDefaults: Rétablir les paramètres par défaut du design -restorePatternDefaults: Rétablie les paramètres par défaut du patron -saveDraftToYourAccount: Enregistrer l'ébauche sur votre compte -save: Sauvegarder -searchLanguageMsg: Chaque langue a son propre index de recherche. Puisque tout notre contenu n'est pas traduit, vous pouvez trouver plus de résultats dans la recherche en anglais. -searchLanguageTitle: Vous ne trouvez pas ce que vous cherchez ? -search: Chercher -selectAPartToMoveMirrorOrRotate: Sélectionnez une pièce à déplacer, inverser ou faire pivoter -selectImage: Sélectionner une image -sendAnEmail: Envoyer un mail -settings: Paramètres -sewingHelp: Aide de couture -sewingPatternsForNonAveragePeople: Patrons de couture pour personnes non-standards -share: Partager -shareFreesewing: Partager FreeSewing -showcase: Galerie -signUpForAFreeAccount: Créer un compte gratuit -signUp: S'inscrire -signupWithProvider: 'S''inscrire avec {provider}' -sortByField: Trier par {field} -standardSeamAllowance: Marge de couture standard -startOver: Recommencer -startTranslatingNowOrRead: '{startTranslatingNow}, ou lisez d''abord la {documentationForTranslators}.' -startTranslatingNow: Commencez à traduire maintenant -subscribe: Souscrire -support: Support -supportFreesewing: Soutenir freesewing -tellMeMore: En savoir plus -thanksForYourSupport: Merci pour votre soutien -thisContentIsNotAvailableInLanguage: Ce contenu n'est pas disponible en français. -thisFieldSupportsMarkdown: Ce champ prend en charge Markdown -thisPageRequiresAuthentication: Cette page nécessite une authentification -troubleLoggingIn: Un problème de connexion ? -twitter: Twitter -txt-footer: Freesewing est fait par une communauté de contributeurs
avec le soutien financier de nos Mécènes -txt-tier2: Notre niveau le plus démocratiquement tarifé. C'est peut-être moins que le prix d'un latte, mais votre soutien compte beaucoup pour nous. -txt-tier4: Abonnez-vous à ce niveau et nous vous enverrons une part de notre swag Freesewing tant convoité chez vous, partout dans le monde. -txt-tier8: "Si vous ne voulez simplement pas nous soutenir, mais que vous voulez que le freesewing se développe, c'est le niveau qui vous convient. Aussi : swag supplémentaire !" -txt-tiers: 'Freesewing est financé par un modèle de souscription volontaire' -unitsInfo: Freesewing prend en charge le système métrique et les unités impériales. Choisissez simplement celui que vous souhaitez utiliser ici. (Par défaut, vous utilisez les unités configurées dans votre compte). -updated: Mis à jour -update: Mettre à jour -userHasBeenWithUsSince: '{user} est parmi nous depuis {since}' -users: Utilisateurs -utilityPatterns: Patrons utilitaires -weAreValidatingYourConfirmationCode: Nous sommes en train de valider votre code de confirmation -weCouldNotValidateYourConfirmationCode: Nous n'avons pas pu valider votre code de confirmation -weEncounteredAProblem: Nous avons rencontré un problème -weEncourageYouToReportThis: Nous vous encourageons à signaler ceci -welcomeAboard: Bienvenue à bord -welcome: Bienvenue -weNeverShareYourEmail: Nous ne partagerons jamais votre adresse email avec quiconque. -whatIsThis: Qu'est-ce que c'est ? -withBreasts: Avec des seins -withoutBreasts: Sans seins -yay: Yeh ! -yes: 'Oui' #Keep in quotes or it will evaluate to true -youAreAPatron: Vous êtes un mécène -youAreNotAPatron: Vous n'êtes pas mécène -youAreNotLoggedIn: Vous n'êtes pas connecté -yourRights: Vos droits -makerDocs: Documentation pour les couturiers -devDocs: Documentation pour les développeurs -slogan: Une librairie JavaScript pour des patrons de couture sur mesure -getStarted: Pour commencer -apiReference: Référence API -tutorial: Tutoriel -editThisPage: Éditer cette page -loginRequiredRedirect: 'Vous avez été redirigé vers cette page car {page} requiert une authentification' -various: Divers -sewing: Couture -examples: Exemples -by: par -years: Années -pricing: Tarifs -createFirst: Commencer en créant un nouveau patron -noPattern: Vous n'avez pas (encore) de patrons. Créez un nouveau patron, puis sauvegardez-le sur votre compte. -modelFirst: Commencez par ajouter des mensurations -noModel: Vous n'avez pas (encore) ajouté de mesure. FreeSewing peut générer des patrons de couture sur mesure. Mais pour cela, nous avons besoin de mensurations. -noModel2: La première chose à faire est donc d'ajouter une personne et de sortir votre mètre-ruban. -noUserBrowsingTitle: "Vous ne pouvez pas simplement parcourir tous les utilisateurs" -noUserBrowsingText: "Nous en avons des milliers. Vous avez certainement autre chose à faire ?" -usePatternMeasurements: 'Utiliser les mesures du patron d''origine' -createReplica: Créer une réplique -showDetails: Voir les détails -hideDetails: Masquer les détails -clickBelowToLogOut: Cliquez ci-dessous pour vous déconnecter -compare: Comparer -savePattern: Enregistrer le patron -recreate: Recréer -recreateThing: Recréer {thing} -recreateThingForPerson: Recréer {thing} pour {person} -seeYouLaterUser: À plus tard {user} -exportForPrinting: Exporter pour l'impression -exportForEditing: Exporter pour édition -startWithNeckTitle: Commencer par le tour de cou -startWithNeckDescription: En se basant sur votre tour de cou, nous pouvons vous aider à repérer des erreurs dans vos mesures. -whatYouNeed: Ce dont vous avez besoin -fabricOptions: Options de tissu -cutting: Coupe -instructions: Instructions -hide: Masquer -show: Afficher -oneMomentPlease: Veuillez patienter -loadingMagic: En cours de chargement -estimate: Estimation -actual: Réel -weEstimateYM2B: 'Nous estimons que votre {measurement} est environ :' -exportAsData: Exporter en tant que données -availablePatterns: Patrons disponibles -browseCollection: Parcourez votre collection -browseYourPatterns: Choisissez votre patron -yourPatterns: Vos patrons -loginNeededToSavePatternsMsg: Vous devez être connecté pour enregistrer vos patrons -docsForContributors: Documentation pour les contributeurs -patternDocs: Documentation de patron -socialMedia: Réseaux sociaux -create: Créer -browse: Parcourir -patrons: Mécènes -scrollToTop: Haut de la page -sitemap: Plan du site -contributeToThing: Contribuer à {thing} -mtmIsOurJam: Les patrons de couture sur mesure sont notre spécialité -fitYouDeserve: Vous passez vraiment à côté de quelque chose si vous utilisez des tailles standardisées.
Alors inscrivez-vous dès aujourd'hui et obtenez le rendu que vous méritez. -supportNag: FreeSewing est gratuit, mais nous apprécierions si vous envisagiez de nous soutenir. -madeToMeasure: sur mesure -sizes: Tailles -standardSizes: Tailles standard -accountRequired: Cette fonctionnalité nécessite un compte FreeSewing -size: Taille -switchToThing: 'Passer à {thing}' -saveThing: 'Enregistrer {thing}' -shareThing: 'Partager {thing}' -link: Lien -cloneThing: 'Dupliquer {thing}' -cloneDescription: Recréer une copie exacte, en utilisant les mesures du patron d'origine. -furtherReading: Lire plus -saveAsNewPattern: Enregistrer en tant que nouveau patron -saveAsNewPattern-txt: Stocker (une copie de) ce patron sur votre compte FreeSewing -exportPattern: Exporter le patron -printPattern: Imprimer le patron -exportPattern-txt: Exporter au format PDF adapté à votre imprimante, ou télécharger ce modèle dans une variété de formats -editThing: 'Modifier {thing}' -editPattern-txt: Charger ce patron dans l'éditeur de patron -featureRequiresAccount: Cette fonctionnalité nécessite un compte FreeSewing -zoom: Zoom -zoomIn: Zoom avant -zoomOut: Zoom arrière -zoom-txt: Bascule entre la contrainte de la hauteur ou la largeur du patron pour s'adapter à votre écran -savePattern-txt: Stocker ce patron sur votre compte FreeSewing -comparePattern: Comparer les patrons -showPattern: Afficher le patron -comparePattern-txt: Comparez votre patron à une plage de tailles standard pour examiner les éventuels problèmes d'ajustement -recreatePattern: Recréer le patron -recreatePattern-txt: Choisissez une autre personne, puis recréez ce patron pour cette personne -editOwnPatternsOnly: Vous ne pouvez modifier que vos propres patrons -editOwnPatternsOnly-txt: Vous ne pouvez pas modifier ce patron car ce n'est pas le vôtre. Mais vous pouvez l'utiliser comme patron de base pour créer votre propre patron. -updateNotes-txt: Mettre à jour les notes concernant votre patron -franceWarning: Attention, pour les utilisateurs français -franceWarning-txt: Plusieurs fournisseurs d'accès français — dont free.fr, laposte.net, orange.fr et sfr.fr — rejettent systématiquement nos e-mails. -emailNotReceived: Si vous ne recevez pas le mail d'activation, merci de nous contacter pour que nous puissions vous aider. -error: Erreur -info: Info -warning: Avertissement -debug: Débug -unsubscribe: Se désabonner -slogan-come: Venez pour les patrons de couture -slogan-stay: Restez pour la communauté -lightTheme: Thème clair -darkTheme: Thème Sombre -hax0rTheme: Thème Hax0r -lgbtqTheme: Thème LGBTQ -transTheme: Thème Trans -accessoryDesigns: Conception d'accessoires -blockDesigns: Patrons de base/Blocs -garmentDesigns: Conception de vêtements -utilityDesigns: Conception utile diff --git a/packages/i18n/src/locales/fr/cfp.yaml b/packages/i18n/src/locales/fr/cfp.yaml deleted file mode 100644 index 2ce2d881a38..00000000000 --- a/packages/i18n/src/locales/fr/cfp.yaml +++ /dev/null @@ -1,33 +0,0 @@ ---- -author: Auteur -githubRepo: Répertoire GitHub -packageManager: Gestionnaire de package -patternName: Nom de patron -patternType: Type de patron -patternCreated: Le squelette de votre patron a été créé sur -runTheseCommands: Pour commencer, exécutez cette commande -startRollup: Dans un terminal, démarrez le bundler rollup en mode watch -startWebpack: "Il entrera dans le dossier 'exemple' et démarrera l'environnement de développement." -devDocsAvailableAt: La documentation pour développeur est disponible sur -talkToUs: Pour des questions, commentaires ou suggestions, rejoignez notre serveur Discord -draftYourPattern: Dessiner votre patron -testYourPattern: Tester votre patron -draftThing: 'Ébauche de {thing}' -testThing: 'Tester {thing}' -renderInBrowser: Cliquer ci-dessous pour afficher votre patron dans votre navigateur. -weWillReRender: Lorsque vous effectuez des modifications, nous mettons à jour le rendu pour vous. -youCan: Vous pouvez -enterMeasurements: Entrer des mesures manuellement -preloadMeasurements: Pré-charger un set de mesures -size: Taille -noRequiredMeasurements: Ce patron n'a pas de mesure requise -howtoAddMeasurements: Pour rendre des mesures nécessaires, ajoutez-les à la section measurements du fichier de configuration du patron. -seeDocsAt: La documentation à ce sujet est disponible sur -clearDesignMode: Vider le mode design -designMode: Mode design -exportMode: Mode d'export -thingIsEnabled: '{thing} est activé' -thingIsDisabled: '{thing} est désactivé' -turnOn: Activer -turnOff: Désactiver -validNameWarning: "Veuillez choisir un nom différent car ce nom causerait des problèmes.\nNous (ré-)utilisons le nom du modèle comme nom de paquet NPM.\nLes noms de paquets doivent être en minuscule et ne peuvent pas contenir de caractères spéciaux.\nVeuillez donc nommer votre patron en conséquence, comme :" diff --git a/packages/i18n/src/locales/fr/components/common.yaml b/packages/i18n/src/locales/fr/components/common.yaml deleted file mode 100644 index 1981341da6c..00000000000 --- a/packages/i18n/src/locales/fr/components/common.yaml +++ /dev/null @@ -1,13 +0,0 @@ ---- -account: Compte -blog: Blog -commumity: Communauté -designs: Designs -docs: Documentation -patternInstructions: Documentation du patron -patternOptions: Options du patron -requiredMeasurements: Mensurations requises -showcase: Galerie -sloganCome: Venez pour les patrons de couture -sloganStay: Restez pour la communauté -support: Support diff --git a/packages/i18n/src/locales/fr/components/homepage.yaml b/packages/i18n/src/locales/fr/components/homepage.yaml deleted file mode 100644 index 9fd5f9e2cba..00000000000 --- a/packages/i18n/src/locales/fr/components/homepage.yaml +++ /dev/null @@ -1,2 +0,0 @@ ---- -scrollDownToLearnMore: Faites défiler vers le bas pour en savoir plus sur FreeSewing et essayez gratuitement diff --git a/packages/i18n/src/locales/fr/components/ograph.yaml b/packages/i18n/src/locales/fr/components/ograph.yaml deleted file mode 100644 index 8e31806e766..00000000000 --- a/packages/i18n/src/locales/fr/components/ograph.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -orgTitle: Bienvenue sur FreeSewing.org -devTitle: Bienvenue sur FreeSewing.dev -labTitle: Bienvenue dans lab.FreeSewing.lab -devDescription: Documentation et tutoriels pour les développeurs et contributeurs de FreeSewing. Plus notre blog de développeurs diff --git a/packages/i18n/src/locales/fr/components/patrons.yaml b/packages/i18n/src/locales/fr/components/patrons.yaml deleted file mode 100644 index b3f125850fc..00000000000 --- a/packages/i18n/src/locales/fr/components/patrons.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -becomeAPatron: Devenir mécène -supportFreesewing: Soutenir FreeSewing -patronLead: Freesewing est financé par un modèle de soutien volontaire -patronPitch: Si vous pensez que ce que nous faisons en vaut la peine, et si vous pouvez consacrer quelques pièces chaque mois sans trop de difficulté, vous aussi pourriez devenir mécène de FreeSewing diff --git a/packages/i18n/src/locales/fr/components/posts.yaml b/packages/i18n/src/locales/fr/components/posts.yaml deleted file mode 100644 index 54da3eb011e..00000000000 --- a/packages/i18n/src/locales/fr/components/posts.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -xMadeThis: '{x} a fait ceci' -xWroteThis: '{x} a écrit ceci' diff --git a/packages/i18n/src/locales/fr/components/themes.yaml b/packages/i18n/src/locales/fr/components/themes.yaml deleted file mode 100644 index cd728ff9d10..00000000000 --- a/packages/i18n/src/locales/fr/components/themes.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -lightTheme: Thème clair -darkTheme: Thème Sombre -hax0rTheme: Thème Hax0r -lgbtqTheme: Thème LGBTQ -transTheme: Thème Trans diff --git a/packages/i18n/src/locales/fr/components/workbench.yaml b/packages/i18n/src/locales/fr/components/workbench.yaml deleted file mode 100644 index 26ffe793130..00000000000 --- a/packages/i18n/src/locales/fr/components/workbench.yaml +++ /dev/null @@ -1,11 +0,0 @@ ---- -designOptions: Options de design -forPrinting: Pour l'impression -forCutting: Pour couper -layoutThing: 'Mise en page de {thing}' -pageSize: Taille de page -startBySelectingAThing: 'Commencez par sélectionner un {thing}' -testThing: 'Tester {thing}' -yamlEditViewTitleThing: 'Modifier la configuration du patron pour {thing}' -yamlEditViewError: Problèmes avec YAML -yamlEditViewErrorDesc: Nous avons sauvegardé votre entrée, mais il se peut que cela ne fonctionne pas pour les raisons suivantes diff --git a/packages/i18n/src/locales/fr/cty.yaml b/packages/i18n/src/locales/fr/cty.yaml deleted file mode 100644 index de1575ba0bc..00000000000 --- a/packages/i18n/src/locales/fr/cty.yaml +++ /dev/null @@ -1,20 +0,0 @@ ---- -wafsHashtag: WeAreFreeSewing -weAreACommunityOfMakers: Nous sommes une communauté de créateurs -weProvideMtmSewingPatterns: Nous fournissons des patrons de couture sur mesure -isAPatron: est un.e mécène -contributesWith: contribue en -communityBuilding: Développement communautaire -development: Développement -patternTesting: Tests de patron -patternDesign: Design de patron -support: Soutien -translation: Traduction -writing: Rédaction -whereToFindUs: Où nous trouver -whoWeAre: Qui nous sommes -community: Communauté -team: Équipe -teams: Équipes -contributors: Contributeurs -calls: Appels des contributeurs diff --git a/packages/i18n/src/locales/fr/designs.yml b/packages/i18n/src/locales/fr/designs.yml deleted file mode 100644 index 012eaea6130..00000000000 --- a/packages/i18n/src/locales/fr/designs.yml +++ /dev/null @@ -1,142 +0,0 @@ ---- -aaron: - description: Aaron est un débardeur ou marcel - title: Débardeur Aaron (A-shirt) -albert: - description: Albert est un tablier. - title: Tablier Albert -bee: - description: Bee est un haut de bikini - title: Haut de bikini Bee -bella: - description: Bella est un bloc corporel de base pour les personnes qui ont le sein. - title: Buste de base Bella -benjamin: - description: Benjamin est un nœud papillon avec 4 possibilités de styles différents. - title: Nœud papillon Benjamin -bent: - description: Ce bloc d'emmanchure en deux parties est la base de nos modèles de manteau et de veste. - title: Patron de base Bent -bob: - description: Voici le bavoir que vous pouvez créer en suivant notre tutoriel de design - title: Bob le bavoir -breanna: - description: Breanna est un bloc corporel de base pour les personnes qui ont un sein. - title: Haut Breanna -brian: - description: Brian est un bloc corporel de base pour les personnes sans sein. - title: Patron de base Brian -bruce: - description: Bruce est un boxer confortable et élégant. - title: Boxer Bruce -carlita: - description: 'La version pour les seins de notre manteau Carlton, aka manteau Sherlock Holmes.' - title: Manteau Carlita -carlton: - description: 'Pour le cosplay de Sherlock Holmes, ou juste un très beau manteau.' - title: Manteau Carlton -cathrin: - description: Cathrin est un corset sous-poitrine ou un serre-taille. - title: Corset Cathrin -charlie: - description: Charlie est un modèle de pantalon en chino. - title: Charlie chinos -cornelius: - description: Cornelius est une culotte de cyclisme basé sur la méthode Keystone. - title: Culotte de cyclisme Cornelius -diana: - description: Diana est un top avec un col drapé. - title: Haut drapé Diana -florent: - description: 'Florent est une casquette plate, une casquette arrondie avec un petit bord raide à l''avant.' - title: Casquette plate Florent -florence: - description: 'Florence est un masque facial.' - title: Masque Florence -hi: - description: Le requin le plus amical du monde - title: Hi le requin -holmes: - description: 'Pour un cosplay Sherlock Holmes, ou juste un joli manteau.' - title: Casquette de détective Holmes -hortensia: - description: 'Hortensia est un sac à main.' - title: Sac à main Hortensia -huey: - description: Huey est un sweat à capuche zippé avec poches avant optionnelles. - title: Sweat zippé à capuche Huey -hugo: - description: Hugo est un sweat à capuche avec des manches raglan. - title: Sweat à capuche Hugo -jaeger: - description: Jaeger est une veste de sport de style manteau avec deux boutons et des poches plaquées. - title: Veste Jaeger -lucy: - description: Lucy est une poche historique que vous pouvez nouer autour de votre taille. - title: Poche à nouer Lucy -lunetius: - description: Lunetius est une lacerne, un manteau romain historique - title: Lacerne Lunetius -noble: - description: Noble est un bloc de corps avec des coutures prince(sse) - title: Bloc de corps Noble -octoplushy: - description: Un compagnon à plusieurs bras pour des câlins de haut niveau - title: Octoplushy la pieuvre -paco: - description: Paco est un pantalon d'été décontracté mais élégant. - title: Pantalon Paco -penelope: - description: Penelope est une jupe crayon avec ou sans fente dans le dos. - title: Jupe crayon Penelope -sandy: - description: Sandy est un patron de jupe cercle adaptable. - title: Jupe cercle Sandy -shin: - description: Les tiges sont des maillots de bain athlétiques. - title: Boxer de bain Shin -simon: - description: Simon est un modèle de chemise très adaptable pour les personnes sans sein. - title: Chemise Simon -simone: - description: Simone est Simon, adapté pour les poitrines avec seins. - title: Chemise Simone -sven: - description: Sven est un sweat simple. - title: Sweat Sven -tamiko: - description: Tamiko est un top zéro déchet. - title: Top Tamiko -teagan: - description: Teagan est un T-shirt ajusté. - title: T-shirt Teagan -theo: - description: Theo est un patron de pantalon classique. - title: Pantalon Theo -tiberius: - description: Tiberius est une tunique romaine historique - title: Tunique Tiberius -titan: - description: Titan est un patron de base de pantalon sans pinces. - title: Bloc de pantalon Titan -trayvon: - description: Trayvon est une cravate qui ne fait pas d'économies pour un résultat professionnel. - title: Cravate Trayvon -unice: - description: Unice est une variante d'Ursula ; un modèle de sous-vêtements basique et hautement personnalisable. - title: Sous-vêtements Unice -ursula: - description: Ursula est un motif basique et hautement personnalisable. - title: Unités d'Ursula -wahid: - description: Wahid est un gilet classique ajusté. - title: Gilet Wahid -walburga: - description: Walburga est un tabard/surcot, un vêtement historique de l'Europe médiévale - title: Tabard Walburga -waralee: - description: Waralee sont des pantalons enveloppés. - title: Pantalon portefeuille Waralee -yuri: - description: Yuri est un cardigan chic basé sur les sweats Huey & Hugo - title: Sweat à capuche Yuri diff --git a/packages/i18n/src/locales/fr/email.yaml b/packages/i18n/src/locales/fr/email.yaml deleted file mode 100644 index c7a7e918ea8..00000000000 --- a/packages/i18n/src/locales/fr/email.yaml +++ /dev/null @@ -1,26 +0,0 @@ ---- -emailChangeActionText: 'Confirmez votre nouvelle adresse mail' -emailChangeCopy1: 'Vous avez demandé à changer l''adresse e-mail associée à votre compte sur FreeSewing.org.' -emailChangeCopy2: 'Avant de faire cela, vous devez confirmer votre nouvelle adresse e-mail. Veuillez cliquer sur le lien ci-dessous pour faire ceci :' -emailChangeHiddenIntro: "Confirmons votre nouvelle adresse e-mail" -emailChangeTitle: 'Merci de confirmer votre nouvelle adresse e-mail' -emailChangeWhy: 'Vous avez reçu cet e-mail parce que vous avez changé l''adresse e-mail liée à votre compte sur FreeSewing.org' -goodbyeCopy1: "Si vous voulez partager les raisons de votre départ, vous pouvez répondre à ce message." -goodbyeCopy2: "De notre côté, nous ne vous dérangerons plus." -goodbyeTitle: 'Merci d''avoir donné une chance à FreeSewing' -goodbyeWhy: 'Vous avez reçu cet e-mail en guise d''adieu après la suppression de votre compte sur FreeSewing.org' -passwordResetActionText: 'Récupérer l''accès à votre compte' -passwordResetCopy1: 'Vous avez oublié votre mot de passe pour votre compte sur FreeSewing.org.' -passwordResetCopy2: 'Cliquez sur le lien ci-dessous pour réinitialiser votre mot de passe :' -passwordResetHeaderOpeningLine: "Ne vous inquiétez pas, ce genre de choses nous arrive à tous" -passwordResetHiddenIntro: 'Récupérer l''accès à votre compte' -passwordResetSubject: 'Récupérer l''accès à votre compte sur freesewing.org' -passwordResetTitle: 'Réinitialisez votre mot de passe et récupérez l''accès à votre compte' -passwordResetWhy: 'Vous avez reçu cet e-mail parce que vous avez demandé de réinitialiser votre mot de passe sur freesewing.org' -questionsJustReply: "Si vous avez des questions, répondez simplement à cet e-mail. Je suis toujours heureux d'aider. 🙂" -signupActionText: 'Confirmez votre adresse mail' -signupCopy1: 'Merci de votre inscription sur FreeSewing.org.' -signupCopy2: 'Avant de commencer, vous devez confirmer votre adresse e-mail. Pour cela, veuillez cliquer sur le lien ci-dessous :' -signupHiddenIntro: "Confirmons votre adresse mail" -signupSubject: 'Bienvenue sur FreeSewing.org' -signupWhy: 'Vous avez reçu cet e-mail parce que vous venez de créer un compte sur freesewing.org' diff --git a/packages/i18n/src/locales/fr/errors.yaml b/packages/i18n/src/locales/fr/errors.yaml deleted file mode 100644 index ff4c11b3237..00000000000 --- a/packages/i18n/src/locales/fr/errors.yaml +++ /dev/null @@ -1,11 +0,0 @@ ---- -404: La page que vous recherchez est introuvable. -confirmationNotFound: Si vous êtes arrivé sur cette page via le lien figurant dans un e-mail de confirmation, nous vous encourageons à signaler ce problème. -emailExists: Nous avons déjà un utilisateur avec cette adresse mail. Peut-être aimeriez-vous plutôt vous connecter ? -networkError: Le backend ou le réseau semblent en panne -notAValidImageFormat: Format d'image non valide -requestFailedWithStatusCode400: Échec de la demande -requestFailedWithStatusCode401: Échec de l'authentification -requestFailedWithStatusCode403: Interdit -requestFailedWithStatusCode500: Il y a eu un problème inattendu. Veuillez le signaler. -something: Une erreur s'est produite diff --git a/packages/i18n/src/locales/fr/filter.yml b/packages/i18n/src/locales/fr/filter.yml deleted file mode 100644 index cb6e94ebfa7..00000000000 --- a/packages/i18n/src/locales/fr/filter.yml +++ /dev/null @@ -1,20 +0,0 @@ ---- -filter: Filtre -department: Département -type: Type -tags: Étiquettes -code: Code -design: Design (conception) -difficulty: Difficulté -resetFilter: Réinitialiser le filtre -accessories: Accessoires -block: Patron de base -pattern: Patron -byPattern: Filtrer par patron -underwear: Sous-vêtements -top: Haut -tops: Coups -bottom: Bas -bottoms: Bas -coats: Manteaux & vestes -swimwear: Maillot de bain diff --git a/packages/i18n/src/locales/fr/i18n.yaml b/packages/i18n/src/locales/fr/i18n.yaml deleted file mode 100644 index 0f5d9f12088..00000000000 --- a/packages/i18n/src/locales/fr/i18n.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -de: Allemand -en: Anglais -es: Espagnol -fr: Français -nl: Néerlandais diff --git a/packages/i18n/src/locales/fr/index.js b/packages/i18n/src/locales/fr/index.js deleted file mode 100644 index 328625f6af9..00000000000 --- a/packages/i18n/src/locales/fr/index.js +++ /dev/null @@ -1,85 +0,0 @@ -import account from './account.yaml' -import app from './app.yaml' -import cfp from './cfp.yaml' -import cty from './cty.yaml' -import email from './email.yaml' -import errors from './errors.yaml' -import filter from './filter.yml' -import gdpr from './gdpr.yaml' -import i18n from './i18n.yaml' -import intro from './intro.yaml' -import measurements from './measurements.yaml' -import lab from './lab.yaml' -import options from './options/' -import optiongroups from './optiongroups.yaml' -import parts from './parts.yaml' -import patterns from './patterns.yml' -import plugin from './plugin/' -import settings from './settings.yml' -import welcome from './welcome.yaml' - -import jargonFile from './jargon.yml' - -const topics = { - account, - app, - cfp, - cty, - email, - errors, - filter, - gdpr, - i18n, - intro, - measurements, - lab, - options, - optiongroups, - parts, - patterns, - plugin, - settings, - welcome, -} - -const strings = {} - -for (let topic of Object.keys(topics)) { - for (let id of Object.keys(topics[topic])) { - if (typeof topics[topic][id] === 'string') strings[topic + '.' + id] = topics[topic][id] - else { - for (let key of Object.keys(topics[topic][id])) { - if (typeof topics[topic][id][key] === 'string') - strings[topic + '.' + id + '.' + key] = topics[topic][id][key] - else { - for (let subkey of Object.keys(topics[topic][id][key])) { - if (typeof topics[topic][id][key][subkey] === 'string') - strings[topic + '.' + id + '.' + key + '.' + subkey] = topics[topic][id][key][subkey] - else { - for (let subsubkey of Object.keys(topics[topic][id][key][subkey])) { - if (typeof topics[topic][id][key][subkey][subsubkey] === 'string') - strings[topic + '.' + id + '.' + key + '.' + subkey + '.' + subsubkey] = - topics[topic][id][key][subkey][subsubkey] - else { - console.log('Depth exceeded!', topic, id, key, subkey, subsubkey) - } - } - } - } - } - } - } - } -} - -const jargon = {} -for (let entry in jargonFile) { - jargon[jargonFile[entry].term] = jargonFile[entry].description -} - -export default { - strings, - plugin, - jargon, - topics, -} diff --git a/packages/i18n/src/locales/fr/intro.yaml b/packages/i18n/src/locales/fr/intro.yaml deleted file mode 100644 index 8f9c5184199..00000000000 --- a/packages/i18n/src/locales/fr/intro.yaml +++ /dev/null @@ -1,12 +0,0 @@ ---- -txt-blog: Nouvelles, mises à jour et annonces de l'équipe freesewing -txt-community: 'Tout est géré par des contributeurs bénévoles. Il n''y a pas d''entité commerciale, ou assimilée, derrière ce projet.' -txt-different: Ce en quoi nous sommes différents -txt-draft: "Choisissez parmi l'un de vos patrons, choisissez un modèle, et sélectionnez vos options. Nous ferons le reste." -txt-how: Comment ça marche -txt-join: Rejoignez des milliers d'autres personnes en vous inscrivant gratuitement sur freesewing.org. -txt-model: Tous nos patrons sont faits sur mesure, donc la première chose à faire est de vous munir de votre mètre-ruban. -txt-newHere: "Si vous êtes nouveau ici, le meilleur endroit pour commencer est notre démo :" -txt-opensource: 'Notre plateforme, nos patrons, et même ce site web. Tout notre code est disponible sur GitHub. Les "Pull requests" sont les bienvenues !' -txt-patrons: Freesewing existe grâce au soutien financier de nos Mécènes. Faites défiler vers le bas pour en savoir plus sur nos modes de souscription. -txt-showcase: Projets terminés de la communauté freesewing diff --git a/packages/i18n/src/locales/fr/jargon.yml b/packages/i18n/src/locales/fr/jargon.yml deleted file mode 100644 index f75901be31f..00000000000 --- a/packages/i18n/src/locales/fr/jargon.yml +++ /dev/null @@ -1,85 +0,0 @@ ---- -basting: - term: bâtir - description: "Voir Bâtir dans la documentation de Couture" -coverlock: - term: recouvreuse - description: "Voir Recouvreuse dans la documentation de Couture" -cutting: - term: coupe - description: "Voir Coupe dans la documentation de Couture" -darts: - term: pinces - description: "Voir Pinces dans la documentation de Couture" -doubleWeltPockets: - term: poche passepoilée - description: "Voir Poches passepoilées dans la documentation de Couture" -ease: - term: aisance - description: "Voir Aisance dans la documentation de Couture" -edgestitch: - term: couture nervure - description: "Voir Couture nervure dans la documentation de Couture" -fabricGrain: - term: droit fil - description: "Voir Droit fil dans la documentation de Couture" -goodSidesTogether: - term: endroit contre endroit - description: "Voir Endroit contre endroit dans la documentation de Couture" -onTheFold: - term: au pli - description: "Voir Au pli dans la documentation de couture" -hemming: - term: ourlet - description: "Voir Ourlet dans la documentation de Couture" -jersey: - term: jersey - description: "Voir Jersey dans la documentation de Couture" -knitBinding: - term: biais de jersey - description: "Voir Biais de jersey dans la documentation de Couture" -knitFabric: - term: tissu Maille - description: "Voir Tissu maille dans la documentation de Couture" -pinning: - term: épingler - description: "Voir Épingler dans la documentation de Couture" -rayon: - term: rayonne ou viscose - description: "Voir Rayonne ou Viscose dans la documentation de Couture" -sa: - term: marge de couture - description: "Voir Marge de couture dans la documentation de Couture" -serger: - term: surjeteuse - description: "Voir Surgeteuse dans la documentation de Couture" -slipstitch: - term: point glissé - description: "Voir Point glissé dans la documentation de Couture" -topstitching: - term: surpiqûre - description: "Voir Surpiqûre dans la documentation de Couture" -trimming: - term: dégarnir - description: "Voir Dégarnir dans la documentation de Couture" -twinNeedle: - term: aiguilles doubles - description: "Voir Aiguilles doubles dans la documentation de Couture" -zigZag: - term: point zig-zag - description: "Voir Point zig-zag dans la documentation de Couture" -freesewing: - term: freesewing - description: 'FreeSewing est une plate-forme open source pour des patrons de couture sur-mesure' -patternOptions: - term: options du patron - description: 'Les options de patron vous permettent de personnaliser le design du patron' -draftSettings: - term: réglages de l'ébauche - description: 'Les paramètres de patrons générés vous donnent le contrôle de la manière dont un patron est généré' -patrons: - term: mécènes - description: 'Les mécènes soutiennent financièrement Freesewing. Ce sont des partisans fidèles qui assurent un avenir durable à freesewing.org, à notre code, à nos patrons et à notre communauté.' -msf: - term: MSF - description: "Médecins Sans Frontières/Doctors Sans Frontières - Voir msf.org" diff --git a/packages/i18n/src/locales/fr/lab.yaml b/packages/i18n/src/locales/fr/lab.yaml deleted file mode 100644 index 4c23aaba7c2..00000000000 --- a/packages/i18n/src/locales/fr/lab.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -slogan: Le laboratoire FreeSewing fournit -slogan1: Tous nos designs de patrons -slogan2: Nouvelle & ancienne version -slogan3: Code des nouveautés -slogan4: Designs inédits diff --git a/packages/i18n/src/locales/fr/loader.yaml b/packages/i18n/src/locales/fr/loader.yaml deleted file mode 100644 index b8aab86f1eb..00000000000 --- a/packages/i18n/src/locales/fr/loader.yaml +++ /dev/null @@ -1 +0,0 @@ -processing: Traitement en cours diff --git a/packages/i18n/src/locales/fr/optiongroups.yaml b/packages/i18n/src/locales/fr/optiongroups.yaml deleted file mode 100644 index 38044468390..00000000000 --- a/packages/i18n/src/locales/fr/optiongroups.yaml +++ /dev/null @@ -1,25 +0,0 @@ ---- -advanced: Avancé -armhole: Emmanchure -closure: Fermeture -collar: Col -construction: Montage -cuffs: Poignets -darts: Pinces -elastic: Élastique -fit: Ajustement -pockets: Poches -preferences: Préférences -sleevecap: Tête de manche -sleeves: Manches -style: Style -backPockets: Poches arrière -frontPockets: Poches avant -waistband: Ceinture -fly: Vol -bellaDarts: Pinces de Bella -bellaArmhole: Emmanchure de Bella -bellaAdvanced: Bella avancé -clavi: Bande de pourpre -type: Type -size: Taille diff --git a/packages/i18n/src/locales/fr/options/aaron.yml b/packages/i18n/src/locales/fr/options/aaron.yml deleted file mode 100644 index 4f1a8cbc9c0..00000000000 --- a/packages/i18n/src/locales/fr/options/aaron.yml +++ /dev/null @@ -1,25 +0,0 @@ ---- -armholeDrop: - title: Abaissement d'emmanchure - description: Il s'agit d'abaisser l'emmanchure avec cette valeur. Les valeurs négatives la remonteront. -backlineBend: - title: Forme de l'arrière des emmanchures - description: Détermine la forme/courbure de l'arrière des emmanchures. -hipsEase: - title: Aisance des hanches - description: La marge d'aisance aux hanches. -necklineBend: - title: Forme de l'encolure - description: Détermine la forme/courbure du devant de l'encolure. -necklineDrop: - title: Profondeur d'encolure - description: Détermine de combien abaisser l’encolure l'avant. -shoulderStrapPlacement: - title: Position de la bretelle - description: Détermine si la bretelle est placée plus près du cou (chiffres les plus bas) ou de l’épaule (chiffres les plus élevés). -shoulderStrapWidth: - title: Largeur de la bretelle - description: Détermine la largeur des bretelles. -stretchFactor: - description: Détermine a quantité d'aisance négative en largeur. - title: Élasticité diff --git a/packages/i18n/src/locales/fr/options/albert.yml b/packages/i18n/src/locales/fr/options/albert.yml deleted file mode 100644 index bdfe94f72e3..00000000000 --- a/packages/i18n/src/locales/fr/options/albert.yml +++ /dev/null @@ -1,20 +0,0 @@ ---- -backOpening: - title: Ouverture arrière - description: Contrôle l'ouverture à l'arrière du tablier -chestDepth: - title: Longueur de l'anse - description: Contrôle la longueur des liens -lengthBonus: - title: Supplément de longueur - description: Contrôle la longueur du tablier -bibLength: - title: Longueur du plastron - description: Contrôle la longueur du plastron -bibWidth: - title: Largeur du plastron - description: Contrôle la largeur du plastron -strapWidth: - title: Largeur du lien - description: Contrôle la largeur des liens - diff --git a/packages/i18n/src/locales/fr/options/bee.yml b/packages/i18n/src/locales/fr/options/bee.yml deleted file mode 100644 index e4e8dc4f86e..00000000000 --- a/packages/i18n/src/locales/fr/options/bee.yml +++ /dev/null @@ -1,82 +0,0 @@ ---- -chestEase: - title: Aisance de poitrine - description: Contrôle l'aisance de la poitrine dans le bloc de Bella sur lequel est basé Bee -waistEase: - title: Aisance à la taille - description: Contrôle l'aisance de la taille dans le bloc de Bella sur lequel est basé Bee -bustSpanEase: - title: Aisance de l'écart poitrine - description: Contrôle l'aisance de l'écart de poitrine dans le bloc de Bella sur lequel est basé Bee -topDepth: - title: Profondeur supérieure - description: Contrôle jusqu'à quel point le bonnet de bikini s'étend vers le haut -bottomCupDepth: - title: Profondeur inférieure - description: Contrôle jusqu'à quel point le bonnet de bikini s'étend vers le bas -sideDepth: - title: Profondeur latérale - description: Contrôle jusqu'à quel point le bonnet du bikini se prolonge vers le côté -sideCurve: - title: Courbe latérale - description: Contrôle la courbure du côté du bonnet du bikini -frontCurve: - title: Courbe frontale - description: Contrôle la courbure du devant du bonnet du bikini -bellaGuide: - title: Afficher Bella - description: Affiche le contour du bloc Bella sur lequel est basé Bee -ties: - title: Liens - description: S'il faut inclure les liens, oui ou non -bandTieWidth: - title: Largeur de la bande (sous poitrine) - description: Contrôle la largeur des bandes autour de votre poitrine -bandTieLength: - title: Longueur de la bande (sous poitrine) - description: Contrôle la longueur des bandes autour de votre poitrine -bandTieEnds: - title: Finition des bouts de bandes (sous poitrine) - description: Choisir si vous voulez que la pointe de la bande autour de votre poitrine se termine droite ou en pointe -bandTieColours: - title: Couleurs de la bande (sous poitrine) - description: Que vous vouliez une seule couleur autour de votre poitrine, ou des couleurs doubles -neckTieWidth: - title: Largeur de la bande de cou - description: Contrôle la largeur des bandes autour de votre cou -neckTieLength: - title: Longueur de la bande - description: Contrôle la longueur des bandes autour de votre cou -neckTieEnds: - title: Fin de la bande de cou - description: Choisir si vous voulez que la pointe de la bande autour de votre cou se termine droite ou en pointe -neckTieColours: - title: Couleurs de bande de cou - description: Que vous vouliez une seule couleur autour de votre cou, ou des couleurs doubles -crossBackTies: - title: Bandes croisées dans le dos - description: Si vous souhaitez utiliser la variation de dos croisé de Bee -bandLength: - title: Longueur de la bande (bandes croisées dans le dos) - description: Contrôle la longueur de la bande autour de votre buste pour la variation du dos croisé de Bee -backDartHeight: - title: Hauteur de la pince dos (Bella) - description: Contrôle la hauteur de pince dos dans le bloc de Bella sur lequel est basé Bee -armholeDepth: - title: Profondeur d'emmanchure (Bella) - description: Contrôle la profondeur de l'emmanchure dans le bloc de Bella sur lequel est basé Bee -frontArmholePitchDepth: - title: Profondeur du point pivot de l'emmanchure devant (Bella) - description: Contrôle la profondeur du point pivot de l'emmanchure avant dans le bloc Bella sur lequel est basé le patron Bee -frontShoulderWidth: - title: Largeur de l'épaule devant (Bella) - description: Contrôle la largeur de l'épaule avant dans le bloc de Bella sur lequel est basé le patron Bee -fullChestEaseReduction: - title: Réduction de la poitrine (Bella) - description: Contrôle la réduction du thorax dans le bloc Bella sur lequel est basé Bee -highBustWidth: - title: Largeur du tour de buste supérieur (Bella) - description: Contrôle la largeur du buste supérieur dans le bloc de Bella sur lequel est basé Bee -shoulderToShoulderEase: - title: Aisance d'épaules à épaules (Bella) - description: Contrôle l'aisance d'épaule à épaule dans le bloc Bella sur lequel est basé le patron Bee diff --git a/packages/i18n/src/locales/fr/options/bella.yml b/packages/i18n/src/locales/fr/options/bella.yml deleted file mode 100644 index 9c1ebd6bb6f..00000000000 --- a/packages/i18n/src/locales/fr/options/bella.yml +++ /dev/null @@ -1,58 +0,0 @@ ---- -chestEase: - title: Aisance de poitrine - description: Contrôle la quantité d'aisance au niveau le plus large de votre buste -waistEase: - title: Aisance à la taille - description: Contrôle la quantité d'aisance au niveau de la taille -bustSpanEase: - title: Aisance de l'écart poitrine - description: Contrôle la quantité d'aisance (horizontale) ajoutée à votre poitrine entre les 2 pointes de la poitrine. -shoulderToShoulderEase: - title: Aisance d'épaule à épaule - description: Contrôle la quantité d'aisance entre vos épaules. Initialement réglé sur -.5% parce que Bella implémente un bloc qui est utilisé dans l'industrie. -fullChestEaseReduction: - title: Réduction de l'aisance de la poitrine - description: Vous permet de réduire l'aisance de la poitrine indépendamment pour rendre plus seyant cette zone -backDartHeight: - title: Hauteur de pince dos - description: Contrôle la hauteur de pince dans le dos -bustDartLength: - title: Longueur des pinces poitrine - description: Contrôle la longueur de la pince dos -waistDartLength: - title: Longueur de la pince de taille - description: Contrôle la longueur de la pince de taille -bustDartCurve: - title: Courbe de la pince poitrine - description: Contrôle la courbure de la pince poitrine -armholeDepth: - title: Profondeur d'emmanchure - description: Contrôle la profondeur de l'emmanchure -backArmholeSlant: - title: Inclinaison d'emmanchure dos - description: Modifie légèrement l'inclinaison de courbe de l'emmanchure autour de son point de pivot -frontArmholeCurvature: - title: Coube de l'emmanchure avant - description: Contrôle la profondeur du bas de la courbure d'emmanchure sur le devant -backArmholeCurvature: - title: Courbure de l'emmanchure arrière - description: Contrôle la profondeur du bas de la courbure d'emmanchure dans le dos -frontArmholePitchDepth: - title: Profondeur du point de pivot de l'emmanchure avant - description: Modifie la position horizontale du point de pivot de l'emmanchure avant -backArmholePitchDepth: - title: Profondeur du point de pivot de l'emmanchure dos - description: Modifie la position horizontale du point de pivot de l'emmanchure dos -backNeckCutout: - title: Arrondi de l'encolure au dos - description: Contrôle la profondeur de l'encolure à l'arrière du cou -backHemSlope: - title: Pente de l'ourlet dos - description: Contrôle la pente de l'ourlet à l'arrière -frontShoulderWidth: - title: Largeur d'épaule devant - description: Contrôle l'étroitesse des longueurs d'épaules de devant par rapport au dos -highBustWidth: - title: Largeur de buste supérieur - description: Permet de modifier la largeur de buste supérieur à l'avant diff --git a/packages/i18n/src/locales/fr/options/benjamin.yml b/packages/i18n/src/locales/fr/options/benjamin.yml deleted file mode 100644 index 4874dec8200..00000000000 --- a/packages/i18n/src/locales/fr/options/benjamin.yml +++ /dev/null @@ -1,28 +0,0 @@ ---- -adjustmentRibbon: - title: Ruban d'ajustement - description: Si vous souhaitez inclure ou non un ruban d'ajustement -bandLength: - title: Longueur de bande - description: Longueur de la bande -tipWidth: - title: Largeur de pointe - description: Largeur des pointes -knotWidth: - title: Largeur du noeud - description: Largeur du nœud -bowLength: - title: Longueur de nœud - description: Longueur du nœud (lorsqu'il est noué) -bowStyle: - title: Style de nœud - description: Style du nœud -endStyle: - title: Style de l'extrémité - description: Style des extrémités du noeud -collarEase: - title: Aisance du col - description: La quantité d'aisance à votre cou -ribbonWidth: - title: Largeur du ruban d'ajustement - description: Largeur du ruban diff --git a/packages/i18n/src/locales/fr/options/bent.yml b/packages/i18n/src/locales/fr/options/bent.yml deleted file mode 100644 index 5493d7c3970..00000000000 --- a/packages/i18n/src/locales/fr/options/bent.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- -sleeveBend: - title: Courbe de manche - description: Contrôle la courbure de la manche au niveau du coude. -sleevecapHeight: - title: Hauteur du tête de manche - description: Contrôle la hauteur du tête de manche - diff --git a/packages/i18n/src/locales/fr/options/bob.yml b/packages/i18n/src/locales/fr/options/bob.yml deleted file mode 100644 index 96ab0c7abe7..00000000000 --- a/packages/i18n/src/locales/fr/options/bob.yml +++ /dev/null @@ -1,12 +0,0 @@ -neckRatio: - title: Ouverture du cou - description: Contrôle la taille de l'ouverture du cou par rapport à la taille du bavoir -widthRatio: - title: Largeur - description: Contrôle la largeur du bavoir -lengthRatio: - title: Longeur - description: Contrôle la longueur du bavoir -headSize: - title: Taille de la tête - description: Le tour de tête que vous voulez que le bavoir prenne en compte diff --git a/packages/i18n/src/locales/fr/options/breanna.yml b/packages/i18n/src/locales/fr/options/breanna.yml deleted file mode 100644 index 60062e098e3..00000000000 --- a/packages/i18n/src/locales/fr/options/breanna.yml +++ /dev/null @@ -1,41 +0,0 @@ ---- -shoulderDart: - title: Pince d'épaule - description: S'il faut ou non inclure une pince à l'épaule pour arrondir le dos -shoulderDartSize: - title: Taille de la pince de l'épaule - description: La taille de la pince d'épaule -shoulderDartLength: - title: Longueur de la pince de l'épaule - description: La longueur de la pince d'épaule -waistDart: - title: Pince de taille - description: S'il faut ou non inclure une pince à la taille pour arrondir le dos -waistDartSize: - title: Taille de la pince de taille - description: La taille de la pince de taille -waistDartLength: - title: Longueur de la pince de taille - description: La longueur de la pince de taille -verticalEase: - title: Aisance verticale - description: La quantité d'aisance à répartir sur la longueur du vêtement -waistEase: - title: Aisance à la taille - description: L'ampleur d'aisance à votre taille -primaryBustDart: - title: Pince poitrine - description: Où placer la pince poitrine pour s'adapter à la poitrine -primaryBustDartLength: - title: Longueur des pinces poitrine - description: La longueur de la pince de poitrine -secondaryBustDart: - title: Pince poitrine secondaire - description: Inclut éventuellement une poitrine secondaire pour répartir la mise en forme de la poitrine -secondaryBustDartLength: - title: Longueur de la pince poitrine secondaire - description: La longueur de la pince poitrine secondaire -primaryBustDartShaping: - title: Forme des pinces poitrine - description: Contrôle l'équilibre entre les pinces de buste principale et secondaire - diff --git a/packages/i18n/src/locales/fr/options/brian.yml b/packages/i18n/src/locales/fr/options/brian.yml deleted file mode 100644 index e9a5aa0e983..00000000000 --- a/packages/i18n/src/locales/fr/options/brian.yml +++ /dev/null @@ -1,106 +0,0 @@ ---- -acrossBackFactor: - title: Largeur du dos - description: Contrôle la largeur de votre dos en jouant sur la mesure d'une épaule à l'autre. -armholeDepthFactor: - title: Hauteur de l'emmanchure - description: Contrôle la hauteur de l'emmanchure. Des valeurs plus élevées font une emmanchure plus profonde/basse. -backNeckCutout: - title: Arrondi de l'encolure dos - description: Quelle est la profondeur de l'encolure dans le dos -bicepsEase: - title: Aisance au niveau des biceps - description: 'L''ampleur d''aisance au niveau de votre bras supérieur. Veuillez noter que bien que nous essayons de respecter ce critère, l''ajustement de la manche jusqu''à l''emmanchure est prioritaire sur le respect de la quantité exacte d''aisance.' -collarEase: - title: Aisance du col - description: L'ampleur d'aisance au niveau du cou. -chestEase: - title: Aisance de poitrine - description: La quantité d'aisance à votre poitrine. -cuffEase: - title: Aisance de poignet - description: L'ampleur d'aisance à votre poignet. -draftForHighBust: - title: Tracé pour le haut de la poitrine - description: Tracez le patron pour la mesure du dessus de poitrine (si disponible) au lieu du torse. Cela donnera un vêtement plus ajusté pour les personnes avec des seins. -frontArmholeDeeper: - title: Découpe supplémentaire sur l'emmanchure avant - description: Combien voulez-vous que l’emmanchure devant soit découpée plus profondément que le dos. -lengthBonus: - title: Supplément de longueur - description: La quantité à ajouter pour rallonger le vêtement. Une valeur négative le raccourcira. -s3Collar: - title: 'Changement de couture des épaules: côté col' - description: Augmentez cette option pour déplacer la couture de l'épaule vers l'avant sur le côté. La diminuer la déplace vers l'arrière. -s3Armhole: - title: 'Changement de couture des épaules: côté des bras' - description: Augmente cette option pour déplacer la couture de l'épaule vers l'avant sur le côté de l'armure. Diminuer la glisse vers l'arrière. -shoulderEase: - title: Aisance des épaules - description: La quantité d'aisance à votre épaule. Cela augmente la distance entre épaules pour accommoder des couches ou épaisseurs supplémentaires. -shoulderSlopeReduction: - title: Réduction de la pente d'épaule - description: La quantité par laquelle la pente des épaules est réduite pour permettre un ajustement aux épaules. -sleeveLengthBonus: - title: Bonus de longueur de manche - description: Le montant pour rallonger la manche. Une valeur négative le raccourcira. -sleevecapEase: - title: Aisance tête de manche - description: Le montant par lequel la couture du tête de manche est plus longue que celle des emmanchures. -sleevecapTopFactorX: - title: Tête de manche top X - description: Contrôle l'emplacement horizontal du tête de manche. -sleevecapTopFactorY: - title: Tête de manche top Y - description: Contrôle la hauteur du tête de manche. Plus la valeur est élevée, plus la tête de manche est haute et étroite. -sleevecapBackFactorX: - title: Tête de manche arrière X - description: Contrôle le positionnement du point d'inclinaison arrière du tête de manche sur l'axe des X (horizontal) -sleevecapBackFactorY: - title: Tête de manche arrière Y - description: Contrôle le positionnement du point d'inclinaison arrière du tête de manche sur l'axe des Y (vertical) -sleevecapFrontFactorX: - title: Tête de manche devant X - description: Contrôle le positionnement du point d'inclinaison avant du tête de manche sur l'axe des X (horizontal) -sleevecapFrontFactorY: - title: Tête de manche devant Y - description: Contrôle le positionnement du point d'inclinaison avant du tête de manche sur l'axe des Y (vertical) -sleevecapQ1Offset: - title: Tête de manche décalage Q1 - description: Contrôle la courbure du tête de manche dans le premier quadrant (emmanchure devant). -sleevecapQ2Offset: - title: Tête de manche décalage Q2 - description: Contrôle la courbure du tête de manche dans le deuxième quadrant (épaule avant). -sleevecapQ3Offset: - title: Tête de manche décalage Q3 - description: Contrôle la courbure du tête de manche dans le troisième quadrant (épaule arrière). -sleevecapQ4Offset: - title: Tête de manche décalage Q4 - description: Contrôle la courbure du tête de manche dans le quatrième quadrant (emmanchure au dos). -sleevecapQ1Spread1: - title: Tête de manche abaissement Q1 - description: Contrôle l'abaissement de la courbure du premier quadrant de la tête de manche vers l'emmanchure -sleevecapQ1Spread2: - title: Tête de manche élévation Q1 - description: Contrôle l'élévation de la courbure du premier quadrant de la tête de manche vers l'épaule -sleevecapQ2Spread1: - title: Tête de manche abaissement Q2 - description: Contrôle l'abaissement de la courbure du second quadrant de la tête de manche vers l'emmanchure -sleevecapQ2Spread2: - title: Tête de manche élévation Q2 - description: Contrôle l'élévation de la courbure du second quadrant de la tête de manche vers l'épaule -sleevecapQ3Spread1: - title: Tête de manche élévation Q3 - description: Contrôle l'élévation de la courbure du troisième quadrant de la tête de manche vers l'épaule -sleevecapQ3Spread2: - title: Tête de manche abaissement Q3 - description: Contrôle l'abaissement de la courbure du troisième quadrant de la tête de manche vers l'emmanchure -sleevecapQ4Spread1: - title: Tête de manche élévation Q4 - description: Contrôle l'élévation de la courbure du quatrième quadrant de la tête de manche vers l'épaule -sleevecapQ4Spread2: - title: Tête de manche abaissement Q4 - description: Contrôle l'abaissement de la courbure du quatrième quadrant de la tête de manche vers l'emmanchure -sleeveWidthGuarantee: - title: Largeur des manches garantie - description: Contrôle la largeur de manche garantie. Cela détermine à quel point nous pouvons modifier la largeur de la manche pour l'adapter à l'emmanchure. diff --git a/packages/i18n/src/locales/fr/options/bruce.yml b/packages/i18n/src/locales/fr/options/bruce.yml deleted file mode 100644 index 6a2ca59c13b..00000000000 --- a/packages/i18n/src/locales/fr/options/bruce.yml +++ /dev/null @@ -1,19 +0,0 @@ ---- -bulge: - title: Renflement - description: Augmentez l'angle pour créer plus d'espace dans la poche avant. -legBonus: - title: Bonus de longueur de jambes - description: Longueur supplémentaire à ajouter aux jambes. -rise: - title: Élévation de ceinture - description: Montant d'élévation pour la ceinture vers la taille. Une valeur négative l'abaissera. -stretch: - title: Élasticité - description: La quantité d'aisance négative. -legStretch: - title: Élasticité des jambes - description: 'Pour de meilleurs résultats, vous souhaitez ajuster vos jambes plus étroites - choisissez non à l''écart.' -backRise: - title: Élévation arrière - description: Pourcentage selon lequel la taille sera relevée à l'arrière. diff --git a/packages/i18n/src/locales/fr/options/carlita.yml b/packages/i18n/src/locales/fr/options/carlita.yml deleted file mode 100644 index de09e33f79c..00000000000 --- a/packages/i18n/src/locales/fr/options/carlita.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -contour: - title: Contour - description: Contrôle à quel point la courbe de la découpe princesse sera saillante ou adoucie. diff --git a/packages/i18n/src/locales/fr/options/carlton.yml b/packages/i18n/src/locales/fr/options/carlton.yml deleted file mode 100644 index 9275222407f..00000000000 --- a/packages/i18n/src/locales/fr/options/carlton.yml +++ /dev/null @@ -1,31 +0,0 @@ ---- -seatEase: - title: Aisance d'assise - description: Quantité d'aisance autour de vos fesses -pocketPlacementHorizontal: - title: Placement horizontal des poches - description: L'emplacement (horizontal) des poches -pocketPlacementVertical: - title: Placement vertical des poches - description: L'emplacement (vertical) des poches -collarHeight: - title: Hauteur du col - description: Hauteur du col -length: - title: Longueur - description: Longueur totale -pocketFlapRadius: - title: Angle de rabat de poche - description: Le montant par lequel le rabat de poche est arrondi -pocketRadius: - title: Arrondi de poche - description: Le montant par lequel la poche est arrondie -chestPocketHeight: - title: Hauteur de la poche de poitrine - description: Hauteur de la poche de poitrine -beltWidth: - title: Largeur de ceinture - description: Largeur de ceinture -buttonSpacingHorizontal: - title: Espacement horizontal des boutons - description: L'espacement horizontal des boutons détermine également le chevauchement de la fermeture avant diff --git a/packages/i18n/src/locales/fr/options/cathrin.yml b/packages/i18n/src/locales/fr/options/cathrin.yml deleted file mode 100644 index 4c8f91e617c..00000000000 --- a/packages/i18n/src/locales/fr/options/cathrin.yml +++ /dev/null @@ -1,28 +0,0 @@ ---- -panels: - title: Nombre de pièces - description: Le nombre de pièces à tracer. Plus il y a de pièces, mieux c'est pour l'ajustement des modèles avec courbes. - options: - '11': 11 pièces - '13': 13 pièces -waistReduction: - title: Réduction de la taille - description: Le montant par lequel vous voulez que le corset resserre votre taille. -backOpening: - title: Ouverture arrière - description: Ouverture au centre de la fermeture du dos. -backRise: - title: Élévation dos - description: À quel point les panneaux arrière s’élèvent de vos bras au centre de votre dos. -backDrop: - title: Abaissement du dos - description: Combien les panneaux arrière s'abaissent de vos hanches vers votre centre arrière Les valeurs négatives vont lever le dos. -frontRise: - title: Élévation avant - description: 'Élévation des panneaux avant au centre avant, entre vos seins. Les valeurs négatives les diminueront.' -frontDrop: - title: Abaissement avant - description: Combien les panneaux avant s'abaissent de vos hanches vers votre centre avant. -hipRise: - title: Élévation des hanches - description: Combien les panneaux latéraux montent sur vos hanches. diff --git a/packages/i18n/src/locales/fr/options/charlie.yml b/packages/i18n/src/locales/fr/options/charlie.yml deleted file mode 100644 index 368626d189a..00000000000 --- a/packages/i18n/src/locales/fr/options/charlie.yml +++ /dev/null @@ -1,52 +0,0 @@ ---- -backPocketHorizontalPlacement: - title: Placement horizontal de la poche arrière - description: Contrôle le placement horizontal de la poche arrière -backPocketVerticalPlacement: - title: Placement vertical de la poche arrière - description: Contrôle le placement vertical de la poche arrière -backPocketWidth: - title: Largeur de la poche arrière - description: Contrôle la largeur de la poche arrière -backPocketDepth: - title: Profondeur de la poche arrière - description: Contrôle la profondeur de la poche arrière -backPocketFacing: - title: Fond de poche arrière - description: Contrôle s'il faut inclure ou non un fond dans les poches arrière -frontPocketSlantDepth: - title: Profondeur de la poche avant - description: Contrôle la profondeur de la poche (frontale) -frontPocketSlantWidth: - title: Largeur de la poche frontale - description: Contrôle la largeur de la fenêtre de poche (frontale) -frontPocketSlantRound: - title: Arrondi de poche avant - description: Contrôle à quelle distance de la fin de l'objectif nous commençons à arrondir dans le dehors -frontPocketSlantBend: - title: courbure de la poche avant - description: Contrôle le rayon par lequel on arrondit la poche enfoncée dans la sortie -frontPocketWidth: - title: Largeur des poches avant - description: Contrôle la largeur du sac de poche avant -frontPocketDepth: - title: Profondeur des poches avant - description: Contrôle la profondeur du sac de poche avant -frontPocketFacing: - title: Poche avant face - description: Contrôle la distance à laquelle la poche est orientée dans le sac de poche -beltLoops: - title: Boucles de ceinture - description: Contrôle la quantité de boucles de ceinture -flyCurve: - title: Voler la courbe - description: Contrôle la courbure de la couture J-fly -flyLength: - title: Longueur de la mouche - description: Contrôle la longueur de la mouche -flyWidth: - title: Fly width - description: Contrôle à quelle distance le J-couture de décalage par rapport au bord de la volée -waistbandCurve: - title: Courbe de la ceinture - description: Contrôle la courbure de la ceinture. diff --git a/packages/i18n/src/locales/fr/options/cornelius.yml b/packages/i18n/src/locales/fr/options/cornelius.yml deleted file mode 100644 index dce7f443e51..00000000000 --- a/packages/i18n/src/locales/fr/options/cornelius.yml +++ /dev/null @@ -1,26 +0,0 @@ ---- -fullness: - title: Ampleur - description: Contrôle l'ampleur de la culotte -waistbandBelowWaist: - title: Abaissement de la ceinture - description: Pourcentage pour déplacer la ceinture sous la taille réelle -waistReduction: - title: Réduction de la taille - description: Pourcentage de réduction de la ceinture -cuffWidth: - title: Largeur du bracelet - description: Largeur du bracelet de la jambe -cuffStyle: - title: Style de poignet - description: Style du bracelet de la jambe -bandBelowKnee: - title: Bracelet sous le genou - description: Contrôle la distance du bracelet sous le genou -kneeToBelow: - title: Longueur de poignet - description: Contrôle l'épaisseur du bracelet par rapport au genou -ventLength: - title: Longueur de la fente - description: Contrôle la longueur de la fente entre le genou et le bracelet - diff --git a/packages/i18n/src/locales/fr/options/diana.yml b/packages/i18n/src/locales/fr/options/diana.yml deleted file mode 100644 index 01e0c1b94e0..00000000000 --- a/packages/i18n/src/locales/fr/options/diana.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- -shoulderSeamLength: - title: Longueur de couture d'épaule - description: Contrôle la longueur de la couture d'épaule -drapeAngle: - title: Angle du drapé - description: Contrôle le montant du drapé - diff --git a/packages/i18n/src/locales/fr/options/florence.yml b/packages/i18n/src/locales/fr/options/florence.yml deleted file mode 100644 index cea3ea49937..00000000000 --- a/packages/i18n/src/locales/fr/options/florence.yml +++ /dev/null @@ -1,10 +0,0 @@ ---- -height: - title: Hauteur - description: Contrôle la hauteur du masque -length: - title: Longeur - description: Contrôle la longueur du masque -curve: - title: Courbe - description: Contrôle la courbe du bord supérieur du masque diff --git a/packages/i18n/src/locales/fr/options/florent.yml b/packages/i18n/src/locales/fr/options/florent.yml deleted file mode 100644 index 8001b7a3e21..00000000000 --- a/packages/i18n/src/locales/fr/options/florent.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -headEase: - title: Aisance de tour de tête - description: La quantité d'aisance autour de votre tête diff --git a/packages/i18n/src/locales/fr/options/hi.yml b/packages/i18n/src/locales/fr/options/hi.yml deleted file mode 100644 index 7dd6c1c0465..00000000000 --- a/packages/i18n/src/locales/fr/options/hi.yml +++ /dev/null @@ -1,12 +0,0 @@ -hungry: - title: Affamé - description: Change la forme de la bouche pour voir que Hi a faim -nosePointiness: - title: Forme pointue du nez - description: Contrôle comment le nez de Hi est pointu -aggressive: - title: Agressif - description: Donnez des dents pointues à Hi, ou non -size: - title: Taille - description: Les requins sont disponibles dans toutes les tailles, tout comme Hi diff --git a/packages/i18n/src/locales/fr/options/holmes.yml b/packages/i18n/src/locales/fr/options/holmes.yml deleted file mode 100644 index 04332a858a8..00000000000 --- a/packages/i18n/src/locales/fr/options/holmes.yml +++ /dev/null @@ -1,28 +0,0 @@ ---- -headEase: - title: Aisance du tour de tête - description: La quantité d'aisance autour de votre tête. -lengthRatio: - title: Profondeur de tête - description: Contrôle la longueur de la couronne et des rabats d'oreilles -gores: - title: Nombre de pans - description: Le nombre de pans utilisés pour construire la couronne -visorAngle: - title: Angle de la visière - description: L'angle d'arc utilisé pour tracer la courbe intérieure de la visière -visorWidth: - title: Largeur de la visière - description: Contrôle la largeur de la visière -earLength: - title: Longueur du rabat de l'oreille - description: Contrôle la longueur des rabats de l'oreille indépendamment des autres pièces de contour -earWidth: - title: Largeur du rabat de l'oreille - description: Contrôle la largeur des rabats de l'oreille -buttonhole: - title: Guide des boutonnières - description: Ajoute une boutonnière au rabat d'oreille pour vous aider à tracer la variante du rabat de l'oreille avec boutonnière -visorLength: - title: Longueur de la visière - description: Contrôle la longueur de la visière diff --git a/packages/i18n/src/locales/fr/options/hortensia.yml b/packages/i18n/src/locales/fr/options/hortensia.yml deleted file mode 100644 index 1528d93aa3d..00000000000 --- a/packages/i18n/src/locales/fr/options/hortensia.yml +++ /dev/null @@ -1,13 +0,0 @@ ---- -size: - title: Taille - description: Contrôle la taille globale du sac à main -zipperSize: - title: Taille du Zip - description: Quelle taille de zip utliser -strapLength: - title: Longueur du lien - description: Contrôle la longueur des anses -handleWidth: - title: Largeur d'anse - description: Contrôle la largeur de l'anse diff --git a/packages/i18n/src/locales/fr/options/huey.yml b/packages/i18n/src/locales/fr/options/huey.yml deleted file mode 100644 index 7eb03164bd9..00000000000 --- a/packages/i18n/src/locales/fr/options/huey.yml +++ /dev/null @@ -1,22 +0,0 @@ ---- -pocket: - title: Poche - description: S'il faut inclure une poche avant ou non -pocketHeight: - title: Hauteur de la poche - description: Contrôle la hauteur de la poche -hoodHeight: - title: Hauteur de capuche - description: Contrôle la hauteur de la capuche -hoodCutback: - title: Coupe arrière de capuche - description: Contrôle la courbure à l'arrière de la capuche -hoodClosure: - title: Fermeture de capuche - description: Contrôle la quantité de capuche sur la partie avant -hoodDepth: - title: Profondeur du capuche - description: Contrôle la profondeur de la capuche -hoodAngle: - title: Angle de capuche - description: Contrôle l'angle de fixation de la capuche diff --git a/packages/i18n/src/locales/fr/options/hugo.yml b/packages/i18n/src/locales/fr/options/hugo.yml deleted file mode 100644 index 8026680d042..00000000000 --- a/packages/i18n/src/locales/fr/options/hugo.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -hipsEase: - title: Aisance des hanches - description: La marge d'aisance aux hanches. diff --git a/packages/i18n/src/locales/fr/options/index.js b/packages/i18n/src/locales/fr/options/index.js deleted file mode 100644 index 38731b05a6f..00000000000 --- a/packages/i18n/src/locales/fr/options/index.js +++ /dev/null @@ -1,127 +0,0 @@ -import florence from './florence.yml' -import brian from './brian.yml' -import bella from './bella.yml' -import breanna from './breanna.yml' -import diana from './diana.yml' -import aaron from './aaron.yml' -import simon from './simon.yml' -import simone from './simone.yml' -import sven from './sven.yml' -import wahid from './wahid.yml' -import bent from './bent.yml' -import bruce from './bruce.yml' -import cathrin from './cathrin.yml' -import holmes from './holmes.yml' -import huey from './huey.yml' -import hugo from './hugo.yml' -import tamiko from './tamiko.yml' -import teagan from './teagan.yml' -import trayvon from './trayvon.yml' -import jaeger from './jaeger.yml' -import carlton from './carlton.yml' -import carlita from './carlita.yml' -import benjamin from './benjamin.yml' -import florent from './florent.yml' -import theo from './theo.yml' -import sandy from './sandy.yml' -import shin from './shin.yml' -import penelope from './penelope.yml' -import waralee from './waralee.yml' -import titan from './titan.yml' -import paco from './paco.yml' -import albert from './albert.yml' -import hortensia from './hortensia.yml' -import cornelius from './cornelius.yml' -import charlie from './charlie.yml' -import ursula from './ursula.yml' -import lunetius from './lunetius.yml' -import tiberius from './tiberius.yml' -import walburga from './walburga.yml' -import bee from './bee.yml' -import hi from 'hi.yml' -import unice from 'unice.yml' -import lucy from 'lucy.yml' -import bob from 'bob.yml' -import noble from 'noble.yml' -import octoplushy from 'octoplushy.yml' -import { options as optionList } from '@freesewing/pattern-info' -import shared from '../../../shared-options.yml' - -let patterns = { - florence, - bella, - brian, - breanna, - diana, - aaron, - simon, - simone, - sven, - wahid, - bent, - bruce, - cathrin, - huey, - hugo, - tamiko, - trayvon, - jaeger, - carlton, - carlita, - benjamin, - florent, - theo, - sandy, - shin, - penelope, - waralee, - holmes, - titan, - paco, - teagan, - albert, - hortensia, - cornelius, - charlie, - ursula, - yuri: false, - lunetius, - tiberius, - walburga, - bee, - hi, - unice, - lucy, - bob, - noble, - octoplushy, -} - -let options = {} -for (let pattern in patterns) { - options[pattern] = {} - if (typeof optionList[pattern] === 'undefined') - throw new Error('pattern ' + pattern + ' has no option list') - for (let option of optionList[pattern]) { - let value = patterns[pattern][option] - if (typeof value === 'object') options[pattern][option] = value - else { - if (typeof value === 'undefined') { - if (shared[pattern]) { - if (shared[pattern].dflt && typeof patterns[shared[pattern].dflt][option] === 'object') { - options[pattern][option] = patterns[shared[pattern].dflt][option] - } else if ( - typeof shared[pattern].other !== 'undefined' && - typeof shared[pattern].other[option] === 'string' - ) { - options[pattern][option] = patterns[shared[pattern].other[option]][option] - } else { - throw new Error(`No option translation found for ${option} in ${pattern}`) - } - } - } - } - } -} - -export default options diff --git a/packages/i18n/src/locales/fr/options/jaeger.yml b/packages/i18n/src/locales/fr/options/jaeger.yml deleted file mode 100644 index daf26e31908..00000000000 --- a/packages/i18n/src/locales/fr/options/jaeger.yml +++ /dev/null @@ -1,112 +0,0 @@ ---- -centerBackDart: - title: Pinces milieu dos - description: Fléchette au centre du cou pour accommoder un dos arrondi -sleeveVentLength: - title: Longueur de la fente des manches - description: Longueur de la fente des manches -sleeveVentWidth: - title: Largeur de la fente des manches - description: Largeur de la fente des manches -chestShaping: - title: Courbe du col poitrine - description: Quantité de mise en forme pour la courbe de la poitrine -frontDartPlacement: - title: Emplacement des pinces devant - description: Emplacement des pinces devant -frontOverlap: - title: Chevauchement avant - description: Taux de chevauchement du pan des boutonnières vers le pan des boutons (largeur de la croisure) -sideFrontPlacement: - title: Placement latéral/avant - description: L'emplacement de la séparation côté / devant -chestPocketDepth: - title: Profondeur de la poche de poitrine - description: La profondeur de la poche de poitrine -chestPocketWidth: - title: Largeur de la poche poitrine - description: Largeur de la poche poitrine -chestPocketPlacement: - title: Emplacement poche de poitrine - description: L'emplacement de la poche de poitrine -chestPocketAngle: - title: Angle de poche de poitrine - description: Angle d'inclinaison de la poche de poitrine -chestPocketWeltSize: - title: Taille du revers de la poche poitrine - description: La taille du revers de la poche de poitrine -frontPocketPlacement: - title: Emplacement des poches avant - description: Positionnement des poches avant -frontPocketWidth: - title: Largeur des poches avant - description: La largeur des poches avant -frontPocketDepth: - title: Profondeur des poches avant - description: La profondeur des poches avant -frontPocketRadius: - title: Arrondi des poches avant - description: Le rayon par lequel la poche avant est arrondie -innerPocketPlacement: - title: Placement de la poche intérieure - description: L'emplacement de la poche intérieure -innerPocketWidth: - title: Largeur de la poche intérieure - description: La largeur de la poche intérieure -innerPocketDepth: - title: Profondeur de la poche intérieure - description: La profondeur de la poche intérieure -innerPocketWeltHeight: - title: Hauteur du revers de la poche intérieure - description: La hauteur du revers de la poche intérieure -pocketFoldover: - title: Recouvrement de la poche - description: Montant de recouvrement du tissu principal sur la poche -centerFrontHemDrop: - title: Décalage de la longueur à l'avant - description: La valeur par laquelle la longueur de l'avant est abaissée -backVent: - title: Fente dos - description: Nombre de fentes à l'arrière -backVentLength: - title: Longueur de la fente arrière - description: La longueur du ou des fente(s) arrière(s) -buttonLength: - title: Longueur de boutonnage - description: La distance sur laquelle les boutons sont répartis -frontCutawayAngle: - title: Angle de coupe avant - description: L'angle de découpe du pan avant -frontCutawayStart: - title: Départ de l'arrondi de coupe avant - description: L'endroit où le pan de la veste commence à s'ouvrir vers l'ourlet du bas -frontCutawayEnd: - title: Fin de l'arrondi de coupe avant - description: En augmentant cette valeur, l'arrondi du pan se terminera plus proche du milieu devant -collarSpread: - title: Écartement du col - description: L'écartement du col contrôle la position des pointes du col - plus c'est grand, plus elles seront vers les épaules -lapelStart: - title: Début des revers - description: Emplacement où les revers démarrent sur le milieu devant -lapelReduction: - title: Réduction de revers - description: Combien la pointe des revers se réduit vers l'intérieur -collarHeight: - title: Hauteur du col - description: Hauteur du col -collarNotchDepth: - title: Profondeur du col cranté - description: Profondeur du col cranté -collarNotchAngle: - title: Angle du col cranté - description: Angle du col cranté -collarNotchReturn: - title: Revers du col cranté - description: Combien le col dépasse du cran, par rapport au revers du bas -rollLineCollarHeight: - title: Hauteur de la ligne de cassure du col - description: Combien la ligne de cassure épouse le cou -hemRadius: - title: Rayon d'ourlet - description: Le montant par lequel l'ourlet est arrondi diff --git a/packages/i18n/src/locales/fr/options/lucy.yml b/packages/i18n/src/locales/fr/options/lucy.yml deleted file mode 100644 index fe2cb3f08b1..00000000000 --- a/packages/i18n/src/locales/fr/options/lucy.yml +++ /dev/null @@ -1,10 +0,0 @@ -width: - title: Largeur - description: Largeur de la poche -length: - title: Longueur - description: Longueur (profondeur) de la poche -edge: - title: Rétrécissement - description: Contrôle comment l'ouverture de la poche rétrécie à l'intérieur - diff --git a/packages/i18n/src/locales/fr/options/lunetius.yml b/packages/i18n/src/locales/fr/options/lunetius.yml deleted file mode 100644 index 226435037cd..00000000000 --- a/packages/i18n/src/locales/fr/options/lunetius.yml +++ /dev/null @@ -1,16 +0,0 @@ ---- -lengthRatio: - title: Ratio de longueur - description: Contrôle la longueur du vêtement -widthRatio: - title: Ratio de largeur - description: Contrôle la largeur du vêtement -length: - title: Longueur - description: Choisit parmi les différents styles de longueur - options: - toKnee: Aux genoux - toBelowKnee: Sous les genoux - toHips: Aux hanches - toUpperLeg: À mi-cuisses - toFloor: Jusqu'au sol diff --git a/packages/i18n/src/locales/fr/options/noble.yml b/packages/i18n/src/locales/fr/options/noble.yml deleted file mode 100644 index 20531176ff1..00000000000 --- a/packages/i18n/src/locales/fr/options/noble.yml +++ /dev/null @@ -1,61 +0,0 @@ -dartPosition: - description: Contrôle s'il faut séparer à l'épaule ou à l'emmanchure - title: Position de la pince -chestEase: - description: Contrôle la quantité d'aisance de votre poitrine - title: Aisance de poitrine -waistEase: - description: Contrôle la quantité d'aisance au niveau de la taille - title: Aisance à la taille -bustSpanEase: - description: Contrôle l'ampleur de l'aisance le long du buste - title: Aisance de l'écart poitrine -backDartHeight: - description: Hauteur de la pince de dos - title: Contrôle la hauteur de la pince de dos -waistDartLength: - description: Contrôle la longueur de la pince de taille - title: Longueur de la pince de taille -shoulderDartPosition: - description: Contrôle la position de la pince d'épaule - title: Position de la pince d'épaule -upperDartLength: - description: Contrôle la longueur de la pince supérieure - title: Longueur de la pince supérieure -armholeDartPosition: - description: Contrôle la position de la pince d'emmanchure - title: Position de la pince d'emmanchure -armholeDepth: - description: Contrôle la profondeur de l'emmanchure - title: Profondeur d'emmanchure -backArmholeSlant: - description: Contrôle l'inclinaison de l'emmanchure dos - title: Inclinaison d'emmanchure dos -backArmholeCurvature: - description: Contrôle la profondeur du bas de la courbure d'emmanchure dans le dos - title: Courbure de l'emmanchure arrière -frontArmholeCurvature: - title: Courbe de l'emmanchure avant - description: Contrôle la profondeur du bas de la courbure d'emmanchure sur le devant -frontArmholePitchDepth: - description: Contrôle la profondeur de l'emmanchure sur le devant - title: Profondeur du point de pivot de l'emmanchure avant -backArmholePitchDepth: - description: Contrôle la profondeur de l'emmanchure dans le dos - title: Profondeur du point de pivot de l'emmanchure dos -backNeckCutout: - description: Contrôle la profondeur de l'encolure dans le dos - title: Arrondi de l'encolure dos -backHemSlope: - description: Contrôle la pente de l'ourlet arrière - title: Pente de l'ourlet arrière -frontShoulderWidth: - description: Contrôle la largeur ajoutée devant les épaules - title: Largeur d'épaule devant -highBustWidth: - description: Contrôle la largeur du haut de poitrine - title: Largeur du haut de poitrine -shoulderToShoulderEase: - description: Contrôle l'aisance sur la mesure épaule à épaule - title: Aisance d'épaule à épaule - diff --git a/packages/i18n/src/locales/fr/options/octoplushy.yml b/packages/i18n/src/locales/fr/options/octoplushy.yml deleted file mode 100644 index 3abf6315d31..00000000000 --- a/packages/i18n/src/locales/fr/options/octoplushy.yml +++ /dev/null @@ -1,28 +0,0 @@ -size: - title: Taille - description: Contrôle la taille globale -type: - title: Type - description: Vous permet de choisir une des variantes de ce design -armWidth: - title: Largeur de bras - description: Contrôle la largeur des bras -armLength: - title: Longueur des bras - description: Contrôle la longueur des bras -neckWidth: - title: Largeur du cou - description: Détermine la largeur du cou -armTaper: - title: Spirales des bras - description: Contrôle la quantité de spirales que les tentacules font -bottomTopArmRatio: - title: Ratio entre le bras supérieur et inférieur - description: "FIXME: Aucune idée de ce que cela fait" -bottomArmReduction: - title: Réduction du bras inférieur - description: "FIXME: Aucune idée de ce que cela fait" -bottomArmReductionPlushy: - title: Réduction du bras inférieur (en peluche) - description: "FIXME: Aucune idée de ce que cela fait" - diff --git a/packages/i18n/src/locales/fr/options/paco.yml b/packages/i18n/src/locales/fr/options/paco.yml deleted file mode 100644 index b095d1424b9..00000000000 --- a/packages/i18n/src/locales/fr/options/paco.yml +++ /dev/null @@ -1,16 +0,0 @@ ---- -heelEase: - title: Aisance de talon - description: La quantité d'aisance à votre talon (au passage la jambe de pantalon) -frontPockets: - title: Poches avant - description: Si oui ou non ajouter des poches avant sur la couture latérale -backPockets: - title: Poches arrière - description: Si oui ou non ajouter des poches à l'arrière -elasticatedHem: - title: Ourlet élastiqué - description: Si vous voulez ou non un ourlet élastiqué -ankleElastic: - title: Largeur élastique de cheville/ourlet - description: Largeur de l'élastique (optionnel) à la cheville/ourlet diff --git a/packages/i18n/src/locales/fr/options/penelope.yml b/packages/i18n/src/locales/fr/options/penelope.yml deleted file mode 100644 index a6302b9240f..00000000000 --- a/packages/i18n/src/locales/fr/options/penelope.yml +++ /dev/null @@ -1,46 +0,0 @@ ---- -backDartDepthFactor: - title: Profondeur de la pince dos - description: Jusqu'où va la pince arrière depuis la ceinture, facteur de la mensuration "Hauteur taille bassin". -backVent: - title: Fentes arrière - description: Ajouter une fente au dos de la jupe. -backVentLength: - title: Longueur de fente arrière - description: Longueur de la fente dos par rapport à la longueur de la jupe. -dartToSideSeamFactor: - title: Pince de côté - description: Pourcentage de la part de la réduction de la hanche à la taille par rapport à la couture latérale. -frontDartDepthFactor: - title: Profondeur de la pince avant - description: Jusqu'où va la pince avant depuis la ceinture, facteur de la mensuration "Hauteur taille bassin". -hem: - title: Taille de l'ourlet - description: La taille de l'ourlet. Mesure en valeurs absolues. -hemBonus: - title: Bonus d'ourlet - description: Cette option réduira la circonférence de la jupe à l'ourlet. Pourcentage de la mesure de l'assise. -lengthBonus: - title: Supplément de longueur - description: Ceci définit la longueur de la jupe. Pourcentage de la mensuration "Hauteur taille genou". -nrOfDarts: - title: Nombre de pinces - description: Le nombre de pinces utilisées dans le patron. Maximum de 2. Cette option peut être réduite par le patron si les calculs créent des pinces trop petites. -seatEase: - title: Aisance d'assise - description: Quantité d'aisance au niveau de l'assise. -waistBand: - title: Ceinture - description: Ajouter une ceinture au patron. -waistBandWidth: - title: Largeur de ceinture - description: La largeur de la ceinture. -waistEase: - title: Aisance à la taille - description: Quantité d'aisance au niveau de la taille. -zipperLocation: - title: Emplacement du Zip - description: L'emplacement du zip (fermeture éclair). - options: - backSeam: À la couture arrière - sideSeam: À la couture latérale diff --git a/packages/i18n/src/locales/fr/options/sandy.yml b/packages/i18n/src/locales/fr/options/sandy.yml deleted file mode 100644 index 536e15e5586..00000000000 --- a/packages/i18n/src/locales/fr/options/sandy.yml +++ /dev/null @@ -1,26 +0,0 @@ ---- -waistbandWidth: - title: Largeur de ceinture - description: Contrôle la largeur de la ceinture. -waistbandPosition: - title: Position de ceinture - description: Contrôle la position de la ceinture. -waistbandShape: - title: Forme de ceinture - description: Si vous voulez une ceinture droite ou bien de forme particulière. -circleRatio: - title: Ratio circulaire - description: Le pourcentage d'un cercle auquel vous souhaitez que la jupe corresponde. -waistbandOverlap: - title: Chevauchement de la ceinture - description: Le montant par lequel la taille se chevauche. -gathering: - title: Fronçage - description: Le pourcent par lequel le tissu du haut de la jupe est plus long que celui du bas de la ceinture. -seamlessFullCircle: - title: Cercle entier sans couture - description: Permet une jupe totalement circulaire sans couture. -hemWidth: - title: Hem width - description: Largeur de l'ourlet - diff --git a/packages/i18n/src/locales/fr/options/shin.yml b/packages/i18n/src/locales/fr/options/shin.yml deleted file mode 100644 index b31aa53a191..00000000000 --- a/packages/i18n/src/locales/fr/options/shin.yml +++ /dev/null @@ -1,7 +0,0 @@ ---- -legReduction: - title: Réduction de jambe - description: Réduit l'ouverture de la jambe pour éviter les effets de flottement -elasticWidth: - title: Largeur d'élastique - description: Largeur de l'élastique à la taille diff --git a/packages/i18n/src/locales/fr/options/simon.yml b/packages/i18n/src/locales/fr/options/simon.yml deleted file mode 100644 index 5f6065979a2..00000000000 --- a/packages/i18n/src/locales/fr/options/simon.yml +++ /dev/null @@ -1,136 +0,0 @@ ---- -backDarts: - title: Pinces dos - description: Inclure ou non des pinces au dos - options: - auto: Automatique - always: Toujours - never: Jamais -backDartShaping: - title: Forme de la pince dos - description: L'ajustement résultant des pinces du dos -barrelCuffNarrowButton: - title: Bouton de resserrage de poignet - description: Détermine si on va inclure un bouton pour rendre les poignets de manche plus étroits. Cette option n'est pertinente que pour les poignets de manche classiques. -boxPleat: - title: Pli plat - description: Inclure ou non un pli plat au dos -boxPleatWidth: - title: Largeur du pli plat - description: Largeur totale du pli plat -boxPleatFold: - title: Repli du pli plat - description: La largeur du pli plat repliée à l'intérieur -buttonPlacketStyle: - title: Style de patte de boutonnage - description: Style de la patte de boutonnage - options: - classic: Style classique (gorge américaine, bande avec surpiqûres) - seamless: Style français (gorge simple, sans couture) -buttonPlacketWidth: - title: Largeur de patte de boutonnage - côté boutons - description: Largeur de la patte de boutonnage sur le côté des boutons. -buttonFreeLength: - title: Longueur sans bouton - description: Quelle distance laisser sans bouton à partir du bas devant de la chemise . -buttonholePlacketFoldWidth: - title: Largeur du pli de la patte de boutonnage (côté boutonnières) - description: Largeur du pli de la gorge (patte de boutonnage, du côté des boutonnières). -buttonholePlacketStyle: - title: Style de patte de boutonnage (côté boutonnières) - description: Style de la gorge (patte de boutonnage, côté boutonnières). - options: - classic: Style classique - seamless: Style français (sans couture) -buttonholePlacketWidth: - title: Largeur de patte de boutonnage (côté boutonnières) - description: Largeur de la gorge (patte de boutonnage, côté des boutonnières). -buttons: - title: Nombre de boutons - description: Le nombre de boutons sur la fermeture avant. -collarAngle: - title: Angle du col - description: L'angle des pointes de col. -collarBend: - title: Courbure du col - description: La courbure du col. -collarFlare: - title: Évasement du col - description: L'évasement des pointes du col. -collarGap: - title: Écart du col - description: L'écart entre les deux extrémités du col. -collarRoll: - title: Repli du col - description: La valeur rendant le tombant du col plus large que le pied de col. -collarStandBend: - title: Courbure centrale du pied de col - description: La courbure centrale du pied de col. -collarStandCurve: - title: Courbe des extrémités du pied de col - description: La courbe des extrémités du pied de col. -collarStandWidth: - title: Largeur du pied de col - description: Largeur du porte-col. -cuffButtonRows: - title: Rangée de boutons de manchette - description: Simple ou double rangée de boutons de poignet. Cette option n'est pertinente que pour les poignets classiques. - options: - '1': rangée de boutons de manchette simple - '2': rangée de boutons de manchette double -cuffDrape: - title: Drapé du bas de manche - description: Il s'agit de la largeur supplémentaire de tissu de la manche par rapport au poignet, à l'endroit où ils sont joints. -cuffLength: - title: Longueur de bracelet - description: La longueur des poignets. -cuffStyle: - title: Style de bracelet - description: Style de poignets. - options: - roundedBarrelCuff: Poignet classique rond - angledBarrelCuff: Poignet classique cassé - straightBarrelCuff: Poignet classique carré - roundedFrenchCuff: Poignet mousquetaire rond - angledFrenchCuff: Poignet mousquetaire cassé - straightFrenchCuff: Poignet mousquetaire carré -extraTopButton: - title: Bouton supérieur supplémentaire - description: Inclure ou non un bouton supplémentaire en haut de fermeture avant. -ffsa: - title: Couture abattu à plat autorisée - description: La quantité de la marge de couture sur les coutures abattues en proportion de la marge de couture normale -hemCurve: - title: Courbe de l'ourlet - description: La hauteur de l'arrondi sur un ourlet arrondi. -hemStyle: - title: Style d'ourlet - description: Le style de l'ourlet de la chemise. - options: - straight: Ourlet droit - baseball: Ourlet liquette - slashed: Ourlet arrondi -roundBack: - title: Arrondi arrière - description: Pour installer un rond-point arrière, cela ajoute de la longueur au centre du dos (au yoke) que les foulards de vers les côtés. -seperateButtonholePlacket: - title: Gorge (Patte de boutonnières) séparée - description: Dessinez une gorge (patte de boutonnières) séparée. -seperateButtonPlacket: - title: Patte de boutonnage séparée - description: Dessinez une patte de boutonnage séparée -sleevePlacketLength: - title: Longueur de la patte de manche - description: La longueur de la patte de manche -sleevePlacketWidth: - title: Largeur de la patte de manche - description: La largeur de la patte de manche -splitYoke: - title: Empiècement dos à couture médiane ("split yoke") - description: Dessiner un empiècement divisé ou classique (une seule pièce). -waistEase: - title: Aisance à la taille - description: La quantité d'aisance à votre taille (naturelle). -yokeHeight: - title: Hauteur du yoke - description: Contrôle la hauteur du joug diff --git a/packages/i18n/src/locales/fr/options/simone.yml b/packages/i18n/src/locales/fr/options/simone.yml deleted file mode 100644 index 003ca9c1428..00000000000 --- a/packages/i18n/src/locales/fr/options/simone.yml +++ /dev/null @@ -1,23 +0,0 @@ ---- -bustAlignedButtons: - title: Boutons alignés sur le buste - description: Stratégies optionnelles d'espacement des boutons pour assurer un bouton au niveau de la ligne de buste - options: - even: Placement équilibré - split: Séparer l'espace - disabled: Désactivé -bustDartAngle: - title: Angle des pinces poitrine - description: Contrôle l'angle par lequel la pince poitrine (sur le côté) s'incline vers le bas -bustDartLength: - title: Longueur des pinces poitrine - description: Contrôle à quel point la pince poitrine sera proche de l'apex du buste (la pointe des seins) -contour: - title: Angle des découpes princesses - description: Contrôle à quel point le volume sera réduit sous les seins -frontDarts: - title: Pinces de taille - description: Inclure ou non des pinces de taille -frontDartLength: - title: Longueur des pinces de taille - description: Contrôle à quel point la pince de taille sera proche de l'apex du buste (la pointe des seins) diff --git a/packages/i18n/src/locales/fr/options/sven.yml b/packages/i18n/src/locales/fr/options/sven.yml deleted file mode 100644 index c5aef5b0e2e..00000000000 --- a/packages/i18n/src/locales/fr/options/sven.yml +++ /dev/null @@ -1,13 +0,0 @@ ---- -hipsEase: - title: Aisance des hanches - description: Contrôle la quantité d'aisance à vos hanches (au bas du sweat) -ribbing: - title: Bord côte - description: Faut-il finir l'ourlet et les poignets avec un tissu pour bordures -ribbingHeight: - title: Hauteur de bord côte - description: La hauteur du tissu pour le bord côte sur les poignets et le bas du sweat. -ribbingStretch: - title: Élasticité du bord côte - description: L'élasticité du bord côte sur les poignets et le bas. diff --git a/packages/i18n/src/locales/fr/options/tamiko.yml b/packages/i18n/src/locales/fr/options/tamiko.yml deleted file mode 100644 index 2891998956c..00000000000 --- a/packages/i18n/src/locales/fr/options/tamiko.yml +++ /dev/null @@ -1,10 +0,0 @@ ---- -flare: - title: Évasement - description: La quantité par laquelle le vêtement s'évase de votre poitrine vers le bas -shoulderseamLength: - title: Longueur de couture d'épaule - description: La longueur de la couture d'épaule, en tant que facteur de la mesure d'épaule à épaule -shoulderSlope: - title: Pente d'épaule - description: Contrôle l'angle des coutures d'épaule diff --git a/packages/i18n/src/locales/fr/options/teagan.yml b/packages/i18n/src/locales/fr/options/teagan.yml deleted file mode 100644 index 72634b3cad5..00000000000 --- a/packages/i18n/src/locales/fr/options/teagan.yml +++ /dev/null @@ -1,19 +0,0 @@ ---- -draftForHighBust: - title: Tracé pour le buste supérieur - description: Tracer le patron pour la mesure de tour de poitrine supérieure (si disponible) plutôt que la poitrine (pleine). Il en résultera un vêtement plus ajusté pour les personnes qui ont des seins. -sleeveEase: - title: Aisance des manches - description: Quantité d'aisance de vos manches -sleeveLength: - title: Longueur des manches - description: Contrôle la longueur de vos manches -necklineBend: - title: Courbure de l'encolure - description: Contrôle la courbure de l'encolure. -necklineDepth: - title: Profondeur de l'encolure - description: Contrôle la profondeur de l'encolure. -necklineWidth: - title: Largeur d'encolure - description: Contrôle la largeur de l'encolure. diff --git a/packages/i18n/src/locales/fr/options/theo.yml b/packages/i18n/src/locales/fr/options/theo.yml deleted file mode 100644 index 709a23d6dad..00000000000 --- a/packages/i18n/src/locales/fr/options/theo.yml +++ /dev/null @@ -1,7 +0,0 @@ ---- -wedge: - title: Fourche - description: Contrôle la longueur de la couture croisée -legWidth: - title: Largeur de jambe - description: Contrôle la largeur des jambes diff --git a/packages/i18n/src/locales/fr/options/tiberius.yml b/packages/i18n/src/locales/fr/options/tiberius.yml deleted file mode 100644 index cba4d629a37..00000000000 --- a/packages/i18n/src/locales/fr/options/tiberius.yml +++ /dev/null @@ -1,39 +0,0 @@ ---- -headRatio: - title: Ratio tête - description: Contrôle la taille de l'ouverture de la tête -armholeDrop: - title: Abaissement d'emmanchure - description: Contrôle la profondeur de l'emmanchure -lengthBonus: - title: Supplément de longueur - description: Permet de varier la longueur du vêtement -widthBonus: - title: Bonus de largeur - description: Permet de varier la largeur du vêtement -clavi: - title: Bande de pourpre - description: Inclure ou non des guides pour la bande de pourpre -clavusLocation: - title: Emplacement de la bande de pourpre - description: Contrôle la localisation de la bande de pourpre -clavusWidth: - title: Largeur de la bande de pourpre - description: Contrôle la largeur de la bande de pourpre -length: - title: Longueur - description: Contrôle la longueur du vêtement - options: - toKnee: Aux genoux - toMidLeg: À mi-cuisses - toFloor: Jusqu'au sol -width: - title: Largeur - description: Contrôle la largeur du vêtement - options: - toElbow: Jusqu'aux coudes - toShoulder: Aux épaules - toMidArm: Vers le haut du bras -forceWidth: - title: Forcer la largeur - description: Appliquer les paramètres de largeur indépendamment des contraintes diff --git a/packages/i18n/src/locales/fr/options/titan.yml b/packages/i18n/src/locales/fr/options/titan.yml deleted file mode 100644 index abab0d56008..00000000000 --- a/packages/i18n/src/locales/fr/options/titan.yml +++ /dev/null @@ -1,46 +0,0 @@ ---- -kneeEase: - title: Aisance du genou - description: Contrôle la quantité d'aisance au genou -waistHeight: - title: Hauteur de la taille - description: Contrôle la hauteur de la taille, 100% = hauteur de la taille, 0% = hauteur de la hanche -lengthBonus: - title: Supplément de longueur - description: Contrôle la longueur du pantalon -crotchDrop: - title: Hauteur d'enfourchure - description: Abaisse la fourche pour un tombé plus décontracté -fitKnee: - title: Ajuster au genou - description: Ajuste les jambes à partir de la circonférence du genou plutôt que de la circonférence du bassin -legBalance: - title: Équilibre des jambes - description: Contrôle le ratio entre le panneau avant et arrière de la jambe -crossSeamCurveStart: - title: Début de la courbe de l'enfourchure dos - description: Contrôle la distance à partir de laquelle la courbe démarre pour l'enfourchure dos -crossSeamCurveBend: - title: Courbure de l'enfourchure dos - description: Contrôle la courbure de la couture de fourche dos -crossSeamCurveAngle: - title: Angle de couture croisée - description: Contrôle l'angle de la couture de croix -crotchSeamCurveStart: - title: Début de la courbe de l'enfourchure avant - description: Contrôle la distance à partir de laquelle la courbe démarre pour l'enfourchure avant -crotchSeamCurveBend: - title: Courbure de la fourche avant - description: Contrôle la courbure de la couture de fourche avant -crotchSeamCurveAngle: - title: Angle de couture - description: Contrôle l'angle de la couture de crotch -waistBalance: - title: Équilibre de la taille - description: Contrôle la position horizontale de la taille par rapport au bassin -waistbandWidth: - title: Largeur de ceinture - description: La largeur de la ceinture -grainlinePosition: - title: Position de la ligne de droit fil - description: Contrôle la position horizontale de la jambe par rapport au bassin diff --git a/packages/i18n/src/locales/fr/options/trayvon.yml b/packages/i18n/src/locales/fr/options/trayvon.yml deleted file mode 100644 index 28d0ca828ae..00000000000 --- a/packages/i18n/src/locales/fr/options/trayvon.yml +++ /dev/null @@ -1,7 +0,0 @@ ---- -tipWidth: - title: Largeur de la pointe - description: La largeur de votre cravate au niveau de la pointe -knotWidth: - title: Largeur du nœud - description: La largeur de votre cravate au niveau du noeud diff --git a/packages/i18n/src/locales/fr/options/unice.yml b/packages/i18n/src/locales/fr/options/unice.yml deleted file mode 100644 index 81949885511..00000000000 --- a/packages/i18n/src/locales/fr/options/unice.yml +++ /dev/null @@ -1,13 +0,0 @@ -fabricStretchX: - title: Élasticité du tissu (horizontale) - description: Ajuster ceci pour des tissus plus ou moins élastiques -fabricStretchY: - title: Élasticité du tissu (verticale) - description: Ajuster ceci pour des tissus plus ou moins élastiques -adjustStretch: - title: Ajuster l'élasticité - description: Cette option vous permet de mettre le maximum d'élasticité que le tissu autorise a l'horizontal et à la verticale. Quand désactivée les valeurs d'élasticité sont utilisés comme si -useCrossSeam: - title: Utiliser l'intersection des coutures - description: Lorsque cette option est activée, la hauteur totale des pièces du patron combinées correspondra à la longueur de la couture transversale moins la hauteur du devant et du dos. Lorsqu'elle est désactivée, la hauteur totale dépend de l'option de longueur du gousset. - diff --git a/packages/i18n/src/locales/fr/options/ursula.yml b/packages/i18n/src/locales/fr/options/ursula.yml deleted file mode 100644 index 2355bf98eae..00000000000 --- a/packages/i18n/src/locales/fr/options/ursula.yml +++ /dev/null @@ -1,34 +0,0 @@ ---- -fabricStretch: - title: Étendue en tissu - description: Ajuster ceci pour des tissus plus ou moins extensifs -gussetWidth: - title: Gusset width - description: Contrôle la largeur du gusset -gussetLength: - title: Longueur du Gusset - description: Contrôle la longueur du gusset -elasticStretch: - title: Etendue élastique - description: Ajuster ceci pour un élastique plus ou moins extensif -rise: - title: Élévation de ceinture - description: Contrôle la hauteur de la taille -legOpening: - title: Ouverture des jambes - description: Contrôle la hauteur de la jambe découpée -frontDip: - title: tremper la taille de la taille avant - description: Contrôle la quantité de courbes de la taille avant (révélant plus ou moins la peau) -backDip: - title: trempette à taille arrière - description: Contrôle la quantité de courbes de la taille arrière (révélant plus ou moins la peau) -taperToGusset: - title: Exposition frontale - description: Contrôle la quantité de peau exposée à l'avant -backExposure: - title: Exposition au dos - description: Contrôle la quantité de peau exposée au dos - - - diff --git a/packages/i18n/src/locales/fr/options/wahid.yml b/packages/i18n/src/locales/fr/options/wahid.yml deleted file mode 100644 index f809f89f5f1..00000000000 --- a/packages/i18n/src/locales/fr/options/wahid.yml +++ /dev/null @@ -1,43 +0,0 @@ ---- -backScyeDart: - title: Pince de carrure - description: La valeur à retirer dans une pince de carrure (à l'emmanchure arrière). -frontScyeDart: - title: Pince d'emmanchure - description: La quantité à retirer de la pince à l'avant de l'emmanchure. -pocketLocation: - title: Emplacement de poche - description: Détermine l'emplacement de la poche -pocketWidth: - title: Largeur de poche - description: Détermine la largeur de la poche -weltHeight: - title: Hauteur du revers de poche - description: Détermine la hauteur du revers de poche -necklineDrop: - title: Décolleté - description: Détermine la profondeur d'encolure sur le devant -frontStyle: - title: Style d'encolure - description: Style de l'encolure -hemStyle: - title: Type d'ourlet - description: Style de l'ourlet avant -hemRadius: - title: Arrondi d'ourlet - description: Rayon avec lequel l'ourlet est arrondi -backInset: - title: Échancrure emmanchure arrière - description: A quel point l'arrière de l'emmanchure est coupée vers l'intérieur -frontInset: - title: Échancrure emmanchure avant - description: A quel point l'avant de l'emmanchure est coupée vers l'intérieur -shoulderInset: - title: Réduction d'épaule - description: A quel point la couture d'épaule est éloignée des épaules -neckInset: - title: Échancrure cou - description: A quel point la couture d'épaule est éloignée du cou -pocketAngle: - title: Angle de poche - description: Angle de l'ouverture de poche diff --git a/packages/i18n/src/locales/fr/options/walburga.yml b/packages/i18n/src/locales/fr/options/walburga.yml deleted file mode 100644 index 90080a2e8e6..00000000000 --- a/packages/i18n/src/locales/fr/options/walburga.yml +++ /dev/null @@ -1,23 +0,0 @@ ---- -headRatio: - title: Ratio de tête - description: Contrôle la taille de l'ouverture de la tête -lengthBonus: - title: Supplément de longueur - description: Permet de varier la longueur du vêtement -widthBonus: - title: Bonus de largeur - description: Permet de varier la largeur du vêtement -length: - title: Longueur - description: Contrôle la longueur du vêtement - options: - toKnee: Aux genoux - toMidLeg: À mi-cuisses - toFloor: Jusqu'au sol -neckoRatio: - title: Forme de l'encolure - description: contrôle la forme de l'encolure -neckline: - title: Ligne d'encolure - description: Contrôle si oui ou non il faut tracer un encolure diff --git a/packages/i18n/src/locales/fr/options/waralee.yml b/packages/i18n/src/locales/fr/options/waralee.yml deleted file mode 100644 index b4b10d5a613..00000000000 --- a/packages/i18n/src/locales/fr/options/waralee.yml +++ /dev/null @@ -1,44 +0,0 @@ ---- -backPocket: - title: Poche arrière - description: S'il faut inclure une poche arrière ou non -frontPocket: - title: Poche avant - description: Inclure ou non des poches avant -hemWidth: - title: Taille des ourlets - description: Taille de l'ourlet au bas du pantalon -waistbandWidth: - title: Ceinture - description: Taille de la ceinture -waistRaise: - title: Hauteur de taille - description: Combien il faut élever la taille de la mesure de hauteur d'assise, ce qui influence la profondeur de la coupe de l'entre-jambe. -crotchBack: - title: Fourche arrière - description: Le pourcentage de la circonférence d'assise à l'arrière. Cela crée plus ou moins d'espace entre la couture latérale et le dos. -crotchFront: - title: Fourche avant - description: Le pourcentage de la circonférence d'assise à l'avant. Cela crée plus ou moins d'espace entre la couture latérale et le devant. -crotchFactorBackHor: - title: Reculer la fourche arrière - description: Utilisé pour déplacer la courbe de la fourche arrière horizontalement -crotchFactorBackVer: - title: Remonter la fourche arrière - description: Utilisé pour déplacer la courbe de la fourche arrière verticalement -crotchFactorFrontHor: - title: Avancer la fourche avant - description: Utilisé pour déplacer la courbe de la fourche avant horizontalement -crotchFactorFrontVer: - title: Remonter la fourche avant - description: Utilisé pour déplacer la courbe de la fourche avant verticalement -waistOverlap: - title: Chevauchement de la ceinture - description: Cela indique combien vous voulez que les pans de la jambe se chevauchent à la taille. Un réglage de 0 les ferait rencontrer à la couture latérale, et un cadre de 100 les fait se rencontrer à l'avant/arrière. -legShortening: - title: Réduction des jambes - description: Cela indique la longueur du pantalon. C'est un facteur de la mesure de l'entrejambe. Plus la valeur est grande, plus elle sera retirée de la longueur. -backRaise: - title: Élévation arrière - description: Ce réglage lève la taille dans le dos, la taille ne se pose pas horizontalement, mais est inclinée à l'arrière. Ce réglage vous permet de la relever dans le dos si vous en avez besoin pour un bon ajustement. - diff --git a/packages/i18n/src/locales/fr/parts.yaml b/packages/i18n/src/locales/fr/parts.yaml deleted file mode 100644 index 56a31476c81..00000000000 --- a/packages/i18n/src/locales/fr/parts.yaml +++ /dev/null @@ -1,58 +0,0 @@ ---- -back: Retour -backBase: Base dos -backPocketWelt: Poche arrière passepoilée -base: Base -bentBack: Dos de Bent -bentBase: Base de Bent -bentFront: Avant de Bent -bentSleeve: Manche de Bent -bentTopSleeve: Partie supérieure de la manche de Bent -bentUnderSleeve: Partie inférieure de la manche de Bent -buttonholePlacket: Patte de boutonnière -buttonPlacket: Patte de boutonnage -collar: Collier -collarStand: Support de collier -cuff: Manchette -fabricTail: Queue en tissu -fabricTip: Pointe en tissu -frontBase: Base avant -frontFacing: Doublure avant -front: Avant -frontLeft: Avant gauche -frontLining: Doublure avant -frontRight: Avant droit -gusset: Soufflet -hoodCenter: Capuchon centre -hood: Capuche -hoodSide: Capuchon côté -inset: Encart -interfacingTail: Entoilage de queue -interfacingTip: Entoilage de pointe -liningTail: Doublure de queue -liningTip: Doublure de pointe -loop: Boucle -panel1: Pièce 1 -panel2: Pièce 2 -panel3: Pièce 3 -panel4: Pièce 4 -panel5: Pièce 5 -panel6: Pièce 6 -panels: Pièces -pocketBag: Sac de poche -pocketFacing: Parement de poche -pocketInterfacing: Entoilage de poche -pocket: Poche -pocketWelt: Rabat de poche -side: Côté -sleeveBase: Base de manche -sleevecap: Capuchon de manche -sleevePlacketOverlap: Patte de manche haut -sleevePlacketUnderlap: Patte de manche bas -sleeve: Manche -topSleeve: Haut de manche -top: Haut -underCollar: Sous-col -underSleeve: Sous-manche -waistband: Ceinture -yoke: Empiècement diff --git a/packages/i18n/src/locales/fr/plugin/index.js b/packages/i18n/src/locales/fr/plugin/index.js deleted file mode 100644 index 21533176bec..00000000000 --- a/packages/i18n/src/locales/fr/plugin/index.js +++ /dev/null @@ -1,33 +0,0 @@ -import brian from './patterns/brian.yaml' -import aaron from './patterns/aaron.yaml' -import bruce from './patterns/bruce.yaml' -import hugo from './patterns/hugo.yaml' -import simon from './patterns/simon.yaml' -import teagan from './patterns/teagan.yaml' -import cfp from './patterns/cfp.yaml' -import cutonfold from './plugins/cutonfold.yaml' -import grainline from './plugins/grainline.yaml' -import scalebox from './plugins/scalebox.yaml' -import title from './plugins/title.yaml' - -const files = { - brian, - aaron, - bruce, - hugo, - simon, - teagan, - cfp, - cutonfold, - grainline, - scalebox, - title, -} - -const messages = {} - -for (const file in files) { - for (const [key, val] of Object.entries(files[file])) messages[key] = val -} - -export default messages diff --git a/packages/i18n/src/locales/fr/plugin/patterns/aaron.yaml b/packages/i18n/src/locales/fr/plugin/patterns/aaron.yaml deleted file mode 100644 index fbdea8b4505..00000000000 --- a/packages/i18n/src/locales/fr/plugin/patterns/aaron.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -cutOneStripToFinishTheNeckOpening: Couper une bande pour terminer l'encolure -cutTwoStripsToFinishTheArmholes: Couper deux bandes pour finir les emmanchures -length: Longueur -width: Largeur diff --git a/packages/i18n/src/locales/fr/plugin/patterns/brian.yaml b/packages/i18n/src/locales/fr/plugin/patterns/brian.yaml deleted file mode 100644 index 49c466f7533..00000000000 --- a/packages/i18n/src/locales/fr/plugin/patterns/brian.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -back: Dos -front: Avant -sleeve: Manche diff --git a/packages/i18n/src/locales/fr/plugin/patterns/bruce.yaml b/packages/i18n/src/locales/fr/plugin/patterns/bruce.yaml deleted file mode 100644 index 8ea1b53d2a3..00000000000 --- a/packages/i18n/src/locales/fr/plugin/patterns/bruce.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -inset: Incrusté -side: Côté diff --git a/packages/i18n/src/locales/fr/plugin/patterns/cfp.yaml b/packages/i18n/src/locales/fr/plugin/patterns/cfp.yaml deleted file mode 100644 index fbebc53c6c5..00000000000 --- a/packages/i18n/src/locales/fr/plugin/patterns/cfp.yaml +++ /dev/null @@ -1,2 +0,0 @@ ---- -hello: Salut diff --git a/packages/i18n/src/locales/fr/plugin/patterns/cornelius.yaml b/packages/i18n/src/locales/fr/plugin/patterns/cornelius.yaml deleted file mode 100644 index 88cd0e3909f..00000000000 --- a/packages/i18n/src/locales/fr/plugin/patterns/cornelius.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -Vent: Fente -PocketFacing: Parement de poche diff --git a/packages/i18n/src/locales/fr/plugin/patterns/hortensia.yaml b/packages/i18n/src/locales/fr/plugin/patterns/hortensia.yaml deleted file mode 100644 index 86ae3a3c16b..00000000000 --- a/packages/i18n/src/locales/fr/plugin/patterns/hortensia.yaml +++ /dev/null @@ -1,10 +0,0 @@ ---- -SidePanel: Panneau latéral -FrontBackPanel: Panneau avant et arrière -BottomPanel: Panneau inférieur -ZipperPanel: Panneau de zip -Strap: Référence -strapLength: Longueur des anses -handleWidth: Largeur des anses -zipperSize: Taille standard de zip -SidePanelReinforcement: Panneau de renforcement latéral diff --git a/packages/i18n/src/locales/fr/plugin/patterns/hugo.yaml b/packages/i18n/src/locales/fr/plugin/patterns/hugo.yaml deleted file mode 100644 index 7803bf6f399..00000000000 --- a/packages/i18n/src/locales/fr/plugin/patterns/hugo.yaml +++ /dev/null @@ -1,7 +0,0 @@ ---- -cuff: Poignet -hoodCenter: Milieu de capuche -hoodSide: Côté de capuche -pocketFacing: Doublure de poche -pocket: Poche -waistband: Ceinture diff --git a/packages/i18n/src/locales/fr/plugin/patterns/simon.yaml b/packages/i18n/src/locales/fr/plugin/patterns/simon.yaml deleted file mode 100644 index 59ae428f67c..00000000000 --- a/packages/i18n/src/locales/fr/plugin/patterns/simon.yaml +++ /dev/null @@ -1,13 +0,0 @@ ---- -buttonholePlacket: Patte de boutonnage - boutonnières -buttonPlacket: Patte de boutonnage - boutons -collarAndUndercollar: Col et sous-col -collarStand: Pied de col -cutUndercollarSlightlySmaller: Couper le sous-col légèrement plus petit -frontLeft: Avant gauche -frontRight: Avant droit -sideOfTheCollarStand: Côté du pied de col -sleevePlacketOverlap: Patte de manche supérieure -sleevePlacketUnderlap: Patte de manche inférieure -yoke: Empiècement -matchHere: Aligner le tissu le long de cette ligne diff --git a/packages/i18n/src/locales/fr/plugin/patterns/teagan.yaml b/packages/i18n/src/locales/fr/plugin/patterns/teagan.yaml deleted file mode 100644 index 084a02c9071..00000000000 --- a/packages/i18n/src/locales/fr/plugin/patterns/teagan.yaml +++ /dev/null @@ -1,2 +0,0 @@ ---- -fullLengthFromHps: Longueur complète (à partir du haut de l'épaule) diff --git a/packages/i18n/src/locales/fr/plugin/patterns/ursula.yaml b/packages/i18n/src/locales/fr/plugin/patterns/ursula.yaml deleted file mode 100644 index 43e6002d493..00000000000 --- a/packages/i18n/src/locales/fr/plugin/patterns/ursula.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -cutTwoPiecesOfElasticToFinishTheLegOpenings: Couper deux élastiques pour finir les ouvertures des jambes -cutOnePieceOfElasticToFinishTheWaistBand: Couper une pièce d'élastique pour finir la bande de taille diff --git a/packages/i18n/src/locales/fr/plugin/plugins/cutlist.yaml b/packages/i18n/src/locales/fr/plugin/plugins/cutlist.yaml deleted file mode 100644 index 0b76d3ebc46..00000000000 --- a/packages/i18n/src/locales/fr/plugin/plugins/cutlist.yaml +++ /dev/null @@ -1,16 +0,0 @@ -canvas: Toile -cut: Couper -cuttingLayout: Disposition de coupe suggérée -fabric: Tissu principal -fabricSize: "{length} sur {width} de large matériel" -heavyCanvas: Toile lourde -interfacing: Entoilage -lining: Doublure -lmhCanvas: Tissu de poids léger a moyen -mirrored: en miroir -onFoldLower: sur le pli -onFoldAndBias: plié dans le biais -onBias: dans le biais -plastic: Plastique -ribbing: Bord côte -edgeOfFabric: Bord du tissu diff --git a/packages/i18n/src/locales/fr/plugin/plugins/cutonfold.yaml b/packages/i18n/src/locales/fr/plugin/plugins/cutonfold.yaml deleted file mode 100644 index 6cfaf1d2bea..00000000000 --- a/packages/i18n/src/locales/fr/plugin/plugins/cutonfold.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -cutOnFoldAndGrainline: Couper au pli / sur le droit fil -cutOnFold: Couper au pli diff --git a/packages/i18n/src/locales/fr/plugin/plugins/grainline.yaml b/packages/i18n/src/locales/fr/plugin/plugins/grainline.yaml deleted file mode 100644 index 46afd7346f9..00000000000 --- a/packages/i18n/src/locales/fr/plugin/plugins/grainline.yaml +++ /dev/null @@ -1,2 +0,0 @@ ---- -grainline: Droit fil diff --git a/packages/i18n/src/locales/fr/plugin/plugins/scalebox.yaml b/packages/i18n/src/locales/fr/plugin/plugins/scalebox.yaml deleted file mode 100644 index 53da116ac61..00000000000 --- a/packages/i18n/src/locales/fr/plugin/plugins/scalebox.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -theBlackOutsideOfThisBoxShouldMeasure: L'extérieur de cette boîte devrait mesurer -theWhiteInsideOfThisBoxShouldMeasure: L'intérieur de cette boîte devrait mesurer -supportFreesewingBecomeAPatron: Soutenez FreeSewing, devenez un Mécène diff --git a/packages/i18n/src/locales/fr/plugin/plugins/title.yaml b/packages/i18n/src/locales/fr/plugin/plugins/title.yaml deleted file mode 100644 index 9da3cfd7f25..00000000000 --- a/packages/i18n/src/locales/fr/plugin/plugins/title.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -cut: Couper -onFold: Au pli diff --git a/packages/i18n/src/locales/fr/settings.yml b/packages/i18n/src/locales/fr/settings.yml deleted file mode 100644 index 7fa1115c923..00000000000 --- a/packages/i18n/src/locales/fr/settings.yml +++ /dev/null @@ -1,44 +0,0 @@ ---- -advanced: - title: Mode expert - description: Permet d'afficher ou non les paramètres avancés et les options de patron -paperless: - title: Sans papier - description: Dessine un patron avec toutes les dimensions incluses afin que vous puissiez le transférer sur du tissu ou un autre support sans avoir à imprimer -sabool: - title: Inclure la marge de couture - description: Contrôle l'inclusion ou non de la marge de couture dans le patron -sa: - title: Taille de la marge de couture - description: Contrôle la valeur de la marge de couture incluse dans votre patron -locale: - title: Langue - description: Détermine la langue utilisée sur votre patron -only: - title: Contenus - description: Vous permet de contrôler quelles parties seront incluses dans votre patron -units: - title: Unités - description: Contrôle les unités utilisées sur votre patron -margin: - title: Marges - description: Contrôle la marge autour des pièces du patron -complete: - title: Détail - description: Contrôle à quel point votre patron est détaillé ; soit un patron complet avec tous les détails, ou simplement les contours des parties du patron -layout: - title: Mis en page - description: Contrôle la manière dont les différentes parties sont placées sur votre patron -debug: - title: Débug - description: Activer le débogage pour obtenir des informations supplémentaires sur la façon dont votre patron a été créé -scale: - title: Échelle - description: Contrôle la largeur de la ligne de contour, la taille de police et les autres éléments dont la valeur est indépendante des mesures du patron -renderer: - title: Moteur de Rendu - description: Contrôle comment le patron est restitué (dessiné) à l'écran -xray: - title: Rayons X - description: Regardez en dessous avec le mode rayons X de FreeSewing - diff --git a/packages/i18n/src/locales/fr/susi.yaml b/packages/i18n/src/locales/fr/susi.yaml deleted file mode 100644 index 6a1a28b8321..00000000000 --- a/packages/i18n/src/locales/fr/susi.yaml +++ /dev/null @@ -1,16 +0,0 @@ -joinFreeSewing: Rejoignez FreeSewing -toReceiveSignupLink: Pour recevoir un lien d'inscription, entrez votre adresse e-mail -emailAddress: Adresse E-mail -pleaseProvideValidEmail: Veuillez fournir une adresse e-mail valide -emailSignupLink: Envoyez-moi un lien d'inscription par e-mail -alreadyHaveAnAccount: Vous avez déjà un compte? -dontHaveAnAccount: Vous n'avez pas encore de compte ? -signIn: Connexion -signInHere: Connectez-vous ici -signUpHere: Inscrivez-vous ici -emailUsernameId: Adresse e-mail, nom d'utilisateur ou identifiant de l'utilisateur -welcomeName: 'Bienvenue { name }' -password: Mot de passe -processing: Traitement en cours -emailSent: Le courriel a été envoyé -somethingWentWrong: Quelque chose s'est mal passé diff --git a/packages/i18n/src/locales/fr/welcome.yaml b/packages/i18n/src/locales/fr/welcome.yaml deleted file mode 100644 index e1188b57b0f..00000000000 --- a/packages/i18n/src/locales/fr/welcome.yaml +++ /dev/null @@ -1,10 +0,0 @@ ---- -units: Sélectionnez les unités que vous souhaitez utiliser -username: Choisissez un nom d’utilisateur -avatar: Ajoutez une photo de profil -bio: Parlez-nous un peu de vous -social: Dites-nous où nous pouvons vous suivre -newsletter: Donnez-nous votre préférence pour la newsletter -letUsSetupYourAccount: Laissez-nous configurer votre compte. -walkYouThrough: "Nous vous guiderons à travers les étapes suivantes :" -someOptional: Bien que toutes ces étapes soient facultatives, nous vous recommandons de les passer en revue pour tirer le meilleur parti de FreeSewing. diff --git a/packages/i18n/src/locales/nl/account.yaml b/packages/i18n/src/locales/nl/account.yaml deleted file mode 100644 index 839de3beea8..00000000000 --- a/packages/i18n/src/locales/nl/account.yaml +++ /dev/null @@ -1,60 +0,0 @@ ---- -accountRemoved: Account verwijderd -accountRestricted: Account beperkt -avatar: Profielafbeelding -avatarInfo: Uw avatar- of profielfoto wordt op uw profielpagina weergegeven. -avatarTitle: Stel je profielfoto in -bio: Biografie -bioInfo: Hier kunt U andere FreeSewing gebruikers een beetje over uzelf vertellen. Dit veld ondersteunt MarkDown, dus U kunt ook links opnemen. Als U een blog heeft, is dit waar U naar linkt, zodat anderen het kunnen ontdekken. -bioTitle: Schrijf een korte bio -currentPassword: Huidig wachtwoord -email: Email adres -emailInfo: Het e-mailadres dat aan uw account is gekoppeld, is belangrijk omdat het zal worden gebruikt om weer toegang te krijgen tot uw account als u uw wachtwoord bent vergeten. Daarom is voor het wijzigen van uw e-mailadres een bevestiging vereist. -emailTitle: Voer het e-mailadres in dat u aan dit account wilt linken -exportYourData: Exporteer je gegevens -exportYourDataInfo: 'De algemene verordening gegevensbescherming van de EU (AVG) waarborgt uw zogenaamd recht op gegevensportabiliteit: het recht om uw persoonlijke gegevens te verkrijgen voor uw eigen doeleinden of voor andere diensten.' -exportYourDataTitle: Klik hieronder om uw persoonlijke gegevens te downloaden -github: Github -githubInfo: Als je je GitHub gebruikersnaam opgeeft, zal je profielpagina een link naar je Github account bevatten. Op die manier kunnen anderen je codebijdragen kunnen ontdekken, je een ster toekennen, of je volgen. -githubTitle: Vul je GitHub gebruikersnaam in -instagramInfo: Als je je Instagram gebruikersnaam opgeeft, zal je profielpagina een link naar je Instagram account bevatten. Op die manier kunnen anderen jouw foto's ontdekken en je volgen. -instagram: Instagram -instagramTitle: Vul je Instagram gebruikersnaam in -languageInfo: Deze taalkeuze bepaalt in welke taal u e-mails ontvangt van freesewing. Het bepaalt niet de taal van de website, die op elke pagina kan worden gekozen. -language: Taal -languageTitle: Selecteer de taal van uw keuze -newPassword: Nieuw wachtwoord -newsletter: Nieuwsbrief -newsletterTitle: Wil je graag de FreeSewing nieuwsbrief ontvangen? -newsletterInfo: Een keer om de 3 maanden sturen we een nieuwsbrief rond met eerlijke en waardevolle inhoud. Geen tracking, geen advertenties, geen nonsens. -passwordInfo: Het wijzigen van uw wachtwoord vereist uw huidige wachtwoord. Vul dat in, en vul ook uw nieuwe wachtwoord in. -password: Wachtwoord -passwordTitle: Voer je huidige wachtwoord en je nieuwe wachtwoord in -patronInfo: Mecenassen ondersteunen FreeSewing financieel. Het zijn loyale supporters die zorgen voor een duurzame toekomst voor freesewing.org, onze code, onze patronen en onze gemeenschap. -patron: Mecenas -removeYourAccountInfo: De Algemene Gegevens Verordening (AGV) van de EU garandeerd uw recht om uw persoonlijke gegevens te wissen. -removeYourAccount: Verwijder uw account -removeYourAccountWarning: Hiermee worden uw account, uw patroontekeningen, uw modellen en alle gegevens die we voor u hebben opgeslagen verwijderd. Er is geen weg terug. -resetPasswordInfo: Voer je nieuwe wachtwoord in. -resetPassword: Herstel wachtwoord -resetPasswordTitle: Voer een nieuw wachtwoord in -restrictProcessingOfYourDataInfo: De algemene verordening gegevensbescherming van de EU (AVG) verzekert uw zogenaamde recht om verwerking te beperken - het recht om een einde te maken aan de verwerking van uw gegevens. -restrictProcessingOfYourData: Beperk de verwerking van uw gegevens -restrictProcessingWarning: Hoewel er geen gegevens worden verwijderd, resulteert dit in het bevriezen van uw account. Bovendien kunt u dit niet zelf ongedaan maken, maar u moet contact met ons opnemen wanneer u de toegang tot uw account wilt herstellen. -reviewYourConsent: Herzie uw toestemmingen -socialInfo: Als je je GitHub-, Twitter- of Instagram- gebruikersnaam opgeeft, bevat uw profielpagina links naar uw accounts op deze sites. Hiermee kunnen FreeSewing gebruikers je volgen.
We nemen namens jou geen contact op met een van deze sites. De enige bedoeling is om te laten weten dat bijvoorbeeld gebruiker @joost op freesewing dezelfde persoon is als gebruiker @j__st op twitter. -social: Sociaal -socialTitle: Laat mensen je elders volgen -twitterInfo: Als je je Twitter-gebruikersnaam opgeeft, zal je profielpagina een link naar je Twitter-account bevatten. Op die manier kunnen anderen jouw tweets ontdekken en je volgen. -twitterTitle: Vul je Twitter gebruikersnaam in -twitter: Twitter -unitsInfo: FreeSewing ondersteunt zowel het metrische systeem als imperiale eenheden. -unitsTitle: Selecteer het systeem waarmee u het meest vertrouwd bent -units: Eenheden -usernameInfo: Iedereen start met een willekeurig gegenereerde gebruikersnaam. Dat is niet erg persoonlijk, dus je kunt je gebruikersnaam veranderen in iets meer jij. Zoals je naam, of scheetje of wat dan ook. Typ gewoon de gebruikersnaam die u wilt hebben. -usernameTitle: Kies een gebruikersnaam -username: Gebruikersnaam -accountIsInactive: Je account is inactief -accountNeedsActivation: Vooraleer u kan inloggen, moet u uw account activeren. Controleer uw inbox voor onze registratie e-mail en klik op de link binnen deze e-mail. -reloadAccount: Account opnieuw laden -reloadAccountDescription: Dit zal de data van je account opnieuw laden vanuit de backend. Het heeft hetzelfde effect als jezelf afmelden en opnieuw aanmelden. diff --git a/packages/i18n/src/locales/nl/app.yaml b/packages/i18n/src/locales/nl/app.yaml deleted file mode 100644 index bcb8ee714e9..00000000000 --- a/packages/i18n/src/locales/nl/app.yaml +++ /dev/null @@ -1,348 +0,0 @@ ---- -100PercentCommunity: 100% gemeenschap -100PercentFree: 100% gratis -100PercentOpenSource: 100% open source -aboutFreesewing: Over FreeSewing -accessoryPatterns: Patronen voor Accessoires -account: Account -accountCreated: Account aangemaakt -actions: Acties -allDocumentation: Alle documentatie -andThatIsAwesome: En dat is geweldig -applyThisLayout: Pas deze layout toe -areYouSureYouWantToContinue: Weet je zeker dat je door wilt gaan? -askForHelp: Vraag om hulp -automatic: Automatisch -averagePeopleDoNotExist: "Gemiddelde mensen bestaan niet" -awesome: Super -back: Achterzijde -becauseThatWouldBeReallyHelpful: Want dat zou ons echt vooruit helpen. -becomeAPatron: Word mecenas -blockPatterns: Blokpatronen -blog: Blog -browseBlogposts: Bekijk de blogposts -browsePatterns: Bekijk de patronen -browseShowcases: Bekijk de voorbeelden -butThatCouldChange: Maar dat kan veranderen -cancel: Annuleren -changePerson: Verander persoon -changePattern: Ander patroon -chatOnDiscord: Chat op Discord -checkInboxClickLinkInConfirmationEmail: We hebben je een Email gestuurd ter bevestiging. Check je mailbox en klik op de link in onze Email. -chest: Borst -chestInfo: Borsten hebben extra maten nodig. Als deze persoon geen borsten heeft zullen overbodige maten verborgen worden bij het configureren. Dit heeft geen invloed op hoe patronen getekend worden. -chooseASize: Kies een maat -chooseAPerson: Kies een persoon -chooseADesign: Kies een ontwerp -chooseAPattern: Kies een patroon -chooseYourOptions: Kies je opties -close: Sluiten -community: Gemeenschap -configureLayout: Configureer layout -configureYourDraft: Configureer je patroontekening -contactUs: Neem contact op -contentLocaleFallback: Daarom tonen we je de Engelstalige versie. -contents: Inhoud -continue: Doorgaan -copiedToClipboard: Gekopieerd naar het klembord -copy: Kopiëren -couldYouTranslateThis: Kan jij dit vertalen? -countModelsLackingForPattern: '{count} van je mensen hebben niet de nodige maten op {pattern} te tekenen' -created: Aangemaakt -custom: Aangepast -customSeamAllowance: Aangepaste naadtoeslag -lightMode: Lichte modus -data: Data -darkMode: Donkere modus -default: Standaard -demo: Demo -designOptions: Design opties -designs: Designs -docs: Documentatie -docsFooterMsg: Documentatie is nooit af. Hopelijk hebben we al je vragen kunnen beantwoorden, maar als dat niet het geval is, is er hulp beschikbaar. -docsNotFoundMsg: We konden deze documentatie niet vinden, wat meestal betekent dat deze nog niet is geschreven. -docsNotFoundTitle: Deze documentatie ontbreekt -documentationForDevelopers: Documentatie voor ontwikkelaars -documentationForEditors: Documentatie voor redacteuren -documentationForTranslators: Documentatie voor vertalers -documentationOverview: Overzicht documentatie -dolls: Dolls -download: Download -draft: Patroontekening -draftPattern: 'Teken {pattern}' -testPattern: 'Test {pattern}' -draftPatternForModel: 'Teken {pattern} voor {model}' -drafts: Patroontekeningen -draftSettings: Instellingen patroontekening -dragAndDropImageHere: Sleep een afbeelding hierheen of selecteer er handmatig een met de knop hieronder -emailAddress: Email adres -emailWorksToo: "Als je je gebruikersnaam niet meer weet, vul dan je email adres in, dat werkt ook" -enterEmailPickPassword: Voer je email adres in, en kies een wachtwoord -export: Exporteren -exportTiledPDF: Gepagineerde PDF exporteren -faq: Vaak gestelde vragen -fieldRemoved: '{field} verwijderd' -fieldSaved: '{field} opgeslagen' -filterByPattern: Filter op patroon -filterPatterns: Patronen filteren -forgotLoginInstructions: "Als je je wachtwoord niet meer weet, vul dan hieronder je gebruikersnaam of email adres in, en klik op de Herstel wachtwoord knop" -freesewing: Freesewing -freesewingOnGithub: FreeSewing op GitHub -garmentPatterns: Patronen voor kledij -giants: Giants -github: GitHub -goAheadWeWillWait: Doe maar, we wachten wel. -goodJob: Mooi werk -goodToSeeYouAgain: Leuk je weer te zien {user} -handle: Referentie -helpUsTranslate: Help ons met vertalen -home: Startpagina -howCanWeHelpYou: Hoe kunnen we je helpen? -howToTakeMeasurements: Leer hoe je maten neemt -i18n: Internationalisering -imperialUnits: Imperiale (Engelse) eenheden (duim) -instagram: Instagram -invalidTldMessage: '.{tld} is geen geldige TLD' -joinTheChatMsg: We hebben een community op Discord met vriendelijke mensen waar je naar kunt chatten. -justAMoment: Een ogenblikje -layout: Layout -logIn: Aanmelden -loginWithProvider: 'Log in met {provider}' -logOut: Afmelden -manual: Manueel -markdownHelp: MarkDown hulp -measurements: Afmetingen -menu: Menu -metadata: Metadata -metricUnits: Metrische eenheden (cm) -person: Persoon -people: Mensen -nameInfo: Een naam helpt om dingen uit elkaar te houden. Je kan eender welke naam kiezen. -name: Naam -addThing: Voeg {thing} toe -newThing: Nieuw {thing} -newPatternForModel: 'Nieuwe {pattern} voor {model}' -noChanges: Geen wijzigingen -no: 'Nee' #Keep in quotes or it will evaluate to false -noPasswordPolicy: We handhaven geen wachtwoordbeleid -noSeamAllowance: Geen naadtoeslag -notAllOfThisContentIsAvailableInLanguage: Niet al deze inhoud is beschikbaar in het Nederlands -notesInfo: Dit zijn je aantekeningen; Je kunt hier alles schrijven wat je wil -notes: Aantekeningen -ohNo: Oh nee! -oneMoreThing: En dan nog dit -optionalMeasurements: Optional measurements -options: Opties -orPayPerYear: Of betaal per jaar -other: Andere -otherThing: 'Andere {thing}' -ourPatrons: Onze mecenassen -ourRevenuePledge: Onze inkomstenbelofte -patron-2: Poeder aap -patron-4: Eerste stuurman -patron-8: Kapitein -patronHelp: Neem contact op met ons als u vragen heeft of wijzigingen wilt aanbrengen in uw Patron-status -patron: Mecenas -patronPitch: Als je denkt dat wat wij doen de moeite is, en je kan elke maand een paar centen missen zonder al te veel problemen, steun dan alsjeblieft ons werk -patronsKeepUsAfloat: FreeSewing wordt mogelijk gemaakt door de financiële steun van onze mecenassen. Ze houden dit schip drijvend. -patternInstructions: Patroon instructies -patternOptions: Patroon opties -pattern: patroon -sewingPatterns: Naaipatronen -patterns: Patronen -pendingConfirmation: In afwachting van bevestiging -perMonth: Per maand -pleaseEnterAValidEmailAddress: Gelieve een geldig email adres in te voeren -pleaseIncludeTheInformationBelow: Gelieve onderstaande informatie mee te geven -preview: Voorbeeld -privacyNotice: Privacy melding -proceedWithCaution: Ga voorzichtig te werk -profile: Profiel -relatedLinks: Gerelateerde links -remove: Verwijderen -removeThing: '{thing} verwijderen' -reportThisOnGithub: Melden via GitHub -requiredMeasurements: Vereiste maten -resendActivationEmailMessage: "Vul het e-mailadres waarmee je je account aangemaakt hebt in en we zullen je een nieuwe bevestigingsmail sturen." -resendActivationEmail: Stuur een nieuwe activatie email -resetPassword: Wachtwoord opnieuw instellen -reset: Reset -restoreDefaults: Standaardwaarden herstellen -restoreDesignDefaults: Standaardwaarden ontwerp herstellen -restorePatternDefaults: Standaardwaarden patroon herstellen -saveDraftToYourAccount: Patroontekening opslaan in je account -save: Opslaan -searchLanguageMsg: Elke taal heeft een eigen zoekindex. Aangezien niet al onze inhoud is vertaald, vindt u mogelijk meer resultaten via een Engelse zoekopdracht. -searchLanguageTitle: Kunt u niet vinden waarnaar u op zoek bent? -search: Zoeken -selectAPartToMoveMirrorOrRotate: Selecteer een onderdeel om te verplaatsen, spiegelen of draaien -selectImage: Selecteer afbeelding -sendAnEmail: Stuur een email -settings: Instellingen -sewingHelp: Naai hulp -sewingPatternsForNonAveragePeople: Naaipatronen voor niet-gemiddelde mensen -share: Delen -shareFreesewing: Deel FreeSewing -showcase: Voorbeelden -signUpForAFreeAccount: Schrijf je gratis in -signUp: Inschrijven -signupWithProvider: 'Registreer met {provider}' -sortByField: Sorteren op {field} -standardSeamAllowance: Standaard naadtoeslag -startOver: Begin opnieuw -startTranslatingNowOrRead: '{startTranslatingNow}, of lees eerst de {documentationForTranslators}.' -startTranslatingNow: Begin meteen te vertalen -subscribe: Abonneren -support: Ondersteuning -supportFreesewing: Ondersteun freesewing -tellMeMore: Vertel me meer -thanksForYourSupport: Bedankt voor je steun -thisContentIsNotAvailableInLanguage: Deze inhoud is niet beschikbaar in het Nederlands -thisFieldSupportsMarkdown: Dit veld ondersteunt Markdown -thisPageRequiresAuthentication: Deze pagina vereist authenticatie -troubleLoggingIn: Problemen met aanmelden? -twitter: Twitter -txt-footer: FreeSewing is gemaakt door een gemeenschap van bijdragers
met de financiële steun van onze mecenassen -txt-tier2: Onze meest democratisch geprijsde optie. Het is minder dan de prijs van een latte, maar jouw steun betekent alles voor ons. -txt-tier4: Abonneer je op deze optie en we sturen wat van onze erg gegeerde FreeSewing swag naar je thuis. Waar ook ter wereld dat mag zijn. -txt-tier8: "Als je ons niet louter wil steunen, maar FreeSewing wil zien groeien, dan is dit de optie voor jou. Ook: extra swag!" -txt-tiers: 'FreeSewing draait op een vrijwillig subscriptiemodel' -unitsInfo: FreeSewing ondersteunt zowel het metrieke stelsel als de imperiale eenheden. Kies eenvoudig welke u hier wilt gebruiken. (de standaard is om de eenheden te gebruiken die in uw account zijn geconfigureerd). -updated: Bijgewerkt -update: Bijwerken -userHasBeenWithUsSince: '{user} hoort erbij sinds {since}' -users: Gebruikers -utilityPatterns: Patronen voor hulpprogramma's -weAreValidatingYourConfirmationCode: We valideren je bevestigingscode -weCouldNotValidateYourConfirmationCode: We kunnen uw bevestigingscode niet valideren -weEncounteredAProblem: We zijn op een probleem gestoten -weEncourageYouToReportThis: We nodigen je uit om dit te melden -welcomeAboard: Welkom aan boord -welcome: Welkom -weNeverShareYourEmail: We geven jouw email adres nooit door aan derden -whatIsThis: What betekent dit? -withBreasts: Met borsten -withoutBreasts: Zonder borsten -yay: Joehoew! -yes: 'Ja' #Keep in quotes or it will evaluate to true -youAreAPatron: Je bent een mecenas -youAreNotAPatron: Je bent geen mecenas -youAreNotLoggedIn: Je bent niet ingelogd -yourRights: Je rechten -makerDocs: Maker documentatie -devDocs: Documentatie voor ontwikkelaars -slogan: Een JavaScript bibliotheek voor naaipatronen op maat -getStarted: Aan de slag -apiReference: API Reference -tutorial: Handleiding -editThisPage: Deze pagina bewerken -loginRequiredRedirect: 'U bent doorgestuurd naar de inlogpagina omdat {page} authenticatie vereist' -various: Overige -sewing: Naaien -examples: Voorbeelden -by: door -years: Jaren -pricing: Prijzen -createFirst: Begin een nieuw patroon te maken -noPattern: Je hebt (nog) geen patronen. Maak een nieuw patroon, en sla het op in je account. -modelFirst: Begin met maten toe te voegen -noModel: Je hebt (nog) geen maten toegevoegd. FreeSewing can naaipatronen op maat genereren. Maar daarvoor hebben we maten nodig. -noModel2: Dus het eerste dat je zou moeten doen is een persoon toevoegen, en je lintmeter bovenhalen. -noUserBrowsingTitle: "Je kan niet zomaar door alle gebruikers grasduinen" -noUserBrowsingText: "We hebben er duizenden. Je hebt toch wel wat beters te doen?" -usePatternMeasurements: 'Gebruik de maten van het originele patroon' -createReplica: Creëer een replica -showDetails: Toon details -hideDetails: Verberg details -clickBelowToLogOut: Klik hieronder om uit te loggen -compare: Vergelijk -savePattern: Bewaar patroon -recreate: Opnieuw aanmaken -recreateThing: Maak {thing} opnieuw -recreateThingForPerson: Maak {thing} opnieuw voor {person} -seeYouLaterUser: Tot later {user} -exportForPrinting: Exporteren om te printen -exportForEditing: Exporteren om te bewerken -startWithNeckTitle: Begin met de omtrek van de hals -startWithNeckDescription: We kunnen je helpen fouten in je maten te vinden, gebaseerd op je halsomtrek. -whatYouNeed: Wat je nodig hebt -fabricOptions: Stofkeuze -cutting: Knippen -instructions: Instructies -hide: Verberg -show: Toon -oneMomentPlease: Een momentje alsjeblieft -loadingMagic: De magie is aan het laden -estimate: Schatting -actual: Feitelijk -weEstimateYM2B: 'We schatten uw {measurement} op ongeveer:' -exportAsData: Exporteer als data -availablePatterns: Beschikbare patronen -browseCollection: Grasduin door de collectie -browseYourPatterns: Snuister door jouw patronen -yourPatterns: Jouw patronen -loginNeededToSavePatternsMsg: Je moet aangemeld zijn om je patronen te bewaren -docsForContributors: Documentatie voor kabouterhulpjes -patternDocs: Patroon documentatie -socialMedia: Social media -create: Creëer -browse: Blader -patrons: Patrons -scrollToTop: Scroll naar boven -sitemap: Sitemap -contributeToThing: Draag bij aan {thing} -mtmIsOurJam: Naaipatronen op maat is onze specialiteit -fitYouDeserve: Je mist heel wat als je voor standaard maten gaat.
Dus schrijf je vandaag in, en krijg de pasvorm die je verdient. -supportNag: FreeSewing is gratis, maar we zouden het appreciëren mocht je overwegen ons te steunen. -madeToMeasure: Op maat gemaakte -sizes: Maten -standardSizes: Standaardmaten -accountRequired: Deze functie vereist een FreeSewing account -size: Maat -switchToThing: 'Schakel over naar {thing}' -saveThing: 'Bewaar {thing}' -shareThing: 'Deel {thing}' -link: Link -cloneThing: 'Kopieer {thing}' -cloneDescription: Maak een exacte kopie die de maten van het originele patroon gebruikt. -furtherReading: Meer lezen -saveAsNewPattern: Bewaar Als Nieuw Patroon -saveAsNewPattern-txt: Sla (een kopie van) dit patroon op in je FreeSewing account -exportPattern: Patroon exporteren -printPattern: Print patroon -exportPattern-txt: Exporteer een PDF geschikt voor jouw printer, of download dit patroon in verschillende formaten -editThing: 'Bewerk {thing}' -editPattern-txt: Laad dit patroon in de patroonbewerker -featureRequiresAccount: Deze functie vereist een FreeSewing account -zoom: Zoom -zoomIn: Zoom in -zoomOut: Zoom uit -zoom-txt: Wisselt tussen het beperken van de hoogte of breedte van het patroon zodat het op je scherm past -savePattern-txt: Bewaar dit patroon in je FreeSewing account -comparePattern: Vergelijk patroon -showPattern: Patroon tonen -comparePattern-txt: Vergelijk je patroon met een aantal standaardmaten om mogelijke pasproblemen te vinden -recreatePattern: Maak patroon opnieuw -recreatePattern-txt: Kies een ander persoon en maak dit patroon opnieuw voor deze persoon -editOwnPatternsOnly: Je kan alleen je eigen patronen bewerken -editOwnPatternsOnly-txt: Je kan dit patroon niet bewerken omdat het niet van jou is. Maar je kan het als basis gebruiken om je eigen patroon te maken. -updateNotes-txt: Hou de notities die je bij je patroon maakt up to date -franceWarning: Let op, Franse gebruikers -franceWarning-txt: Verschillende Franse e-mailproviders- onder andere free.fr, laposte.net, orange.fr en sfr.fr- houden onze e-mails regelmatig tegen. -emailNotReceived: Indien je de activatiemail niet ontvangt, laat ons dan iets weten zodat we je kunnen helpen. -error: Error -info: Info -warning: Waarschuwing -debug: Debug -unsubscribe: Uitschrijven -slogan-come: Kom voor de naaipatronen -slogan-stay: Blijf voor het gezelschap -lightTheme: Light Theme -darkTheme: Dark Theme -hax0rTheme: Hax0r Theme -lgbtqTheme: LGBTQ Theme -transTheme: Trans Theme -accessoryDesigns: Accessory Designs -blockDesigns: Block/Sloper Designs -garmentDesigns: Garment Designs -utilityDesigns: Utility Designs diff --git a/packages/i18n/src/locales/nl/cfp.yaml b/packages/i18n/src/locales/nl/cfp.yaml deleted file mode 100644 index e30b886c6f6..00000000000 --- a/packages/i18n/src/locales/nl/cfp.yaml +++ /dev/null @@ -1,33 +0,0 @@ ---- -author: Auteur -githubRepo: GitHub repository -packageManager: Pakketbeheerder -patternName: Patroon naam -patternType: Patroon type -patternCreated: Het skelet van je patroon is aangemaakt in -runTheseCommands: Voer dit commando uit om te beginnen. -startRollup: In één terminal, start de rollup bundler in de volgmodus -startWebpack: "Het zal de map 'voorbeeld' invoeren en de ontwikkelingsomgeving starten." -devDocsAvailableAt: Documentatie voor ontwikkelaars is beschikbaar op -talkToUs: Voor vragen, feedback of suggesties, neem deel aan onze Discord server -draftYourPattern: Teken je patroon -testYourPattern: Test je patroon -draftThing: 'Teken {thing}' -testThing: 'Test {thing}' -renderInBrowser: Klik hieronder om je patroon in de browser te tonen. -weWillReRender: Wanneer je wijzigingen maakt, renderen we opnieuw. -youCan: Je kan -enterMeasurements: Maten manueel invoeren -preloadMeasurements: Een set van maten inladen -size: Maat -noRequiredMeasurements: Dit patroon heeft geen vereiste maten -howtoAddMeasurements: Om maten te vereisen, voeg je ze toe aan de measurements sectie van het configuratiebestand van het patroon. -seeDocsAt: Documentatie over dit onderwerp is beschikbaar op -clearDesignMode: Ontwerp modus wissen -designMode: Ontwerp modus -exportMode: Export modus -thingIsEnabled: '{thing} is ingeschakeld' -thingIsDisabled: '{thing} is uitgeschakeld' -turnOn: Inschakelen -turnOff: Uitschakelen -validNameWarning: "Kies een andere naam, deze zou voor problemen zorgen.\nWe (her)gebruiken de patroonnaam als naam voor het NPM-pakket.\nPakketnamen mogen geen hoofdletters of speciale tekens bevatten.\nDus geef je patroon een geschikte naam, zoals:" diff --git a/packages/i18n/src/locales/nl/components/common.yaml b/packages/i18n/src/locales/nl/components/common.yaml deleted file mode 100644 index da05dfbfea1..00000000000 --- a/packages/i18n/src/locales/nl/components/common.yaml +++ /dev/null @@ -1,13 +0,0 @@ ---- -account: Account -blog: Blog -commumity: Gemeenschap -designs: Designs -docs: Documentatie -patternInstructions: Patroon instructies -patternOptions: Patroon opties -requiredMeasurements: Vereiste maten -showcase: Voorbeelden -sloganCome: Kom voor de naaipatronen -sloganStay: Blijf voor het gezelschap -support: Ondersteuning diff --git a/packages/i18n/src/locales/nl/components/homepage.yaml b/packages/i18n/src/locales/nl/components/homepage.yaml deleted file mode 100644 index 99a9f27e0bc..00000000000 --- a/packages/i18n/src/locales/nl/components/homepage.yaml +++ /dev/null @@ -1,2 +0,0 @@ ---- -scrollDownToLearnMore: Scroll down to learn more about FreeSewing and try it for free diff --git a/packages/i18n/src/locales/nl/components/ograph.yaml b/packages/i18n/src/locales/nl/components/ograph.yaml deleted file mode 100644 index f2f860780a2..00000000000 --- a/packages/i18n/src/locales/nl/components/ograph.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -orgTitle: Welcome to FreeSewing.org -devTitle: Welcome to FreeSewing.dev -labTitle: Welcome to lab.FreeSewing.lab -devDescription: Documentation and tutorials for FreeSewing developers and contributors. Plus our Developers Blog diff --git a/packages/i18n/src/locales/nl/components/patrons.yaml b/packages/i18n/src/locales/nl/components/patrons.yaml deleted file mode 100644 index 89c5c1badc9..00000000000 --- a/packages/i18n/src/locales/nl/components/patrons.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -becomeAPatron: Word mecenas -supportFreesewing: Support FreeSewing -patronLead: FreeSewing draait op een vrijwillig subscriptiemodel -patronPitch: Als je denkt dat wat wij doen de moeite is, en je kan elke maand een paar centen missen zonder al te veel problemen, steun dan alsjeblieft ons werk diff --git a/packages/i18n/src/locales/nl/components/posts.yaml b/packages/i18n/src/locales/nl/components/posts.yaml deleted file mode 100644 index 86f2dcb7659..00000000000 --- a/packages/i18n/src/locales/nl/components/posts.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -xMadeThis: '{x} made this' -xWroteThis: '{x} wrote this' diff --git a/packages/i18n/src/locales/nl/components/themes.yaml b/packages/i18n/src/locales/nl/components/themes.yaml deleted file mode 100644 index 2c61edf6f9a..00000000000 --- a/packages/i18n/src/locales/nl/components/themes.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -lightTheme: Light Theme -darkTheme: Dark Theme -hax0rTheme: Hax0r Theme -lgbtqTheme: LGBTQ Theme -transTheme: Trans Theme diff --git a/packages/i18n/src/locales/nl/components/workbench.yaml b/packages/i18n/src/locales/nl/components/workbench.yaml deleted file mode 100644 index d42f105cba8..00000000000 --- a/packages/i18n/src/locales/nl/components/workbench.yaml +++ /dev/null @@ -1,11 +0,0 @@ ---- -designOptions: Design opties -forPrinting: For printing -forCutting: For cutting -layoutThing: 'Layout {thing}' -pageSize: Page size -startBySelectingAThing: 'Start by selecting a {thing}' -testThing: 'Test {thing}' -yamlEditViewTitleThing: 'Edit Pattern Configuration for {thing}' -yamlEditViewError: Issues with YAML -yamlEditViewErrorDesc: We saved your input, but it might not work for the following reasons diff --git a/packages/i18n/src/locales/nl/cty.yaml b/packages/i18n/src/locales/nl/cty.yaml deleted file mode 100644 index 3c843e7aca0..00000000000 --- a/packages/i18n/src/locales/nl/cty.yaml +++ /dev/null @@ -1,20 +0,0 @@ ---- -wafsHashtag: WeAreFreeSewing -weAreACommunityOfMakers: Wij zijn een gemeenschap van makers -weProvideMtmSewingPatterns: We bieden naaipatronen op maat -isAPatron: is een beschermheer -contributesWith: draagt bij aan -communityBuilding: Gemeenschap gebouw -development: Ontwikkeling -patternTesting: Patroon testen -patternDesign: Patroon ontwerp -support: Ondersteuning -translation: Vertaling -writing: Schrijven -whereToFindUs: Waar kunnen we vinden -whoWeAre: Wie zijn wij -community: Gemeenschap -team: Team -teams: teams -contributors: Bijdragers -calls: Gesprekken met bijdragers diff --git a/packages/i18n/src/locales/nl/designs.yml b/packages/i18n/src/locales/nl/designs.yml deleted file mode 100644 index eb33b232ac7..00000000000 --- a/packages/i18n/src/locales/nl/designs.yml +++ /dev/null @@ -1,142 +0,0 @@ ---- -aaron: - description: Aaron is een sportief mouwloos hemdje of onderhemd. - title: Aaron Onderhemd -albert: - description: Albert is een vork. - title: Albert schort -bee: - description: Bee is a bikini top - title: Bee bikini top -bella: - description: Bella is een basisorgaan voor mensen met borsten. - title: Bella lichaam blok -benjamin: - description: Benjamin is een vlinderdas met vier verschillende mogelijke vormen. - title: Benjamin vlinderdas -bent: - description: Dit patroon met tweedelige mouw is de basis voor onze jassen- en jasjespatronen. - title: Bent Basisvorm -bob: - description: This is the bib that you can create by following our design tutorial - title: Bob the bib -breanna: - description: Breanna is een basislichaam voor mensen met borsten. - title: Breanna basispatroon -brian: - description: Brian is een basislichaam voor mensen zonder borsten. - title: Brian Basisvorm -bruce: - description: Bruce is een boxershort die zowel comfortabel als stylish is. - title: Bruce boxershort -carlita: - description: 'De versie voor borsten van onze Carlton jas, aka Sherlock Holmes jas.' - title: Carlita jas -carlton: - description: 'Voor als je Sherlock Holmes wil spelen, of gewoon een heel mooie jas zoekt.' - title: Carlton jas -cathrin: - description: Cathrin is een underbust korset of waist trainer. - title: Cathrin korset -charlie: - description: Charlie is een chino broekpatroon. - title: Charlie chinos -cornelius: - description: Cornelius zijn broeders aan het fietsen op basis van de methode van Sleutelsteen. - title: Cornelius fietsen boren -diana: - description: Diana is een top met een gedrapeerde halslijn. - title: Diana top met drapage -florent: - description: 'Florent is een klassieke platte pet, rond bovenaan met een kleine klep vooraan.' - title: Florent pet -florence: - description: 'Florence is een mondmasker.' - title: Florence mondmasker -hi: - description: The world's friendliest shark - title: Hi shark plush toy -holmes: - description: 'Voor als je Sherlock Holmes wil spelen, of gewoon een leuk hoedje zoekt.' - title: Holmes deerstanker hoed -hortensia: - description: 'Hortensie is een handzak.' - title: Hortensia handtas -huey: - description: Huey is een trui met kap met een rits, en optionele voorzakken. - title: Huey Hoodie -hugo: - description: Hugo is een trui met kap en een raglanmouw. - title: Hugo hoodie -jaeger: - description: Jaeger is a sport coat style jacket with two buttons and patch pockets. - title: Jaeger jasje -lucy: - description: Lucy is a historical pocket that you can tie around your waist. - title: Lucy tie-on pocket -lunetius: - description: Lunetius is a lacerna, a historical Roman cloak - title: Lunetius Lacerna -noble: - description: Noble is a body block with prince(ess) seams - title: Noble body block -octoplushy: - description: A multi-armed companion for next-level hugs - title: Octoplushy the octopus -paco: - description: Paco is een casual maar stijlvolle zomerbroek. - title: Paco broek -penelope: - description: Penelope is een smalle rok, met of zonder split achteraan. - title: Penelope pencil skirt -sandy: - description: Sandy is een veelzijdig patroon voor een cirkelrok. - title: Sandy cirkelrok -shin: - description: Shin is atletische zwembroek. - title: Shin zwembroek -simon: - description: Simon is een zeer flexibel hemdpatroon voor mensen zonder borsten. - title: Simon hemd -simone: - description: Simone is simon, aangepast aan borsten. - title: Simone hemd -sven: - description: Sven is een no-nonsense basic trui. - title: Sven sweater -tamiko: - description: Tamiko is een top die geen stof verspilt. - title: Tamiko top -teagan: - description: Teagan is een patroon voor een aansluitend t-shirt. - title: Teagan T-shirt -theo: - description: Theo is een klassiek broekpatroon. - title: Theo Broek -tiberius: - description: Tiberius is a historical Roman tunic - title: Tiberius Tunica -titan: - description: Titan is a dartless trouser block. - title: Titan basispatroon broek -trayvon: - description: Trayvon is een das zoals het hoort, voor een professioneel resultaat. - title: Trayvon das -unice: - description: Unice is a variant of Ursula; A basic, highly-customizable underwear pattern. - title: Unice undies -ursula: - description: Ursula is een fundamenteel, zeer aanpasbaar ondergoed patroon. - title: Ursula undies -wahid: - description: Wahid is een klassiek aansluitend gilet. - title: Wahid gilet -walburga: - description: Walburga is a tabard/surcoat, a historical garment from medieval Europe - title: Walburga Wappenrock -waralee: - description: Waralee is een wikkelbroek. - title: Waralee wikkelbroek -yuri: - description: Yuri is een mooie ritsvrije cardigan gebaseerd op de Huey & Hugo hoodies - title: Yuri hoodie diff --git a/packages/i18n/src/locales/nl/email.yaml b/packages/i18n/src/locales/nl/email.yaml deleted file mode 100644 index b5ff7097898..00000000000 --- a/packages/i18n/src/locales/nl/email.yaml +++ /dev/null @@ -1,26 +0,0 @@ ---- -emailChangeActionText: 'Bevestig uw nieuwe e-mailadres' -emailChangeCopy1: 'You requested to change the E-mail address linked to your account at FreeSewing.org.' -emailChangeCopy2: 'Before we do that, you need to confirm your new E-mail address. Please click the link below to do that:' -emailChangeHiddenIntro: "Laten we uw nieuwe e-mailadres bevestigen" -emailChangeTitle: 'Bevestig uw nieuwe e-mailadres' -emailChangeWhy: 'You received this E-mail because you changed the E-mail address linked to your account on FreeSewing.org' -goodbyeCopy1: "If you'd like to share why you're leaving, you can reply to this message." -goodbyeCopy2: "From our side, we won't bother you again." -goodbyeTitle: 'Thank you for giving FreeSewing a chance' -goodbyeWhy: 'You received this E-mail as a final farewell after removing your account on FreeSewing.org' -passwordResetActionText: 'Krijg toegang tot uw account' -passwordResetCopy1: 'You forgot your password for your account at FreeSewing.org.' -passwordResetCopy2: 'Click the link below to reset your password:' -passwordResetHeaderOpeningLine: "Maak je geen zorgen, deze dingen gebeuren met ons allemaal" -passwordResetHiddenIntro: 'Krijg toegang tot uw account' -passwordResetSubject: 'Krijg toegang tot uw account op freesewing.org' -passwordResetTitle: 'Stel uw wachtwoord opnieuw in en verkrijg opnieuw toegang tot uw account' -passwordResetWhy: 'U hebt deze e-mail ontvangen omdat u heeft gevraagd om uw wachtwoord opnieuw in te stellen op freesewing.org' -questionsJustReply: "Zit je met vragen? Stuur ze dan als antwoord op deze E-mail. Ik ben steeds bereid om een handje te helpen. 🙂" -signupActionText: 'Bevestig je E-mail adres' -signupCopy1: 'Thank you for signing up at FreeSewing.org.' -signupCopy2: 'Before we get started, you need to confirm your E-mail address. Please click the link below to do that:' -signupHiddenIntro: "Nu gewoon nog even je E-mail adres bevestigen" -signupSubject: 'Welcome to FreeSewing.org' -signupWhy: 'Je ontving deze E-mail omdat je je zonet ingeschreven hebt op freesewing.org' diff --git a/packages/i18n/src/locales/nl/errors.yaml b/packages/i18n/src/locales/nl/errors.yaml deleted file mode 100644 index 15328575018..00000000000 --- a/packages/i18n/src/locales/nl/errors.yaml +++ /dev/null @@ -1,11 +0,0 @@ ---- -404: De pagina waarnaar u op zoek bent, kan niet gevonden worden -confirmationNotFound: Als u op deze pagina bent aangekomen via de link in een bevestigingsmail, raden we u aan dit probleem te melden. -emailExists: We hebben al een gebruiker met dat email adres. Misschien wil u zich eerder aanmelden? -networkError: Backend of netwerk probleem -notAValidImageFormat: Geen geldig beeldformaat -requestFailedWithStatusCode400: Verzoek mislukt -requestFailedWithStatusCode401: Authenticatie mislukt -requestFailedWithStatusCode403: Verboden -requestFailedWithStatusCode500: Er was een onverwacht probleem. Rapporteer dit alstublieft. -something: Er ging iets mis diff --git a/packages/i18n/src/locales/nl/filter.yml b/packages/i18n/src/locales/nl/filter.yml deleted file mode 100644 index 4374787ae66..00000000000 --- a/packages/i18n/src/locales/nl/filter.yml +++ /dev/null @@ -1,20 +0,0 @@ ---- -filter: Filter -department: Afdeling -type: Soort -tags: Labels -code: Code -design: Ontwerp -difficulty: Moeilijkheid -resetFilter: Filters herstellen -accessories: Accessoires -block: Basisvorm -pattern: Patroon -byPattern: Filter op patroon -underwear: Ondergoed -top: Top -tops: Tepels -bottom: Bodem -bottoms: Onderpanden -coats: Jas & jassen -swimwear: Zwemkledij diff --git a/packages/i18n/src/locales/nl/i18n.yaml b/packages/i18n/src/locales/nl/i18n.yaml deleted file mode 100644 index fa11360b539..00000000000 --- a/packages/i18n/src/locales/nl/i18n.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -de: Duits -en: Engels -es: Spaans -fr: Frans -nl: Nederlands diff --git a/packages/i18n/src/locales/nl/index.js b/packages/i18n/src/locales/nl/index.js deleted file mode 100644 index 328625f6af9..00000000000 --- a/packages/i18n/src/locales/nl/index.js +++ /dev/null @@ -1,85 +0,0 @@ -import account from './account.yaml' -import app from './app.yaml' -import cfp from './cfp.yaml' -import cty from './cty.yaml' -import email from './email.yaml' -import errors from './errors.yaml' -import filter from './filter.yml' -import gdpr from './gdpr.yaml' -import i18n from './i18n.yaml' -import intro from './intro.yaml' -import measurements from './measurements.yaml' -import lab from './lab.yaml' -import options from './options/' -import optiongroups from './optiongroups.yaml' -import parts from './parts.yaml' -import patterns from './patterns.yml' -import plugin from './plugin/' -import settings from './settings.yml' -import welcome from './welcome.yaml' - -import jargonFile from './jargon.yml' - -const topics = { - account, - app, - cfp, - cty, - email, - errors, - filter, - gdpr, - i18n, - intro, - measurements, - lab, - options, - optiongroups, - parts, - patterns, - plugin, - settings, - welcome, -} - -const strings = {} - -for (let topic of Object.keys(topics)) { - for (let id of Object.keys(topics[topic])) { - if (typeof topics[topic][id] === 'string') strings[topic + '.' + id] = topics[topic][id] - else { - for (let key of Object.keys(topics[topic][id])) { - if (typeof topics[topic][id][key] === 'string') - strings[topic + '.' + id + '.' + key] = topics[topic][id][key] - else { - for (let subkey of Object.keys(topics[topic][id][key])) { - if (typeof topics[topic][id][key][subkey] === 'string') - strings[topic + '.' + id + '.' + key + '.' + subkey] = topics[topic][id][key][subkey] - else { - for (let subsubkey of Object.keys(topics[topic][id][key][subkey])) { - if (typeof topics[topic][id][key][subkey][subsubkey] === 'string') - strings[topic + '.' + id + '.' + key + '.' + subkey + '.' + subsubkey] = - topics[topic][id][key][subkey][subsubkey] - else { - console.log('Depth exceeded!', topic, id, key, subkey, subsubkey) - } - } - } - } - } - } - } - } -} - -const jargon = {} -for (let entry in jargonFile) { - jargon[jargonFile[entry].term] = jargonFile[entry].description -} - -export default { - strings, - plugin, - jargon, - topics, -} diff --git a/packages/i18n/src/locales/nl/intro.yaml b/packages/i18n/src/locales/nl/intro.yaml deleted file mode 100644 index ae0e72839f2..00000000000 --- a/packages/i18n/src/locales/nl/intro.yaml +++ /dev/null @@ -1,12 +0,0 @@ ---- -txt-blog: Nieuws, updates, and mededelingen door het freesewing team -txt-community: 'Al het werk word gedaan door vrijwillige medewerkers. Er zijn geen commerciële belangen verbonden aan het project.' -txt-different: Hoe we anders zijn -txt-draft: "Kies één van onze patronen, één van jouw modellen, en kies je opties. Wij doen de rest." -txt-how: Hoe het werkt -txt-join: Sluit je aan bij duizenden anderen, en schrijf je gratis in op freesewing.org. -txt-model: Al onze patronen zijn op maat gemaakt. Het eerste wat je dus moet doen is je lintmeter bij de hand nemen. -txt-newHere: "Ben je hier nieuw? Dan is onze demo de beste plaats om van start te gaan:" -txt-opensource: 'Ons platform, al onze patronen, en zelfs deze website. Al onze broncode is beschikbaar op GitHub. Pull requests welkom!' -txt-patrons: Freesewing wordt mogelijk gemaakt door de financiële steun van onze mecenassen. Onderaan deze pagina kan je meer lezen over hoe we dit schip drijvende houden. -txt-showcase: Bekijk de projecten gemaakt door de freesewing gemeenschap diff --git a/packages/i18n/src/locales/nl/jargon.yml b/packages/i18n/src/locales/nl/jargon.yml deleted file mode 100644 index 48391a97327..00000000000 --- a/packages/i18n/src/locales/nl/jargon.yml +++ /dev/null @@ -1,85 +0,0 @@ ---- -basting: - term: driegen - description: "Zie Driegen in deDocumentatie naaien" -coverlock: - term: coverlock - description: "Zie Coverlock in deDocumentatie naaien" -cutting: - term: knippen - description: "Zie Knippen in deDocumentatie naaien" -darts: - term: nepen - description: "Zie Nepen in deDocumentatie naaien" -doubleWeltPockets: - term: dubbele paspelzak - description: "Zie Dubbele paspelzak in deDocumentatie naaien" -ease: - term: overwijdte - description: "Zie Overwijdte in deDocumentatie naaien" -edgestitch: - term: edgestitch - description: "See Edgestitching in the Sewing documentation" -fabricGrain: - term: draadrichting - description: "Zie Draadrichting in deDocumentatie naaien" -goodSidesTogether: - term: goede kanten op elkaar - description: "Zie Goede kanten op elkaar in deDocumentatie naaien" -onTheFold: - term: aan de stofvouw - description: "Zie Aan de stofvouw bij de Documentatie naaien" -hemming: - term: zomen - description: "Zie Zomen in deDocumentatie naaien" -jersey: - term: jersey - description: "Zie Jersey in deDocumentatie naaien" -knitBinding: - term: jersey biezen - description: "Zie Jersey biezen in deDocumentatie naaien" -knitFabric: - term: gebreide stof - description: "Zie Gebreide stof in deDocumentatie naaien" -pinning: - term: spelden - description: "Zie Spelden in deDocumentatie naaien" -rayon: - term: rayon - description: "Zie Rayon in deDocumentatie naaien" -sa: - term: naadtoeslag - description: "Zie Naadtoeslag in deDocumentatie naaien" -serger: - term: serger/overlock - description: "Zie Serger/Overlock in deDocumentatie naaien" -slipstitch: - term: slipstitch - description: "See Slipstitch in the Sewing documentation" -topstitching: - term: sierstiksel - description: "Zie Sierstiksel in deDocumentatie naaien" -trimming: - term: bijknippen - description: "Zie Bijknippen in deDocumentatie naaien" -twinNeedle: - term: tweelingnaald - description: "Zie Tweelingnaald in deDocumentatie naaien" -zigZag: - term: zigzagsteek - description: "Zie Zigzagsteek in deDocumentatie naaien" -freesewing: - term: freesewing - description: 'FreeSewing is een open source platform voor naaipatronen op maat' -patternOptions: - term: patroon opties - description: 'De patroon opties staan je toe het ontwerp van het patroon aan te passen' -draftSettings: - term: instellingen patroontekening - description: 'De instellingen patroontekening geven je controle over goe een patroon gegenereerd wordt' -patrons: - term: patrons - description: 'Mecenassen ondersteunen FreeSewing financieel. Het zijn loyale supporters die zorgen voor een duurzame toekomst voor freesewing.org, onze code, onze patronen en onze gemeenschap.' -msf: - term: msf - description: "Médecins Sans Frontières/Artsen Zonder Grenzen - Ziemsf.org" diff --git a/packages/i18n/src/locales/nl/lab.yaml b/packages/i18n/src/locales/nl/lab.yaml deleted file mode 100644 index edb281f358d..00000000000 --- a/packages/i18n/src/locales/nl/lab.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -slogan: The FreeSewing lab provides -slogan1: All our pattern designs -slogan2: New & old version -slogan3: Bleeding edge code -slogan4: Unreleased designs diff --git a/packages/i18n/src/locales/nl/loader.yaml b/packages/i18n/src/locales/nl/loader.yaml deleted file mode 100644 index 3449e3e68b3..00000000000 --- a/packages/i18n/src/locales/nl/loader.yaml +++ /dev/null @@ -1 +0,0 @@ -processing: Processing diff --git a/packages/i18n/src/locales/nl/optiongroups.yaml b/packages/i18n/src/locales/nl/optiongroups.yaml deleted file mode 100644 index ea7acdf82e7..00000000000 --- a/packages/i18n/src/locales/nl/optiongroups.yaml +++ /dev/null @@ -1,25 +0,0 @@ ---- -advanced: Geavanceerd -armhole: Harnas -closure: Sluiting -collar: Kraag -construction: Constructie -cuffs: Manchetten -darts: Nepen -elastic: Elastiek -fit: Pasvorm -pockets: Zakken -preferences: Voorkeuren -sleevecap: Mouwkop -sleeves: Mouwen -style: Stijl -backPockets: Achterzakken -frontPockets: Voorzakken -waistband: Tailleband -fly: Vliegen -bellaDarts: Bella figuurnaden -bellaArmhole: Bella armsgat -bellaAdvanced: Bella geavanceerd -clavi: Clavi -type: Type -size: Maat diff --git a/packages/i18n/src/locales/nl/options/aaron.yml b/packages/i18n/src/locales/nl/options/aaron.yml deleted file mode 100644 index c7c56792571..00000000000 --- a/packages/i18n/src/locales/nl/options/aaron.yml +++ /dev/null @@ -1,25 +0,0 @@ ---- -armholeDrop: - title: Diepte armsgat - description: Verlaag het armsgat met deze hoeveelheid. Een negatieve waarde maakt het hoger. -backlineBend: - title: Vorm armsgat achteraan - description: Bepaalt de vorm/curve van de achterkant van het armsgat. -hipsEase: - title: Overwijdte heup - description: De hoeveelheid overwijdte aan je heupen. -necklineBend: - title: Vorm halslijn - description: Bepaalt de vorm/kromming van de halslijn aan het middenvoor. -necklineDrop: - title: Diepte halslijn - description: De hoeveelheid waarmee de halslijn vooraan weggesneden wordt. -shoulderStrapPlacement: - title: Plaatsing schouderbandjes - description: Bepaalt of de schouderbandjes dichter bij de nek (lager cijfer) of dichter bij de schouder (hoger cijfer) geplaatst worden. -shoulderStrapWidth: - title: Breedte schouderband - description: De breedte van de schouderbandjes. -stretchFactor: - description: Bepaalt hoeveel kleiner de horizontale omtrek is dan je lichaamsmaten. In andere woorden, hoe strak alles zit. - title: Rek diff --git a/packages/i18n/src/locales/nl/options/albert.yml b/packages/i18n/src/locales/nl/options/albert.yml deleted file mode 100644 index 6bcedde4113..00000000000 --- a/packages/i18n/src/locales/nl/options/albert.yml +++ /dev/null @@ -1,20 +0,0 @@ ---- -backOpening: - title: Rugopening - description: Bepaalt de opening aan de achterkant van de schort -chestDepth: - title: Lengte van de badjes - description: Bepaalt de lengte van de bandjes -lengthBonus: - title: Lengtebonus - description: Bepaalt de lengte van de schort -bibLength: - title: Lengte slabbetje - description: Bepaalt de lengte van het slabbetje -bibWidth: - title: Breedte slabbetje - description: Bepaalt de breedte van het slabbetje -strapWidth: - title: Breedte bandjes - description: Bepaalt de breedte van de bandjes - diff --git a/packages/i18n/src/locales/nl/options/bee.yml b/packages/i18n/src/locales/nl/options/bee.yml deleted file mode 100644 index 7f8169cb774..00000000000 --- a/packages/i18n/src/locales/nl/options/bee.yml +++ /dev/null @@ -1,82 +0,0 @@ ---- -chestEase: - title: Overwijdte borst - description: Controls the chest ease in the underlying Bella block Bee is based on -waistEase: - title: Overwijdte taille - description: Controls the waist ease in the underlying Bella block Bee is based on -bustSpanEase: - title: Overwijdte bustenwijdte - description: Controls the bust span ease in the underlying Bella block Bee is based on -topDepth: - title: Top Depth - description: Controls how far the bikini cup extends upwards -bottomCupDepth: - title: Bottom depth - description: Controls how far the bikini cup extends downwards -sideDepth: - title: Side depth - description: Controls how far the bikini cup extends towards the side -sideCurve: - title: Side curve - description: Controls the curvature of the side of the bikini cup -frontCurve: - title: Front curve - description: Controls the curvature of the front of the bikini cup -bellaGuide: - title: Show Bella - description: Shows the outline of the Bella block Bee is based on -ties: - title: Ties - description: Whether to includes ties, yes or no -bandTieWidth: - title: Band (chest) tie width - description: Controls the width of the ties around your chest -bandTieLength: - title: Band (chest) tie length - description: Controls the length of the ties around your chest -bandTieEnds: - title: Band (chest) tie ends - description: Whether you like straight or pointy ends on the ties around your chest -bandTieColours: - title: Band (chest) tie length colours - description: Whether you want single color ties around your chest, or dual-coloured ones -neckTieWidth: - title: Neck tie width - description: Controls the width of the ties around your chest -neckTieLength: - title: Neck tie length - description: Controls the length of the ties around your chest -neckTieEnds: - title: Neck tie ends - description: Whether you like straight or pointy ends on the ties around your chest -neckTieColours: - title: Neck tie colours - description: Whether you want single color ties around your chest, or dual-coloured ones -crossBackTies: - title: Cross back ties - description: Whether you'd like to use the cross back tie variation of Bee -bandLength: - title: Band Length (Cross back ties) - description: Controls the length of the band around your chest for the cross back ties variation of Bee -backDartHeight: - title: Back dart height (Bella) - description: Controls the back dart height in the underlying Bella block Bee is based on -armholeDepth: - title: Armhole depth (Bella) - description: Controls the armhole depth in the underlying Bella block Bee is based on -frontArmholePitchDepth: - title: Front armhole pitch depth (Bella) - description: Controls the front armhole pitch depth in the underlying Bella block Bee is based on -frontShoulderWidth: - title: Front shoulder width (Bella) - description: Controls the front shoulder width in the underlying Bella block Bee is based on -fullChestEaseReduction: - title: Full chest reduction (Bella) - description: Controls the full chest reduction in the underlying Bella block Bee is based on -highBustWidth: - title: High bust width (Bella) - description: Controls the high bust width in the underlying Bella block Bee is based on -shoulderToShoulderEase: - title: Shoulder to Shoulder ease (Bella) - description: Controls the shoulder to shoulder ease in the underlying Bella block Bee is based on diff --git a/packages/i18n/src/locales/nl/options/bella.yml b/packages/i18n/src/locales/nl/options/bella.yml deleted file mode 100644 index d15062f3df8..00000000000 --- a/packages/i18n/src/locales/nl/options/bella.yml +++ /dev/null @@ -1,58 +0,0 @@ ---- -chestEase: - title: Overwijdte borst - description: Bepaalt de hoeveelheid overwijdte aan het grootste deel van je borst -waistEase: - title: Overwijdte taille - description: Bepaalt de hoeveelheid overwijdte aan je taille -bustSpanEase: - title: Overwijdte bustenwijdte - description: Bepaalt de hoeveelheid (horizontaal) overwijdte die wordt toegevoegd aan uw bustewijdte bij het lokaliseren van het bustepunt. -shoulderToShoulderEase: - title: Shoulder to Shoulder ease - description: Controls the amount of ease between your shoulders. Initially set to -.5% because Bella implements a block that is used in the industry. -fullChestEaseReduction: - title: Full chest ease reduction - description: Allows you to independently reduce the ease around the chest to make it fit tight(er) in that area -backDartHeight: - title: Hoogte neep rug - description: Bepaalt de hoogte van de achterste neep -bustDartLength: - title: Lengte busteneep - description: Bepaalt de lengte van de buste-neep -waistDartLength: - title: Lengte neep taille - description: Bepaalt de lengte van de neep van de taille -bustDartCurve: - title: Curve busteneep - description: Bepaalt de kromming van de busteneep -armholeDepth: - title: Diepte armsgat - description: Bepaalt de diepte van het armsgat -backArmholeSlant: - title: Schuin armsgat achter - description: Het armsgat rond zijn toonhoogte roteert enigszins -frontArmholeCurvature: - title: Front armhole curvature - description: Controls how deep the armhole is scooped out at the front bottom -backArmholeCurvature: - title: Kromming armsgat achter - description: Bepaalt hoe diep het armsgat aan de achterste onderkant wordt uitgekoopt -frontArmholePitchDepth: - title: Diepte armsgat vooraan - description: Aanpassen van de horizontale plaatsing van het pitch voorste armsgat -backArmholePitchDepth: - title: Diepte armsgat achteraan - description: Aanpassen van de horizontale plaatsing van het armsgat achterin -backNeckCutout: - title: Hals uitsnijding achteraan - description: Bepaalt hoe diep de halsopening aan de achterkant wordt uitgekoopt -backHemSlope: - title: Lope zoom achter - description: Bepaalt de richtingscoëfficiënt van de zoom achteraan -frontShoulderWidth: - title: Schouderbreedte vooraan - description: Bepaalt de smalheid van de schouders vooraan ten opzichte van de achterkant -highBustWidth: - title: Hoge buste-breedte - description: Stelt je in staat om de breedte van de nachtbust vooraan te wijzigen diff --git a/packages/i18n/src/locales/nl/options/benjamin.yml b/packages/i18n/src/locales/nl/options/benjamin.yml deleted file mode 100644 index de7bbac8fce..00000000000 --- a/packages/i18n/src/locales/nl/options/benjamin.yml +++ /dev/null @@ -1,28 +0,0 @@ ---- -adjustmentRibbon: - title: Aanpaslintje - description: Of je wel of geen aanpaslintje wil -bandLength: - title: Lengte band - description: Lengte van de band -tipWidth: - title: Tip breedte - description: Breedte van de punten -knotWidth: - title: Knoop breedte - description: Breedte van de knoop -bowLength: - title: Lengte strik - description: De lengte van gestrikt (gestrikt) -bowStyle: - title: Stijl strik - description: Stijl van de strik -endStyle: - title: Puntvorm - description: Stijl van de puntjes van de strik -collarEase: - title: Overwijdte kraag - description: The amount of ease at your neck -ribbonWidth: - title: Ribbon width - description: Width of the ribbon diff --git a/packages/i18n/src/locales/nl/options/bent.yml b/packages/i18n/src/locales/nl/options/bent.yml deleted file mode 100644 index 45ae809322d..00000000000 --- a/packages/i18n/src/locales/nl/options/bent.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- -sleeveBend: - title: Mouw kromming - description: Buiging van de mouw aan de elleboog -sleevecapHeight: - title: Hoogte mouwkop - description: Bepaalt de hoogte van de mouwkop - diff --git a/packages/i18n/src/locales/nl/options/bob.yml b/packages/i18n/src/locales/nl/options/bob.yml deleted file mode 100644 index d31ce9e5893..00000000000 --- a/packages/i18n/src/locales/nl/options/bob.yml +++ /dev/null @@ -1,12 +0,0 @@ -neckRatio: - title: Neck opening - description: Controls the size of the neck opening relative to the bib size -widthRatio: - title: Breedte - description: Bepaalt de breedte van het slabbetje -lengthRatio: - title: Lengte - description: Bepaalt de lengte van het slabbetje -headSize: - title: Head size - description: The head circumference you want the bib to accomodate diff --git a/packages/i18n/src/locales/nl/options/breanna.yml b/packages/i18n/src/locales/nl/options/breanna.yml deleted file mode 100644 index ba360aa25af..00000000000 --- a/packages/i18n/src/locales/nl/options/breanna.yml +++ /dev/null @@ -1,41 +0,0 @@ ---- -shoulderDart: - title: Schouder neep - description: Wel of niet een neep aan de schouder aan de schouder aan de achterkant -shoulderDartSize: - title: Grootte schouder neep - description: De grootte van de schouderneep -shoulderDartLength: - title: Lengte schouder neep - description: De lengte van de schouderneep -waistDart: - title: Taille neep - description: Of je een neep aan de taille wilt aanlaten om de achterkant af te ronden -waistDartSize: - title: Grootte neep taille - description: De grootte van de neep van de taille -waistDartLength: - title: Lengte neep taille - description: De lengte van de neep van de taille -verticalEase: - title: Verticale overwijdte - description: De hoeveelheid overwijdte om te verdelen over de lengte van het kledingstuk -waistEase: - title: Overwijdte taille - description: De hoeveelheid overwijdte aan de taille -primaryBustDart: - title: Bust neep - description: Waar moet je de buikneep plaatsen om de borst vorm te geven -primaryBustDartLength: - title: Lengte busteneep - description: De lengte van de bustenneep -secondaryBustDart: - title: Secundaire bustenneep - description: Voeg optioneel een secundaire bustenneep toe om de vormgeving van de borst te verdelen -secondaryBustDartLength: - title: Secundaire lengte bustenneep - description: De lengte van de secundaire bustenneep -primaryBustDartShaping: - title: Bust nepen vormgeving - description: Bepaalt het evenwicht tussen de hoofd- en secundaire busteennepen - diff --git a/packages/i18n/src/locales/nl/options/brian.yml b/packages/i18n/src/locales/nl/options/brian.yml deleted file mode 100644 index 98d4d5e4763..00000000000 --- a/packages/i18n/src/locales/nl/options/brian.yml +++ /dev/null @@ -1,106 +0,0 @@ ---- -acrossBackFactor: - title: Rugwijdte - description: Geeft controle over de breedte van je rug als een factor van je schouder tot schouder maat. -armholeDepthFactor: - title: Diepte armsgat factor - description: Controleert de diepte van het armsgat. Hoe hoger deze waarde, hoe dieper het armsgat. -backNeckCutout: - title: Hals uitsnijding achteraan - description: Hoe diep de nek wordt uitgesneden aan de rug -bicepsEase: - title: Overwijdte biceps - description: 'De hoeveelheid overwijdte aan je bovenarm. Let op dat we proberen dit te respecteren, maar dat de mouw in het armsgat laten passen voorrang krijgt op de hoeveelheid overwijdte. ' -collarEase: - title: Overwijdte kraag - description: De hoeveelheid overwijdte rond je nek. -chestEase: - title: Overwijdte borst - description: De hoeveelheid overwijdte aan je borst. -cuffEase: - title: Overwijdte manchet - description: De hoeveelheid overwijdte aan je pols. -draftForHighBust: - title: Teken voor hoge buste - description: Teken het patroon voor de hoge bustemaat (indien beschikbaar) in plaats van de volle borstomtrek. Dit heeft een aansluitender kledingstuk als resultaat voor mensen met borsten. -frontArmholeDeeper: - title: Extra uitsnijding armsgat vooraan - description: Hoeveel dieper moet het armsgat vooraan zijn uitgesneden, in vergelijking met het armsgat achteraan. -lengthBonus: - title: Lengtebonus - description: De hoeveelheid waarmee het kledingstuk verlengd wordt. Een negatieve waarde maakte het korter. -s3Collar: - title: 'Schoudernaad verschuiving: kraagkant' - description: Verhoog deze optie om de schoudernaad vooruit aan de kant van de kraag te bewegen. Door deze te verschuiven wordt de naad achterwaarts verlegd. -s3Armhole: - title: 'Schouder naad shift: armsgatzijde' - description: Verhoog deze optie om de schoudernaad vooruit aan de zijkant van het armsgat naar voren te bewegen. Vermindering ervan verlegt de schoudernaad. -shoulderEase: - title: Overwijdte schouder - description: De hoeveelheid overwijdte aan je schouder. Dit vergroot de afstand van schouder tot schouder om ruimte te maken voor wat je onder je jas draagt. -shoulderSlopeReduction: - title: Reductie schouderhelling - description: Hoeveel de schouderhelling verminderd wordt om ruimte te maken voor epauletten. -sleeveLengthBonus: - title: Bonus mouwlengte - description: De hoeveelheid waarmee de mouw verlengd wordt. Een negatieve waarde zal ze korter maken. -sleevecapEase: - title: Extra ruimte mouwkop - description: Hoeveel langer de naad van de mouwkop is dan de naad van het armsgat. -sleevecapTopFactorX: - title: Mouwkop top X - description: Bepaalt de horizontale locatie van de top van de mouwkop -sleevecapTopFactorY: - title: Mouwkop top X - description: Controleert de hoogte van de mouwkop. Een hogere waarde heeft als resultaat een hogere en smallere mouwkop. -sleevecapBackFactorX: - title: Mouwkop X achteraan - description: Bepaalt de plaatsing op de X-as (horizontaal) van het ankerpunt van het achterste deel van de mouwkop -sleevecapBackFactorY: - title: Mouwkop Y achteraan - description: Bepaalt de plaatsing op de Y-as (verticaal) van het ankerpunt van het achterste deel van de mouwkop -sleevecapFrontFactorX: - title: Mouwkop X vooraan - description: Bepaalt de plaatsing op de X-as (horizontaal) van het ankerpunt van het voorste deel van de mouwkop -sleevecapFrontFactorY: - title: Mouwkop Y vooraan - description: Bepaalt de plaatsing op de Y-as (verticaal) van het ankerpunt van het voorste deel van de mouwkop -sleevecapQ1Offset: - title: Mouwkop Q1 offset - description: Bepaalt de kromming van de mouwkop in het eerste quadrant (armsgat vooraan) -sleevecapQ2Offset: - title: Mouwkop Q2 offset - description: Bepaalt de kromming van de mouwkop in het tweede quadrant (schouder vooraan) -sleevecapQ3Offset: - title: Mouwkop Q3 offset - description: Bepaalt de kromming van de mouwkop in het derde quadrant (schouder achteraan) -sleevecapQ4Offset: - title: Mouwkop Q4 offset - description: Bepaalt de kromming van de mouwkop in het vierde quadrant (armsgat vooraan) -sleevecapQ1Spread1: - title: Mouwkop Q1 neerwaardse spreiding - description: Bepaalt de spreiding van de kromming in het eerste quadrant van de mouwkop, in de richting van het armsgat -sleevecapQ1Spread2: - title: Mouwkop Q1 opwaardse spreiding - description: Bepaalt de spreiding van de kromming in het eerste quadrant van de mouwkop, in de richting van de shouder -sleevecapQ2Spread1: - title: Mouwkop Q2 neerwaardse spreiding - description: Bepaalt de spreiding van de kromming in het tweede quadrant van de mouwkop, in de richting van het armsgat -sleevecapQ2Spread2: - title: Mouwkop Q2 opwaardse spreiding - description: Bepaalt de spreiding van de kromming in het tweede quadrant van de mouwkop, in de richting van de shouder -sleevecapQ3Spread1: - title: Mouwkop Q3 opwaardse spreiding - description: Bepaalt de spreiding van de kromming in het derde quadrant van de mouwkop, in de richting van de shouder -sleevecapQ3Spread2: - title: Mouwkop Q3 neerwaardse spreiding - description: Bepaalt de spreiding van de kromming in het derde quadrant van de mouwkop, in de richting van het armsgat -sleevecapQ4Spread1: - title: Mouwkop Q4 opwaardse spreiding - description: Bepaalt de spreiding van de kromming in het vierde quadrant van de mouwkop, in de richting van de shouder -sleevecapQ4Spread2: - title: Mouwkop Q4 neerwaardse spreiding - description: Bepaalt de spreiding van de kromming in het vierde quadrant van de mouwkop, in de richting van het armsgat -sleeveWidthGuarantee: - title: Gegarandeerde mouw breedte - description: Bepaalt hoeveel van de mouwbreedte we garanderen wanneer we de mouw aan het armsgat aanpassen. diff --git a/packages/i18n/src/locales/nl/options/bruce.yml b/packages/i18n/src/locales/nl/options/bruce.yml deleted file mode 100644 index 5eb756101b9..00000000000 --- a/packages/i18n/src/locales/nl/options/bruce.yml +++ /dev/null @@ -1,19 +0,0 @@ ---- -bulge: - title: Kruisstuk - description: Maak de hoek groter voor meer ruimte in het kruisstuk. -legBonus: - title: Bonus beenlengte - description: Extra lengte om aan de benen toe te voegen. -rise: - title: Hoogte - description: Hoeveelheid waarmee de taille verhoogd wordt. Een negatieve waarde zal de taille verlagen. -stretch: - title: Rek - description: Hoeveel kleiner de omtrek is dan je lichaamsmaten. In andere woorden, hoe strak alles zit. -legStretch: - title: Stretch pijp - description: 'For best results, you want to fit your legs a bit more snugly — say no to gaping.' -backRise: - title: Hoogte achter - description: Het percentage waarmee de taille verhoogd wordt aan de rug. diff --git a/packages/i18n/src/locales/nl/options/carlita.yml b/packages/i18n/src/locales/nl/options/carlita.yml deleted file mode 100644 index 1140896d423..00000000000 --- a/packages/i18n/src/locales/nl/options/carlita.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -contour: - title: Contour - description: Controleert hoe nauw de prinsessennaad aansluit. diff --git a/packages/i18n/src/locales/nl/options/carlton.yml b/packages/i18n/src/locales/nl/options/carlton.yml deleted file mode 100644 index f6af5d3c873..00000000000 --- a/packages/i18n/src/locales/nl/options/carlton.yml +++ /dev/null @@ -1,31 +0,0 @@ ---- -seatEase: - title: Overwijdte zitvlak - description: De hoeveelheid overwijdte aan je zitvlak -pocketPlacementHorizontal: - title: Plaatsing zakken (horizontaal) - description: De horizontale plaatsing van de zakken -pocketPlacementVertical: - title: Plaatsing zakken (verticaal) - description: De verticale plaatsing van de zakken -collarHeight: - title: Hoogte kraag - description: De hoogte van de kraag -length: - title: Lengte - description: De totale lengte -pocketFlapRadius: - title: Ronding zak flap - description: De mate waarin de flap van de zak is afgerond -pocketRadius: - title: Ronding zak - description: De mate waarin de zak is afgerond -chestPocketHeight: - title: Hoogte borstzak - description: De hoogte van de borstzak -beltWidth: - title: Breedte riem - description: De breedte van de riem -buttonSpacingHorizontal: - title: Spreiding knopen horizontaal - description: De spreiding van de knopen horizontaal. Bepaalt ook de mate waarin de sluiting vooraan overlapt diff --git a/packages/i18n/src/locales/nl/options/cathrin.yml b/packages/i18n/src/locales/nl/options/cathrin.yml deleted file mode 100644 index a3dcc551b5e..00000000000 --- a/packages/i18n/src/locales/nl/options/cathrin.yml +++ /dev/null @@ -1,28 +0,0 @@ ---- -panels: - title: Aantal panelen - description: Het aantal panelen. Meer panelen werken beter voor een ronder figuur. - options: - '11': 11 panelen - '13': 13 panelen -waistReduction: - title: Reductie taille - description: Hoeveel smaller je wil dat het korset je taille maakt. -backOpening: - title: Opening rug - description: Opening aan de sluiting op de middenrug. -backRise: - title: Hoogte achter - description: Hoe ver de rugpanden stijgen van je armen tot je middenrug. -backDrop: - title: Verlaging rug - description: Hoeveel lager de rugpanden worden vanaf de heupen tot de middenrug. Een negatieve waarde maakt ze hoger. -frontRise: - title: Hoogte voorpand - description: 'De hoogte van de panelen middenvoor, tussen je borsten. Een negatieve waarde maakte ze lager.' -frontDrop: - title: Verlaging voorpand - description: Hoeveel de voorpanden verlagen van je heupen tot middenvoor. -hipRise: - title: Hoogte heup - description: Hoe hoog de zijpanelen vallen op je heupen. diff --git a/packages/i18n/src/locales/nl/options/charlie.yml b/packages/i18n/src/locales/nl/options/charlie.yml deleted file mode 100644 index c774a3788f5..00000000000 --- a/packages/i18n/src/locales/nl/options/charlie.yml +++ /dev/null @@ -1,52 +0,0 @@ ---- -backPocketHorizontalPlacement: - title: Plaatsing horizontale achterzak - description: Bepaalt de horizontale plaatsing van de achterzak -backPocketVerticalPlacement: - title: Verticale plaatsing achterzak - description: Bepaalt de verticale plaatsing van de achterzak -backPocketWidth: - title: Breedte achterzak - description: Bepaalt de breedte van de achterzak -backPocketDepth: - title: Diepte achterzak - description: Bepaalt de diepte van de achterzak -backPocketFacing: - title: Back pocket facing - description: Controls whether or not to include facing on the back pockets -frontPocketSlantDepth: - title: Diepte voorzak - description: Bepaalt de diepte van de voorste zakopening -frontPocketSlantWidth: - title: Schouderstuk voorzak breedte - description: Bepaalt de breedte van de voorste zakopening -frontPocketSlantRound: - title: Schuine zakdeel rond - description: Bepaalt hoe ver we van het einde van de schuine lijn beginnen met afronden in de outnaad -frontPocketSlantBend: - title: Schuine zakopening - description: Bepaalt de straal waarmee we het zakdeel op de rand afstemmen -frontPocketWidth: - title: Breedte zak - description: Bepaalt de breedte van het voorste zakdeel -frontPocketDepth: - title: Diepte zak - description: Bepaalt de diepte van het voorzakdeel -frontPocketFacing: - title: Beleg zak - description: Bepaalt hoever het beleg van de zak zich uitstrekt tot het zakdeel -beltLoops: - title: Rand lussen - description: Bepaalt de hoeveelheid riemlusjes -flyCurve: - title: Vlieg curve - description: Bepaalt de kromming van de gulpnaad -flyLength: - title: Vlieg lengte - description: Bepaalt de lengte van de gulp -flyWidth: - title: Fly width - description: Bepaalt hoe ver de J-naad van de rand van de gulp af staat -waistbandCurve: - title: Tailleband curve - description: Bepaalt hoe gebogen de tailleband is. diff --git a/packages/i18n/src/locales/nl/options/cornelius.yml b/packages/i18n/src/locales/nl/options/cornelius.yml deleted file mode 100644 index 192a6510280..00000000000 --- a/packages/i18n/src/locales/nl/options/cornelius.yml +++ /dev/null @@ -1,26 +0,0 @@ ---- -fullness: - title: Volle - description: Bepaalt de volledigheid van de broeders -waistbandBelowWaist: - title: Onderste tailleband - description: Percentage om de tailleband onder de tailleband te bewegen -waistReduction: - title: Reductie taille - description: Percentage om de tailleband te verminderen -cuffWidth: - title: Cuff width - description: Breedte van de manchet -cuffStyle: - title: Stijl manchet - description: Stijl van de manchet -bandBelowKnee: - title: Manchet onder knie - description: Bepaalt de afstand tussen de manchet en de knie -kneeToBelow: - title: Lengte manchet - description: Bepaalt de dikte van de manchet in vergelijking met de knie -ventLength: - title: Vent lengte - description: Bepaalt de lengte van de vent tussen de knie en de manchet - diff --git a/packages/i18n/src/locales/nl/options/diana.yml b/packages/i18n/src/locales/nl/options/diana.yml deleted file mode 100644 index c885384ab66..00000000000 --- a/packages/i18n/src/locales/nl/options/diana.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- -shoulderSeamLength: - title: Lengte schoudernaad - description: Bepaalt de lengte van de schoudernaad -drapeAngle: - title: Drape angle - description: Bepaalt het aantal drape - diff --git a/packages/i18n/src/locales/nl/options/florence.yml b/packages/i18n/src/locales/nl/options/florence.yml deleted file mode 100644 index 300a67320b5..00000000000 --- a/packages/i18n/src/locales/nl/options/florence.yml +++ /dev/null @@ -1,10 +0,0 @@ ---- -height: - title: Hoogte - description: Bepaalt de hoogte van het mondmasker -length: - title: Lengte - description: Bepaalt de lengte van het mondmasker -curve: - title: Boog - description: Bepaalt de curve van de bovenrand van het mondmasker diff --git a/packages/i18n/src/locales/nl/options/florent.yml b/packages/i18n/src/locales/nl/options/florent.yml deleted file mode 100644 index 85dafae9a15..00000000000 --- a/packages/i18n/src/locales/nl/options/florent.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -headEase: - title: Overwijdte hoofd - description: De hoeveelheid overwijdte rond je hoofd diff --git a/packages/i18n/src/locales/nl/options/hi.yml b/packages/i18n/src/locales/nl/options/hi.yml deleted file mode 100644 index 180248027c3..00000000000 --- a/packages/i18n/src/locales/nl/options/hi.yml +++ /dev/null @@ -1,12 +0,0 @@ -hungry: - title: Hungry - description: Changes the mouth shape to convey Hi is hungry -nosePointiness: - title: Nose pointiness - description: Controls how pointy Hi's nose is -aggressive: - title: Aggressive - description: Give Hi pointy teeth, or not -size: - title: Maat - description: Sharks come in all sizes, and so does Hi diff --git a/packages/i18n/src/locales/nl/options/holmes.yml b/packages/i18n/src/locales/nl/options/holmes.yml deleted file mode 100644 index d682a824ea9..00000000000 --- a/packages/i18n/src/locales/nl/options/holmes.yml +++ /dev/null @@ -1,28 +0,0 @@ ---- -headEase: - title: Overwijdte hoofd - description: De hoeveelheid overwijdte rond je hoofd. -lengthRatio: - title: Lengteratio - description: Controls the length of the crown and ear flaps -gores: - title: Aantal panden - description: The number of gores used to construct the crown -visorAngle: - title: Visor hoek - description: The arc angle used to draft the inner curve of the visor -visorWidth: - title: Visor breedte - description: Bepaalt de breedte van de visor -earLength: - title: Ear flap length - description: Controls the length of the ear flaps independently from the crown pieces -earWidth: - title: Ear flap width - description: Controls the width of the ear flaps -buttonhole: - title: Buttonhole guide - description: Adds a buttonhole to the ear flap to help you draft the buttonhole ear flap variant -visorLength: - title: Visor lengte - description: Bepaalt de lengte van de visor diff --git a/packages/i18n/src/locales/nl/options/hortensia.yml b/packages/i18n/src/locales/nl/options/hortensia.yml deleted file mode 100644 index 96d6807d949..00000000000 --- a/packages/i18n/src/locales/nl/options/hortensia.yml +++ /dev/null @@ -1,13 +0,0 @@ ---- -size: - title: Maat - description: Bepaalt de totale grootte van de handtas -zipperSize: - title: Rits grootte - description: Welke afmeting van de rits te gebruiken -strapLength: - title: Rep lengte - description: Bepaalt de lengte van de band -handleWidth: - title: Afhandeling breedte - description: Bepaalt de breedte van het handvat diff --git a/packages/i18n/src/locales/nl/options/huey.yml b/packages/i18n/src/locales/nl/options/huey.yml deleted file mode 100644 index 36ee84ed531..00000000000 --- a/packages/i18n/src/locales/nl/options/huey.yml +++ /dev/null @@ -1,22 +0,0 @@ ---- -pocket: - title: Zak - description: Of een voorzak moet worden toegevoegd of niet -pocketHeight: - title: Zak hoogte - description: Bepaalt de hoogte van de zak -hoodHeight: - title: Capuchon hoogte - description: Bepaalt de hoogte van de capuchon -hoodCutback: - title: Capuchon inkorting - description: Bepaalt hoever de capuchon opening is ingekort -hoodClosure: - title: Capuchon sluiting - description: Bepaalt hoeveel van de capuchon deel uitmaakt van de sluiting vooraan -hoodDepth: - title: Capuchon diepte - description: Bepaalt de diepte van de capuchon -hoodAngle: - title: Capuchon hoek - description: Bepaalt de hoek waaronder de capuchon is geplaatst diff --git a/packages/i18n/src/locales/nl/options/hugo.yml b/packages/i18n/src/locales/nl/options/hugo.yml deleted file mode 100644 index 0395518a06e..00000000000 --- a/packages/i18n/src/locales/nl/options/hugo.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -hipsEase: - title: Overwijdte heup - description: De hoeveelheid overwijdte aan je heupen. diff --git a/packages/i18n/src/locales/nl/options/index.js b/packages/i18n/src/locales/nl/options/index.js deleted file mode 100644 index 38731b05a6f..00000000000 --- a/packages/i18n/src/locales/nl/options/index.js +++ /dev/null @@ -1,127 +0,0 @@ -import florence from './florence.yml' -import brian from './brian.yml' -import bella from './bella.yml' -import breanna from './breanna.yml' -import diana from './diana.yml' -import aaron from './aaron.yml' -import simon from './simon.yml' -import simone from './simone.yml' -import sven from './sven.yml' -import wahid from './wahid.yml' -import bent from './bent.yml' -import bruce from './bruce.yml' -import cathrin from './cathrin.yml' -import holmes from './holmes.yml' -import huey from './huey.yml' -import hugo from './hugo.yml' -import tamiko from './tamiko.yml' -import teagan from './teagan.yml' -import trayvon from './trayvon.yml' -import jaeger from './jaeger.yml' -import carlton from './carlton.yml' -import carlita from './carlita.yml' -import benjamin from './benjamin.yml' -import florent from './florent.yml' -import theo from './theo.yml' -import sandy from './sandy.yml' -import shin from './shin.yml' -import penelope from './penelope.yml' -import waralee from './waralee.yml' -import titan from './titan.yml' -import paco from './paco.yml' -import albert from './albert.yml' -import hortensia from './hortensia.yml' -import cornelius from './cornelius.yml' -import charlie from './charlie.yml' -import ursula from './ursula.yml' -import lunetius from './lunetius.yml' -import tiberius from './tiberius.yml' -import walburga from './walburga.yml' -import bee from './bee.yml' -import hi from 'hi.yml' -import unice from 'unice.yml' -import lucy from 'lucy.yml' -import bob from 'bob.yml' -import noble from 'noble.yml' -import octoplushy from 'octoplushy.yml' -import { options as optionList } from '@freesewing/pattern-info' -import shared from '../../../shared-options.yml' - -let patterns = { - florence, - bella, - brian, - breanna, - diana, - aaron, - simon, - simone, - sven, - wahid, - bent, - bruce, - cathrin, - huey, - hugo, - tamiko, - trayvon, - jaeger, - carlton, - carlita, - benjamin, - florent, - theo, - sandy, - shin, - penelope, - waralee, - holmes, - titan, - paco, - teagan, - albert, - hortensia, - cornelius, - charlie, - ursula, - yuri: false, - lunetius, - tiberius, - walburga, - bee, - hi, - unice, - lucy, - bob, - noble, - octoplushy, -} - -let options = {} -for (let pattern in patterns) { - options[pattern] = {} - if (typeof optionList[pattern] === 'undefined') - throw new Error('pattern ' + pattern + ' has no option list') - for (let option of optionList[pattern]) { - let value = patterns[pattern][option] - if (typeof value === 'object') options[pattern][option] = value - else { - if (typeof value === 'undefined') { - if (shared[pattern]) { - if (shared[pattern].dflt && typeof patterns[shared[pattern].dflt][option] === 'object') { - options[pattern][option] = patterns[shared[pattern].dflt][option] - } else if ( - typeof shared[pattern].other !== 'undefined' && - typeof shared[pattern].other[option] === 'string' - ) { - options[pattern][option] = patterns[shared[pattern].other[option]][option] - } else { - throw new Error(`No option translation found for ${option} in ${pattern}`) - } - } - } - } - } -} - -export default options diff --git a/packages/i18n/src/locales/nl/options/jaeger.yml b/packages/i18n/src/locales/nl/options/jaeger.yml deleted file mode 100644 index c80505eb534..00000000000 --- a/packages/i18n/src/locales/nl/options/jaeger.yml +++ /dev/null @@ -1,112 +0,0 @@ ---- -centerBackDart: - title: Middenrug neep - description: Neep midden in het midden van je nek om een afgeronde rug op te vangen -sleeveVentLength: - title: Lengte mouwvent - description: De lengte van de mouwvent -sleeveVentWidth: - title: Breedte mouwvent - description: De breedte van de mouwvent -chestShaping: - title: Borstvorming - description: Hoeveelheid vormgeving voor de borstcurve -frontDartPlacement: - title: Plaatsing neep vooraan - description: Locatie van de nepen vooraan -frontOverlap: - title: Overlap voorzijde - description: De mate waaarin de stof verder reikt dat de sluitingsknopen -sideFrontPlacement: - title: Voor/Zijkant plaatsing - description: De grens tussen het voor en zij paneel -chestPocketDepth: - title: Borstzakdiepte - description: De diepte van de borstzak -chestPocketWidth: - title: Borstzakbreedte - description: De breedte van de borstzak -chestPocketPlacement: - title: Plaatsting borstzak - description: De locatie van de borszak -chestPocketAngle: - title: Hoek borstzak - description: De hoek van de borstzak -chestPocketWeltSize: - title: Afmeting paspel borstzak - description: Grootte van de paspel van de borstzak -frontPocketPlacement: - title: Plaatsing voorzak - description: Plaatsing van de zakken -frontPocketWidth: - title: Breedte voorzak - description: Breedte van de zakken -frontPocketDepth: - title: Diepte zak - description: Diepte van de zakken -frontPocketRadius: - title: Ronding zak - description: De mate waarin de zakken zijn afgerond -innerPocketPlacement: - title: Plaatsing binnenzak - description: De locatie van de binnenzakken -innerPocketWidth: - title: Breedte binnenzak - description: De breedte van de binnenzakken -innerPocketDepth: - title: Diepte binnenzak - description: De diepte van de binnenzakken -innerPocketWeltHeight: - title: Paspel binnenzak - description: de maat van de paspel van de binnenzakken -pocketFoldover: - title: Zak overvouw - description: De mate waarin de hoofstof doorloopt binnenin de zakken -centerFrontHemDrop: - title: Verlaging zoom vooraan - description: De mate waarin de zoom vooraan verlaagd is -backVent: - title: Split achter - description: Het aantal vents achteraan -backVentLength: - title: Lengte split achter - description: De lengte van de vent(s) achteraan -buttonLength: - title: Lengte knopen - description: De lengte waarover de knopen zijn gespreid -frontCutawayAngle: - title: Hoek uitsnijding vooraan - description: De hoek waaronder de voorzijde wordt weggesneden naar de zoom toe -frontCutawayStart: - title: Start uitsnijding vooraan - description: De plaats waar de voorzijde begint te verlopen naar de zoom toe -frontCutawayEnd: - title: Einde uitsnijding vooraan - description: Door dit te verhogen blijft de verloping vooraan bij het midden -collarSpread: - title: Spreiding kraag - description: De kraagspreiding bepaalt hoe de kraag over de schouders valt -lapelStart: - title: Start revers - description: Start van de revers -lapelReduction: - title: Reductie revers - description: Mate waarin het einde van de revers weer inwaards keren -collarHeight: - title: Hoogte kraag - description: De hoogte van de kraag -collarNotchDepth: - title: Diepte inkeping kraag - description: Diepte van de inkeping van de kraag -collarNotchAngle: - title: Hoek inkeping kraag - description: Hoek van de inkeping van de kraag -collarNotchReturn: - title: Kraag inkeping terugloop - description: De mate waarin de kraag terugkomt na de inkeping, in vergelijking met de revers -rollLineCollarHeight: - title: Rollijn kraaghoogte - description: Hoeveel de kraag de nek omhelst -hemRadius: - title: Straal zoom - description: De mate waarin de zoom is afgerond diff --git a/packages/i18n/src/locales/nl/options/lucy.yml b/packages/i18n/src/locales/nl/options/lucy.yml deleted file mode 100644 index 23eae471f8c..00000000000 --- a/packages/i18n/src/locales/nl/options/lucy.yml +++ /dev/null @@ -1,10 +0,0 @@ -width: - title: Breedte - description: Width of the pocket -length: - title: Lengte - description: Length (depth) of the pocket -edge: - title: Taper - description: Controls how much the pocket opening tapers inwards - diff --git a/packages/i18n/src/locales/nl/options/lunetius.yml b/packages/i18n/src/locales/nl/options/lunetius.yml deleted file mode 100644 index 5fa1e0b29a8..00000000000 --- a/packages/i18n/src/locales/nl/options/lunetius.yml +++ /dev/null @@ -1,16 +0,0 @@ ---- -lengthRatio: - title: Lengteratio - description: Controls the length of the garment -widthRatio: - title: Width ratio - description: Controls the width of the garment -length: - title: Lengte - description: Choose from the different length styles - options: - toKnee: On the knee - toBelowKnee: Below the knee - toHips: On the hips - toUpperLeg: On the thigh - toFloor: To the floor diff --git a/packages/i18n/src/locales/nl/options/noble.yml b/packages/i18n/src/locales/nl/options/noble.yml deleted file mode 100644 index 2d37410d262..00000000000 --- a/packages/i18n/src/locales/nl/options/noble.yml +++ /dev/null @@ -1,61 +0,0 @@ -dartPosition: - description: Controls whether to split at the shoulder or armhole - title: Dart position -chestEase: - description: Controls the amount of ease at the chest - title: Overwijdte borst -waistEase: - description: Controls the amount of ease at the waist - title: Overwijdte taille -bustSpanEase: - description: Controls the amount of ease along the bust span - title: Overwijdte bustenwijdte -backDartHeight: - description: Hoogte neep rug - title: Bepaalt de hoogte van de achterste neep -waistDartLength: - description: Bepaalt de lengte van de neep van de taille - title: Lengte neep taille -shoulderDartPosition: - description: Controls the position of the shoulder dart - title: Shoulder dart position -upperDartLength: - description: Controls the length of the upper dart - title: Upper dart length -armholeDartPosition: - description: Controls the position of the armhole dart - title: Armhole dart position -armholeDepth: - description: Bepaalt de diepte van het armsgat - title: Diepte armsgat -backArmholeSlant: - description: Controls the slant of the armhole at the back - title: Schuin armsgat achter -backArmholeCurvature: - description: Controls how deep the armhole is scooped out at the back - title: Kromming armsgat achter -frontArmholeCurvature: - title: Front armhole curvature - description: Controls how deep the armhole is scooped out at the front bottom -frontArmholePitchDepth: - description: Controls how deep the armhole cuts into the front - title: Diepte armsgat vooraan -backArmholePitchDepth: - description: Controls how deep the armhole cuts into the back - title: Diepte armsgat achteraan -backNeckCutout: - description: Controls how deep the neck is cutout in the back - title: Hals uitsnijding achteraan -backHemSlope: - description: Constrols the slope of the back hem - title: Lope zoom achter -frontShoulderWidth: - description: Controls how much width is added to the shoulder in the front - title: Schouderbreedte vooraan -highBustWidth: - description: Controls the width of the high bust - title: Hoge buste-breedte -shoulderToShoulderEase: - description: Controls the amount of ease along the shoulder to shoulder measurement - title: Shoulder to shoulder ease - diff --git a/packages/i18n/src/locales/nl/options/octoplushy.yml b/packages/i18n/src/locales/nl/options/octoplushy.yml deleted file mode 100644 index 2bda2060844..00000000000 --- a/packages/i18n/src/locales/nl/options/octoplushy.yml +++ /dev/null @@ -1,28 +0,0 @@ -size: - title: Maat - description: Controls the overall size -type: - title: Soort - description: Allows you to choose one of the variants of this design -armWidth: - title: Arm width - description: Controls the width of the arms -armLength: - title: Arm length - description: Controls the length of the arms -neckWidth: - title: Neck width - description: Determines the width at the neck -armTaper: - title: Arm tapering - description: Controls the amount by which the arms taper -bottomTopArmRatio: - title: Bottom/Top arm ratio - description: "FIXME: No idea what this does" -bottomArmReduction: - title: Bottom arm reduction - description: "FIXME: No idea what this does" -bottomArmReductionPlushy: - title: Bottom arm reduction (plushy) - description: "FIXME: No idea what this does" - diff --git a/packages/i18n/src/locales/nl/options/paco.yml b/packages/i18n/src/locales/nl/options/paco.yml deleted file mode 100644 index b874bfc3df9..00000000000 --- a/packages/i18n/src/locales/nl/options/paco.yml +++ /dev/null @@ -1,16 +0,0 @@ ---- -heelEase: - title: Overwijdte hiel - description: De hoeveelheid overwijdte aan de hiel (wanneer je je been door de broekspijp steekt) -frontPockets: - title: Voorzakken - description: Of je al dan niet zakken in de zijnaad wil -backPockets: - title: Achterzakken - description: Of je al dan niet paspelzakken op de achterkant wil -elasticatedHem: - title: Elastische zoom - description: Of je wel of niet elastiek aan de zoom wil -ankleElastic: - title: Breedte enkel/zoom elastiek - description: Breedte van de (optionele) elastiek aan de enkel/zoom diff --git a/packages/i18n/src/locales/nl/options/penelope.yml b/packages/i18n/src/locales/nl/options/penelope.yml deleted file mode 100644 index 85a530cf8b7..00000000000 --- a/packages/i18n/src/locales/nl/options/penelope.yml +++ /dev/null @@ -1,46 +0,0 @@ ---- -backDartDepthFactor: - title: Factor lengte neep rug - description: Hoe ver de neep achteraan naar beneden komt vanaf de tailleband. Dit is een factor van de Natuurlijke Taille Tot Zitvlak-maat. -backVent: - title: Vent achteraan - description: Voeg een split toe aan de achterkant van de rok. -backVentLength: - title: Lengte vent achteraan - description: Lengte van het loopsplit als een percentage van de lengte van de rok. -dartToSideSeamFactor: - title: Factor neep tot zijnaad - description: Hoeveel van de reductie van heupen naar taille door de nepen ingenomen wordt, tegenover de zijnaad, uitgedrukt in een percentage. -frontDartDepthFactor: - title: Factor lengte neep vooraan - description: Hoe ver de neep vooraan naar beneden komt vanaf de tailleband. Dit is een factor van de Natuurlijke Taille Tot Zitvlak-maat. -hem: - title: Afmeting van de zoom - description: De afmeting van de zoom. Een maat in absolute waarden. -hemBonus: - title: Bonus zoom - description: Deze optie maakt de omtrek van de rok aan de zoom kleiner. Percentage van de Omtrek Zitvlak-maat. -lengthBonus: - title: Lengtebonus - description: Dit bepaalt de lengte van de rok. Een percentage van de Taille tot Knie-maat. -nrOfDarts: - title: Aantal nepen - description: Het aantal nepen in het patroon. Het maximum is 2. Deze optie kan aangepast worden door het patroon als de berekeningen te kleine nepen als resultaat hebben. -seatEase: - title: Overwijdte zitvlak - description: Hoeveelheid overwijdte aan het zitvlak. -waistBand: - title: Tailleband - description: Voeg een tailleband toe aan het patroon. -waistBandWidth: - title: Breedte tailleband - description: De breedte van de tailleband. -waistEase: - title: Overwijdte taille - description: Hoeveelheid overwijdte aan de taille. -zipperLocation: - title: Locatie rits - description: De locatie van de rits. - options: - backSeam: In de rugnaad - sideSeam: In de zijnaad diff --git a/packages/i18n/src/locales/nl/options/sandy.yml b/packages/i18n/src/locales/nl/options/sandy.yml deleted file mode 100644 index 8dd838b601e..00000000000 --- a/packages/i18n/src/locales/nl/options/sandy.yml +++ /dev/null @@ -1,26 +0,0 @@ ---- -waistbandWidth: - title: Breedte tailleband - description: De breedte van de tailleband. -waistbandPosition: - title: Positie tailleband - description: Bepaalt de positie van de tailleband. -waistbandShape: - title: Vorm tailleband - description: Wil je een rechte of gebogen tailleband? -circleRatio: - title: Cirkel ratio - description: Hoeveel procent van een cirkel wil je dat de rok is? -waistbandOverlap: - title: Overlap Tailleband - description: Hoeveel de tailleband overlapt. -gathering: - title: Fronsen - description: Met hoeveel procent de bovenrand van de rok langer is dan de onderrand van de tailleband. -seamlessFullCircle: - title: Naadloze volledige cirkel - description: Maakt een naadloze volle cirkelrok mogelijk. -hemWidth: - title: Breedte zoom - description: Breedte van de zoom - diff --git a/packages/i18n/src/locales/nl/options/shin.yml b/packages/i18n/src/locales/nl/options/shin.yml deleted file mode 100644 index c0d984ac996..00000000000 --- a/packages/i18n/src/locales/nl/options/shin.yml +++ /dev/null @@ -1,7 +0,0 @@ ---- -legReduction: - title: Been reductie - description: Maakt de beenopening kleiner zodat ze niet openstaat -elasticWidth: - title: Breedte elastiek - description: Breedte van de elastiek aan de taille diff --git a/packages/i18n/src/locales/nl/options/simon.yml b/packages/i18n/src/locales/nl/options/simon.yml deleted file mode 100644 index 33d396a6fc4..00000000000 --- a/packages/i18n/src/locales/nl/options/simon.yml +++ /dev/null @@ -1,136 +0,0 @@ ---- -backDarts: - title: Nepen rug - description: Of je nepen wil toevoegen aan de rug of niet - options: - auto: Automatisch - always: Altijd - never: Nooit -backDartShaping: - title: Vorm nepen rug - description: Hoeveel invloed de nepen in de rug hebben op de pasvorm -barrelCuffNarrowButton: - title: Extra knoop manchet - description: Of je al dan niet een knoop wil om de manchetten smaller te maken. Deze optie is enkel relevant bij klassieke manchetten (zonder manchetknopen). -boxPleat: - title: Stolpplooi - description: Of je wel of niet een stolpplooi in de rug wil -boxPleatWidth: - title: Breedte stolpplooi - description: De totale breedte van de stolpplooi -boxPleatFold: - title: Vouw stolpplooi - description: Hoe ver de stolpplooi naar binnen vouwt -buttonPlacketStyle: - title: Stijl knopenpat - description: De stijl van het knopenpat. - options: - classic: Klassieke stijl - seamless: Franse stijl (naadloos) -buttonPlacketWidth: - title: Breedte knopenpat - description: De breedte van het knopenpat. -buttonFreeLength: - title: Lengte knooploos stuk - description: Hoe lang het stuk zonder knopen onderaan de sluiting moet zijn. -buttonholePlacketFoldWidth: - title: Breedte vouw knoopsgatenpat - description: De breedte van de vouw in het knoopsgatenpat. -buttonholePlacketStyle: - title: Stijl knoopsgatenpat - description: De stijl van het knoopsgatenpat. - options: - classic: Klassieke stijl - seamless: Franse stijl (naadloos) -buttonholePlacketWidth: - title: Breedte knoopsgatenpat - description: De breedte van het knoopsgatenpat. -buttons: - title: Aantal knopen - description: Het aantal knopen op de sluiting vooraan. -collarAngle: - title: Hoek kraag - description: De hoek van de punten van de kraag. -collarBend: - title: Kromming kraag - description: De kromming van de kraag. -collarFlare: - title: Spreiding kraag - description: Hoe ver de punten van de kraag spreiden. -collarGap: - title: Afstand kraag - description: De open ruimte tussen de uiteindes van de kraag. -collarRoll: - title: Omval kraag - description: Hoeveel groter de bovenkraag is dan de onderkraag. -collarStandBend: - title: Kromming staander - description: De kromming van de staander in het midden, achteraan de nek. -collarStandCurve: - title: Curve staander - description: De curve van de uiteindes van de staander. -collarStandWidth: - title: Breedte staander - description: Breedte van de staander. -cuffButtonRows: - title: Rijen knopen op manchet - description: Of je een enkele of dubbele rij knopen op de manchet wil. Deze optie is enkel relevant voor klassieke manchetten. - options: - '1': Enkele rij knopen - '2': Dubbele rij knopen -cuffDrape: - title: Verschil mouw/manchet - description: Hoeveel wijder de mouw is dan de manchet op het punt waar ze wordt aangezet. -cuffLength: - title: Lengte manchet - description: De lengte van de manchetten. -cuffStyle: - title: Stijl Manchet - description: De stijl van de manchetten. - options: - roundedBarrelCuff: Afgeronde klassieke manchet - angledBarrelCuff: Afgesneden klassieke manchet - straightBarrelCuff: Rechte klassieke manchet - roundedFrenchCuff: Afgeronde Franse manchet - angledFrenchCuff: Afgesneden Franse manchet - straightFrenchCuff: Rechte Franse manchet -extraTopButton: - title: Extra knoop bovenaan - description: Of je al dan niet een extra knoop bovenaan de sluiting wil. -ffsa: - title: Glanzende naadwaarde - description: De hoeveelheid naadwaarde aan geflanste naden in verhouding tot de normale naadwaarde -hemCurve: - title: Curve zoom - description: De hoogte van de curve op een afgeronde zoom. -hemStyle: - title: Vorm zoom - description: De vorm van de zoom van het hemd. - options: - straight: Rechte zoom - baseball: Ronde zoom - slashed: Zoom met zijsplit -roundBack: - title: Rond terug af - description: Om een round(er) achteraan te passen voegt dit de lengte aan het midden (aan de schouderpas) toe die richting de zijkanten kort. -seperateButtonholePlacket: - title: Apart knoopsgatenpat - description: Teken een apart knoopsgatenpat. -seperateButtonPlacket: - title: Apart knopenpat - description: Teken een apart knopenpat -sleevePlacketLength: - title: Lengte mouwsplit - description: De lengte van het mouwsplit. -sleevePlacketWidth: - title: Breedte mouwsplit - description: De breedte van het mouwsplit. -splitYoke: - title: Tweedelige schouderpas - description: Wil je een tweedelige schouderpas? -waistEase: - title: Overwijdte taille - description: De hoeveelheid extra ruimte aan je (natuurlijke) taille. -yokeHeight: - title: Hoogte schouderpas - description: Bepaalt de hoogte van de schouderpas diff --git a/packages/i18n/src/locales/nl/options/simone.yml b/packages/i18n/src/locales/nl/options/simone.yml deleted file mode 100644 index f346c3db8b5..00000000000 --- a/packages/i18n/src/locales/nl/options/simone.yml +++ /dev/null @@ -1,23 +0,0 @@ ---- -bustAlignedButtons: - title: Bust-aligned buttons - description: Optional button spacing strategies to ensure a button at the bustline - options: - even: Even spacing - split: Split spacing - disabled: Disabled -bustDartAngle: - title: Hoek busteneep - description: Bepaalt de hoek waarin de busteneep vanuit de zijnaad naar beneden wijst -bustDartLength: - title: Lengte busteneep - description: Bepaalt hoe dicht de punt van de busteneep bij het bustepunt komt -contour: - title: Contour - description: Bepaalt in hoeverre de extra ruimte voor borsten onder de buste verwijderd wordt -frontDarts: - title: Nepen voor - description: Of je vooraan nepen wil of niet -frontDartLength: - title: Lengte nepen voor - description: Bepaalt hoe dicht de punt van de voorste neep bij het bustepunt komt diff --git a/packages/i18n/src/locales/nl/options/sven.yml b/packages/i18n/src/locales/nl/options/sven.yml deleted file mode 100644 index abb9d71ffbd..00000000000 --- a/packages/i18n/src/locales/nl/options/sven.yml +++ /dev/null @@ -1,13 +0,0 @@ ---- -hipsEase: - title: Overwijdte heup - description: Controls the amount of ease at your hips (the bottom of the sweater) -ribbing: - title: Boordstof - description: Of we boordstof plaatsen aan de zoom en manchetten of niet. -ribbingHeight: - title: Hoogte boord - description: De hoogte van de boordstof aan zoom en manchetten. -ribbingStretch: - title: Stretch boordstof - description: De hoeveelheid stretch in de boordstof voor zoom en manchetten. diff --git a/packages/i18n/src/locales/nl/options/tamiko.yml b/packages/i18n/src/locales/nl/options/tamiko.yml deleted file mode 100644 index ce0a868805f..00000000000 --- a/packages/i18n/src/locales/nl/options/tamiko.yml +++ /dev/null @@ -1,10 +0,0 @@ ---- -flare: - title: Waaier - description: De mate waarin het kledingstuk van je borst naar beneden uitwaaierd -shoulderseamLength: - title: Lengte schoudernaad - description: De lengte van de schoudernaad, als een factor van je schouder tot schouder maat -shoulderSlope: - title: Schouderhelling - description: Bepaalt de hoek van de schoudernaden diff --git a/packages/i18n/src/locales/nl/options/teagan.yml b/packages/i18n/src/locales/nl/options/teagan.yml deleted file mode 100644 index 608d145eff3..00000000000 --- a/packages/i18n/src/locales/nl/options/teagan.yml +++ /dev/null @@ -1,19 +0,0 @@ ---- -draftForHighBust: - title: Teken voor hoge buste - description: Teken het patroon voor de hoge bustemaat (indien beschikbaar) in plaats van de volle borstomtrek. Dit heeft een aansluitender kledingstuk als resultaat voor mensen met borsten. -sleeveEase: - title: Overwijdte mouw - description: De hoeveelheid extra ruimte in je mouwen -sleeveLength: - title: Mouwlengte - description: Bepaalt de lengte van je mouwen -necklineBend: - title: Curve halslijn - description: Bepaalt de curve van de halsuitsnijding. -necklineDepth: - title: Diepte halsuitsnijding - description: Bepaalt hoe diep de halsopening is. -necklineWidth: - title: Breedte halsuitsnijding - description: Bepaalt hoe breed de halsopening is. diff --git a/packages/i18n/src/locales/nl/options/theo.yml b/packages/i18n/src/locales/nl/options/theo.yml deleted file mode 100644 index fd27876d93d..00000000000 --- a/packages/i18n/src/locales/nl/options/theo.yml +++ /dev/null @@ -1,7 +0,0 @@ ---- -wedge: - title: Spie - description: Bepaalt de lengte van de kruisnaad -legWidth: - title: Breedte been - description: Bepaalt de breedte van de broekspijpen diff --git a/packages/i18n/src/locales/nl/options/tiberius.yml b/packages/i18n/src/locales/nl/options/tiberius.yml deleted file mode 100644 index 85658d64c84..00000000000 --- a/packages/i18n/src/locales/nl/options/tiberius.yml +++ /dev/null @@ -1,39 +0,0 @@ ---- -headRatio: - title: Head ratio - description: Controls the size of the head opening -armholeDrop: - title: Armsgat verlagen/verhogen - description: Bepaalt de diepte van het armsgat -lengthBonus: - title: Lengtebonus - description: Allows variation of the length of the garment -widthBonus: - title: Width bonus - description: Allows variation of the width of the garment -clavi: - title: Clavi - description: Whether or not to include guides for clavi -clavusLocation: - title: Clavus location - description: Controls the location of the clavi -clavusWidth: - title: Clavus width - description: Controls the width of the clavi -length: - title: Lengte - description: Controls the length of the garment - options: - toKnee: On the knee - toMidLeg: On the thigh - toFloor: To the floor -width: - title: Breedte - description: Controls the width of the garment - options: - toElbow: To the elbow - toShoulder: To the shoulder - toMidArm: To the upper arm -forceWidth: - title: Force width - description: Apply width settings regardless of constraints diff --git a/packages/i18n/src/locales/nl/options/titan.yml b/packages/i18n/src/locales/nl/options/titan.yml deleted file mode 100644 index f331f49aec1..00000000000 --- a/packages/i18n/src/locales/nl/options/titan.yml +++ /dev/null @@ -1,46 +0,0 @@ ---- -kneeEase: - title: Overwijdte knie - description: Bepaalt de hoeveelheid overwijdte aan de knie -waistHeight: - title: Taillehoogte - description: Bepaalt de hoogte van de taille, 100% = natuurlijke taille, 0% = heuphoogte -lengthBonus: - title: Bonus lengte - description: Bepaalt de lengte van de broek -crotchDrop: - title: Diepte kruis - description: Verlaagt het kruis voor een lossere pasvorm -fitKnee: - title: Pas de knie aan - description: Past de broekspijpen aan gebaseerd op de omtrek van de knie in plaats van de omtrek van het zitvlak -legBalance: - title: Balans been - description: Bepaalt de verhouding tussen de voor-en achterkant van de broekspijp -crossSeamCurveStart: - title: Begin van de curve van de binnenbeennaad - description: Bepaalt hoe ver in de binnenbeennaad de curve start -crossSeamCurveBend: - title: Buiging binnenbeennaad - description: Bepaalt de curve van de binnenbeennaad -crossSeamCurveAngle: - title: Grensoverschrijdende hoek - description: Bepaalt de hoek van de kruisnaad -crotchSeamCurveStart: - title: Begin van de curve van de kruisnaad - description: Bepaalt hoe ver in de kruisnaad de curve start -crotchSeamCurveBend: - title: Buiging kruisnaad - description: Bepaalt de curve van de kruisnaad -crotchSeamCurveAngle: - title: Kruisnaad hoek - description: Bepaalt de hoek van de kruisnaad -waistBalance: - title: Balans taille - description: Bepaalt de horizontale positie van de taille in relatie tot het zitvlak -waistbandWidth: - title: Breedte tailleband - description: De breedte van de tailleband -grainlinePosition: - title: Positie draadrichting - description: Bepaalt de horizontale positie van het been in relatie tot het zitvlak diff --git a/packages/i18n/src/locales/nl/options/trayvon.yml b/packages/i18n/src/locales/nl/options/trayvon.yml deleted file mode 100644 index de050dc4069..00000000000 --- a/packages/i18n/src/locales/nl/options/trayvon.yml +++ /dev/null @@ -1,7 +0,0 @@ ---- -tipWidth: - title: Breedte punten - description: De breedte van je stropdas aan het uiteinde -knotWidth: - title: Breedte knoop - description: De breedte van je stropdas aan de knoop diff --git a/packages/i18n/src/locales/nl/options/unice.yml b/packages/i18n/src/locales/nl/options/unice.yml deleted file mode 100644 index 2fff4675924..00000000000 --- a/packages/i18n/src/locales/nl/options/unice.yml +++ /dev/null @@ -1,13 +0,0 @@ -fabricStretchX: - title: Fabric stretch (horizontal) - description: Pas dit aan voor meer of minder elastische stoffen -fabricStretchY: - title: Fabric stretch (vertical) - description: Pas dit aan voor meer of minder elastische stoffen -adjustStretch: - title: Adjust stretch - description: This option you to put in the maximum stretch that the fabric will allow in both horizontal and vertical directions; When disabled, the stretch values are used as-is -useCrossSeam: - title: Use crossseam - description: When enabled, the total height of the pattern pieces combined will match the cross seam length minus the front and back rise. When disabled, the total height depends on the gusset length option. - diff --git a/packages/i18n/src/locales/nl/options/ursula.yml b/packages/i18n/src/locales/nl/options/ursula.yml deleted file mode 100644 index 02a34e26f85..00000000000 --- a/packages/i18n/src/locales/nl/options/ursula.yml +++ /dev/null @@ -1,34 +0,0 @@ ---- -fabricStretch: - title: Stof stretch - description: Pas dit aan voor meer of minder elastische stoffen -gussetWidth: - title: Gusset width - description: Bepaalt de breedte van de gusset -gussetLength: - title: Gusset lengte - description: Bepaalt de lengte van de gusset -elasticStretch: - title: Elastische stretch - description: Pas dit aan voor meer of minder elastische elastiek -rise: - title: Hoogte - description: Bepaalt de hoogte van de taille -legOpening: - title: Been opening - description: Bepaalt hoe hoog de broekspijp wordt uitgeknipt -frontDip: - title: Voorste taille dip - description: Bepaalt hoeveel de taillecurven vooraan tonen (min of meer skin) -backDip: - title: Achterste dip taille - description: Bepaalt hoeveel de omgekeerde golfcurves (min of meer skin onthullen) -taperToGusset: - title: Blootstelling voorzijde - description: Bepaalt de hoeveelheid blootgestelde huid aan de voorkant -backExposure: - title: Blootstelling rug - description: Bepaalt de hoeveelheid gelekte huid aan de achterkant - - - diff --git a/packages/i18n/src/locales/nl/options/wahid.yml b/packages/i18n/src/locales/nl/options/wahid.yml deleted file mode 100644 index e2baf90f0c5..00000000000 --- a/packages/i18n/src/locales/nl/options/wahid.yml +++ /dev/null @@ -1,43 +0,0 @@ ---- -backScyeDart: - title: Achterste armsgat neep - description: De hoeveelheid die verwijderd wordt met een neep aan de achterkant van het armsgat. -frontScyeDart: - title: Neep armsgat voor - description: De hoeveelheid die verwijderd wordt met een neep aan de voorkant van het armsgat. -pocketLocation: - title: Locatie van de zak - description: Bepaalt de locatie van de zak -pocketWidth: - title: Breedte van de zak - description: Bepaalt de breedte van de zak -weltHeight: - title: Hoogte paspel zak - description: De hoogte van de paspel van de zak -necklineDrop: - title: Hoogte halslijn - description: Bepaalt hoe laag de halslijn vooraan wordt -frontStyle: - title: Stijl halsopening - description: Stijl van de halsopening -hemStyle: - title: Vorm zoom - description: De vorm van de zoom vooraan -hemRadius: - title: Ronding zoom - description: De straal van de ronding van de zoom -backInset: - title: Insnede rug - description: Hoeveel het armsgat achteraan naar binnen gaat -frontInset: - title: Insnede voorpand - description: Hoeveel het armsgat vooraan naar binnen gaat -shoulderInset: - title: Insnede schouder - description: Hoeveel de schoudernaad aan de schouder naar binnen gaat -neckInset: - title: Insnede nek - description: Hoeveel de schoudernaad aan de hals naar binnen gaat -pocketAngle: - title: Hoek zak - description: De hoek van de zakopening diff --git a/packages/i18n/src/locales/nl/options/walburga.yml b/packages/i18n/src/locales/nl/options/walburga.yml deleted file mode 100644 index 40e2c03f975..00000000000 --- a/packages/i18n/src/locales/nl/options/walburga.yml +++ /dev/null @@ -1,23 +0,0 @@ ---- -headRatio: - title: Head ratio - description: Controls the size of the head opening -lengthBonus: - title: Lengtebonus - description: Allows variation of the length of the garment -widthBonus: - title: Width bonus - description: Allows variation of the width of the garment -length: - title: Lengte - description: Controls the length of the garment - options: - toKnee: On the knee - toMidLeg: On the thigh - toFloor: To the floor -neckoRatio: - title: Neck opening shape - description: controls the shape of the neck opening -neckline: - title: Neckline - description: Controls whether or not to draft a neck opening diff --git a/packages/i18n/src/locales/nl/options/waralee.yml b/packages/i18n/src/locales/nl/options/waralee.yml deleted file mode 100644 index cb40c1fef42..00000000000 --- a/packages/i18n/src/locales/nl/options/waralee.yml +++ /dev/null @@ -1,44 +0,0 @@ ---- -backPocket: - title: Achterzak - description: Of een achterzak moet worden toegevoegd of niet -frontPocket: - title: Voorzak - description: Of een voorzak moet worden toegevoegd of niet -hemWidth: - title: Afmeting zoom - description: De afmeting van de zoom onderaan de broek -waistbandWidth: - title: Tailleband - description: Grootte van de tailleband -waistRaise: - title: Hoogte Taille - description: Hoeveel hoger de taille zit dan de hoogte zitvlak-maat. Dit beïnvloedt de diepte van het kruis. -crotchBack: - title: Kruis achter - description: Het percentage van de omtrek zitvlak dat je het kruis achteraan nodig heeft. Dit creëert meer of minder ruimte tussen de zijnaad en de middenachternaad. -crotchFront: - title: Kruis Voor - description: Het percentage van de omtrek zitvlak dat je het kruis vooraan nodig heeft. Dit creëert meer of minder ruimte tussen de zijnaad en de middenvoornaad. -crotchFactorBackHor: - title: Kruis Achter Factor Horizontaal - description: Wordt gebruikt om de curve van het kruis achteraan horizontaal te verplaatsen -crotchFactorBackVer: - title: Kruis Achter Factor Verticaal - description: Wordt gebruikt om de curve van het kruis achteraan verticaal te verplaatsen -crotchFactorFrontHor: - title: Kruis Voor Factor Horizontaal - description: Wordt gebruikt om de curve van het kruis vooraan horizontaal te verplaatsen -crotchFactorFrontVer: - title: Kruis Voor Factor Verticaal - description: Wordt gebruikt om de curve van het kruis vooraan verticaal te verplaatsen -waistOverlap: - title: Overlap Taille - description: Dit bepaalt in hoeverre dat je de beenflappen wil laten overlappen aan de taille. Als je 0 instelt komen ze elkaar tegen ze aan de zijnaad, een instelling van 100 zorgt dat ze aan middenvoor/achter tegen elkaar komen. -legShortening: - title: Been Inkorten - description: Dit bepaalt hoe lang de broek zal zijn. Het is een factor van de binnenbeennaad. Hoe groter de waarde, hoe meer van de lengte verwijderd zal worden. -backRaise: - title: Hoogte Rug - description: Deze instelling verhoogt de taille in de rug. Onze taille zit niet horizontaal, maar ligt wat hoger in de rug. Deze instelling staat je toe de rug te verhogen als dit nodig is voor een goede pasvorm. - diff --git a/packages/i18n/src/locales/nl/parts.yaml b/packages/i18n/src/locales/nl/parts.yaml deleted file mode 100644 index c79d9820a9f..00000000000 --- a/packages/i18n/src/locales/nl/parts.yaml +++ /dev/null @@ -1,58 +0,0 @@ ---- -back: Achterzijde -backBase: Basis rug -backPocketWelt: Back pocket welt -base: Basis -bentBack: Achterzijde Bent -bentBase: Basis Bent -bentFront: Voorzijde Bent -bentSleeve: Mouw Bent -bentTopSleeve: Bovenmouw Bent -bentUnderSleeve: Ondermouw Bent -buttonholePlacket: Knoopsgatenpat -buttonPlacket: Knopenpat -collar: Kraag -collarStand: Kraagstaander -cuff: Manchet -fabricTail: Stof staart -fabricTip: Stof tip -frontBase: Basis voorzijde -frontFacing: Beleg vooraan -front: Voorzijde -frontLeft: Voorzijde links -frontLining: Voering vooraan -frontRight: Voorzijde rechts -gusset: Gusset -hoodCenter: Midden kap -hood: Capuchon -hoodSide: Zijkant kap -inset: Inzet -interfacingTail: Interfacing staart -interfacingTip: Interfacing tip -liningTail: Voering staart -liningTip: Voering tip -loop: Lus -panel1: Deel 1 -panel2: Deel 2 -panel3: Deel 3 -panel4: Deel 4 -panel5: Deel 5 -panel6: Deel 6 -panels: Panelen -pocketBag: Binnenzak -pocketFacing: Zak beleg -pocketInterfacing: Tussenvoering zak -pocket: Zak -pocketWelt: Paspel zak -side: Zijkant -sleeveBase: Basis mouw -sleevecap: Mouwkop -sleevePlacketOverlap: Mouwsplit boven -sleevePlacketUnderlap: Mouwsplit onder -sleeve: Mouw -topSleeve: Bovenmouw -top: Top -underCollar: Onderkraag -underSleeve: Ondermouw -waistband: Tailleband -yoke: Schouderpas diff --git a/packages/i18n/src/locales/nl/plugin/index.js b/packages/i18n/src/locales/nl/plugin/index.js deleted file mode 100644 index 21533176bec..00000000000 --- a/packages/i18n/src/locales/nl/plugin/index.js +++ /dev/null @@ -1,33 +0,0 @@ -import brian from './patterns/brian.yaml' -import aaron from './patterns/aaron.yaml' -import bruce from './patterns/bruce.yaml' -import hugo from './patterns/hugo.yaml' -import simon from './patterns/simon.yaml' -import teagan from './patterns/teagan.yaml' -import cfp from './patterns/cfp.yaml' -import cutonfold from './plugins/cutonfold.yaml' -import grainline from './plugins/grainline.yaml' -import scalebox from './plugins/scalebox.yaml' -import title from './plugins/title.yaml' - -const files = { - brian, - aaron, - bruce, - hugo, - simon, - teagan, - cfp, - cutonfold, - grainline, - scalebox, - title, -} - -const messages = {} - -for (const file in files) { - for (const [key, val] of Object.entries(files[file])) messages[key] = val -} - -export default messages diff --git a/packages/i18n/src/locales/nl/plugin/patterns/aaron.yaml b/packages/i18n/src/locales/nl/plugin/patterns/aaron.yaml deleted file mode 100644 index 941f5cd5d18..00000000000 --- a/packages/i18n/src/locales/nl/plugin/patterns/aaron.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -cutOneStripToFinishTheNeckOpening: Knip een strip om de halsopening te voltooien -cutTwoStripsToFinishTheArmholes: Knip twee stroken om de armsgaten af te werken -length: Lengte -width: Breedte diff --git a/packages/i18n/src/locales/nl/plugin/patterns/brian.yaml b/packages/i18n/src/locales/nl/plugin/patterns/brian.yaml deleted file mode 100644 index 5b6f8084b20..00000000000 --- a/packages/i18n/src/locales/nl/plugin/patterns/brian.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -back: Rug -front: Voorzijde -sleeve: Mouw diff --git a/packages/i18n/src/locales/nl/plugin/patterns/bruce.yaml b/packages/i18n/src/locales/nl/plugin/patterns/bruce.yaml deleted file mode 100644 index 87cf023d9bb..00000000000 --- a/packages/i18n/src/locales/nl/plugin/patterns/bruce.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -inset: Inzet -side: Zijkant diff --git a/packages/i18n/src/locales/nl/plugin/patterns/cfp.yaml b/packages/i18n/src/locales/nl/plugin/patterns/cfp.yaml deleted file mode 100644 index 993dfca1b1c..00000000000 --- a/packages/i18n/src/locales/nl/plugin/patterns/cfp.yaml +++ /dev/null @@ -1,2 +0,0 @@ ---- -hello: Hallo diff --git a/packages/i18n/src/locales/nl/plugin/patterns/cornelius.yaml b/packages/i18n/src/locales/nl/plugin/patterns/cornelius.yaml deleted file mode 100644 index d4607f25735..00000000000 --- a/packages/i18n/src/locales/nl/plugin/patterns/cornelius.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -Vent: Vuur -PocketFacing: Zak beleg diff --git a/packages/i18n/src/locales/nl/plugin/patterns/hortensia.yaml b/packages/i18n/src/locales/nl/plugin/patterns/hortensia.yaml deleted file mode 100644 index fb22b1e4916..00000000000 --- a/packages/i18n/src/locales/nl/plugin/patterns/hortensia.yaml +++ /dev/null @@ -1,10 +0,0 @@ ---- -SidePanel: Zijkant paneel -FrontBackPanel: Voor- en achterpaneel -BottomPanel: Onderste paneel -ZipperPanel: Rits Paneel -Strap: Referentie -strapLength: Lengte van de hengsels -handleWidth: Breedte van de handvatten -zipperSize: Standaard ritsgrootte -SidePanelReinforcement: Zijkant Versterking Paneel diff --git a/packages/i18n/src/locales/nl/plugin/patterns/hugo.yaml b/packages/i18n/src/locales/nl/plugin/patterns/hugo.yaml deleted file mode 100644 index 1b78cb4e1d5..00000000000 --- a/packages/i18n/src/locales/nl/plugin/patterns/hugo.yaml +++ /dev/null @@ -1,7 +0,0 @@ ---- -cuff: Manchette -hoodCenter: Capuchon midden -hoodSide: Capuchon zijkant -pocketFacing: Zak doublure -pocket: Zak -waistband: Tailleband diff --git a/packages/i18n/src/locales/nl/plugin/patterns/simon.yaml b/packages/i18n/src/locales/nl/plugin/patterns/simon.yaml deleted file mode 100644 index 376b4d4499b..00000000000 --- a/packages/i18n/src/locales/nl/plugin/patterns/simon.yaml +++ /dev/null @@ -1,13 +0,0 @@ ---- -buttonholePlacket: Knoopsgatenpat -buttonPlacket: Knopenpad -collarAndUndercollar: Kraag en Onderkraag -collarStand: Kraagstaander -cutUndercollarSlightlySmaller: Knip de onderkraag een beetje kleiner -frontLeft: Voorzijde links -frontRight: Voorzijde rechts -sideOfTheCollarStand: Kant van de kraagstaander -sleevePlacketOverlap: Mouwsplit bovendeel -sleevePlacketUnderlap: Mouwsplit onder -yoke: Schouderpas -matchHere: Laat de stof langs deze lijn uitkomen diff --git a/packages/i18n/src/locales/nl/plugin/patterns/teagan.yaml b/packages/i18n/src/locales/nl/plugin/patterns/teagan.yaml deleted file mode 100644 index b84f54a4d20..00000000000 --- a/packages/i18n/src/locales/nl/plugin/patterns/teagan.yaml +++ /dev/null @@ -1,2 +0,0 @@ ---- -fullLengthFromHps: Afgewerkte lengte (vanaf HPS) diff --git a/packages/i18n/src/locales/nl/plugin/patterns/ursula.yaml b/packages/i18n/src/locales/nl/plugin/patterns/ursula.yaml deleted file mode 100644 index 3eb3a16e620..00000000000 --- a/packages/i18n/src/locales/nl/plugin/patterns/ursula.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -cutTwoPiecesOfElasticToFinishTheLegOpenings: Cut two pieces of elastic to finish the leg openings -cutOnePieceOfElasticToFinishTheWaistBand: Cut one piece of elastic to finish the waist band diff --git a/packages/i18n/src/locales/nl/plugin/plugins/cutlist.yaml b/packages/i18n/src/locales/nl/plugin/plugins/cutlist.yaml deleted file mode 100644 index b05c5fc47b9..00000000000 --- a/packages/i18n/src/locales/nl/plugin/plugins/cutlist.yaml +++ /dev/null @@ -1,16 +0,0 @@ -canvas: Haardoek -cut: Knip -cuttingLayout: Suggested Cutting Layout -fabric: Hoofd stof -fabricSize: "{length} of {width} wide material" -heavyCanvas: Heavy Canvas -interfacing: Tussenvoering -lining: Voering -lmhCanvas: Light to Medium Hair Canvas -mirrored: mirrored -onFoldLower: aan de stofvouw -onFoldAndBias: folded on the bias -onBias: on the bias -plastic: Plastic -ribbing: Boordstof -edgeOfFabric: Edge of Fabric diff --git a/packages/i18n/src/locales/nl/plugin/plugins/cutonfold.yaml b/packages/i18n/src/locales/nl/plugin/plugins/cutonfold.yaml deleted file mode 100644 index eabc08f9635..00000000000 --- a/packages/i18n/src/locales/nl/plugin/plugins/cutonfold.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -cutOnFoldAndGrainline: Knip op stofvouw / Draadrichting -cutOnFold: Knip op stofvouw diff --git a/packages/i18n/src/locales/nl/plugin/plugins/grainline.yaml b/packages/i18n/src/locales/nl/plugin/plugins/grainline.yaml deleted file mode 100644 index 334100a352b..00000000000 --- a/packages/i18n/src/locales/nl/plugin/plugins/grainline.yaml +++ /dev/null @@ -1,2 +0,0 @@ ---- -grainline: Draadrichting diff --git a/packages/i18n/src/locales/nl/plugin/plugins/scalebox.yaml b/packages/i18n/src/locales/nl/plugin/plugins/scalebox.yaml deleted file mode 100644 index 2d7379b8964..00000000000 --- a/packages/i18n/src/locales/nl/plugin/plugins/scalebox.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -theBlackOutsideOfThisBoxShouldMeasure: De buitenkant van dit kader meet -theWhiteInsideOfThisBoxShouldMeasure: De binnenkant van dit kader meet -supportFreesewingBecomeAPatron: Steun FreeSewing, wordt een Patron diff --git a/packages/i18n/src/locales/nl/plugin/plugins/title.yaml b/packages/i18n/src/locales/nl/plugin/plugins/title.yaml deleted file mode 100644 index 5835d6eab32..00000000000 --- a/packages/i18n/src/locales/nl/plugin/plugins/title.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -cut: Knip -onFold: Aan de stofvouw diff --git a/packages/i18n/src/locales/nl/settings.yml b/packages/i18n/src/locales/nl/settings.yml deleted file mode 100644 index 6358913661d..00000000000 --- a/packages/i18n/src/locales/nl/settings.yml +++ /dev/null @@ -1,44 +0,0 @@ ---- -advanced: - title: Expert modus - description: Bepaalt of de geavanceerde patroonopties wel of niet getoond worden -paperless: - title: Papierloos - description: Hiermee tekent u een patroon met alle afmetingen zodat u het op stof of een ander medium kunt overbrengen zonder dat u het hoeft af te drukken -sabool: - title: Include seam allowance - description: Controls whether or not to include seam allowance in your pattern -sa: - title: Seam allowance size - description: Bepaalt de hoeveelheid naadtoeslag die is inbegrepen in uw patroon -locale: - title: Taal - description: Bepaalt de taal die op uw patroon wordt gebruikt -only: - title: Inhoud - description: Hiermee kunt u precies bepalen welke patroononderdelen in uw patroon worden opgenomen -units: - title: Eenheden - description: Bepaalt de eenheden die op uw patroon worden gebruikt -margin: - title: Marge - description: Bepaalt de marge rond patroondelen -complete: - title: Detail - description: Bepaalt hoe gedetailleerd het patroon is; Ofwel een patroon met alle details, ofwel een eenvoudiger patroon met slechts de contouren van de verschillende patroondelen -layout: - title: Layout - description: Bepaalt hoe de afzonderlijke patroondelen op uw patroon worden geplaatst -debug: - title: Debug - description: Schakel debug in om extra informatie te krijgen over hoe je patroon tot stand kwam -scale: - title: Schaal - description: Bepaalt de totale lijnbreedte, lettergrootte en andere elementen die niet schalen met de metingen van het patroon -renderer: - title: Render engine - description: Controls how the pattern is rendered (drawn) on the screen -xray: - title: X-ray - description: Look under the hood with FreeSewing's X-ray mode - diff --git a/packages/i18n/src/locales/nl/susi.yaml b/packages/i18n/src/locales/nl/susi.yaml deleted file mode 100644 index ba093b4c160..00000000000 --- a/packages/i18n/src/locales/nl/susi.yaml +++ /dev/null @@ -1,16 +0,0 @@ -joinFreeSewing: Join FreeSewing -toReceiveSignupLink: To receive a signup link, enter your email address -emailAddress: Email address -pleaseProvideValidEmail: Please provide a valid email address -emailSignupLink: Email me a signup link -alreadyHaveAnAccount: Already have an account? -dontHaveAnAccount: Don't have an account yet? -signIn: Sign in -signInHere: Sign in here -signUpHere: Sign up here -emailUsernameId: Email address, username, or user ID -welcomeName: 'Welcome { name }' -password: Wachtwoord -processing: Processing -emailSent: Email sent -somethingWentWrong: Er ging iets mis diff --git a/packages/i18n/src/locales/nl/welcome.yaml b/packages/i18n/src/locales/nl/welcome.yaml deleted file mode 100644 index 8ac2022dc0f..00000000000 --- a/packages/i18n/src/locales/nl/welcome.yaml +++ /dev/null @@ -1,10 +0,0 @@ ---- -units: Selecteer de units die je wil gebruiken -username: Kies een gebruikersnaam -avatar: Voeg een profielfoto toe -bio: Vertel ons een beetje over jezelf -social: Laat ons weten waar we je kunnen volgen -newsletter: Geef ons je voorkeur met betrekking tot de nieuwsbrief -letUsSetupYourAccount: Laten we je account instellen. -walkYouThrough: "We zullen je door de volgende stappen begeleiden:" -someOptional: Hoewel al deze stappen optioneel zijn, raden we je toch aan alles te doen om het meeste uit FreeSewing te halen. diff --git a/packages/i18n/src/locales/uk/account.yaml b/packages/i18n/src/locales/uk/account.yaml deleted file mode 100644 index 884b92baceb..00000000000 --- a/packages/i18n/src/locales/uk/account.yaml +++ /dev/null @@ -1,60 +0,0 @@ ---- -accountRemoved: Обліковий запис видалено -accountRestricted: Обліковий запис обмежено -avatar: Аватар -avatarInfo: Ваш аватар або фото профілю буде показано на сторінці Вашого профілю. -avatarTitle: Встановіть своє зображення профілю -bio: Про мене -bioInfo: Це місце, де Ви можете розповісти іншим користувачам Freesewing трішки про себе. Дане поле підтримує MarkDown - це робить можливим додавання посилань. Для прикладу, Ви можете додати посилання на свій блог, щоб інші могли його відвідати. -bioTitle: Напишіть коротку біографію -currentPassword: Поточний пароль -email: Адреса електронної пошти -emailInfo: Адреса електронної пошти, прив'язана до вашого облікового запису, є важливою, оскільки вона буде використовуватися для відновлення доступу до вашого облікового запису, якщо ви забудете пароль. Через це зміна електронної адреси потребує підтвердження. -emailTitle: Введіть адресу електронної пошти, яку Ви хочете прив'язати до цього облікового запису -exportYourData: Експортуйте Ваші дані -exportYourDataInfo: Загальний регламент про захист даних ЄС (GDPR) забезпечує Ваше так зване право на мобільність даних — право отримувати та повторно використовувати свої особисті дані для власних цілей, в тому числі на різних платформах. -exportYourDataTitle: Натисніть нижче, щоб завантажити персональні дані -github: GitHub -githubInfo: Якщо ви надасте своє ім'я користувача GitHub, сторінка вашого профілю буде містити посилання на ваш обліковий запис в GitHub. Інші відвідувачі зможуть переглянути Ваші внески в код, дати Вам зірочку або підписатися на Вас. -githubTitle: Заповніть своє ім'я користувача GitHub -instagramInfo: Якщо ви надасте ім'я користувача Instagram, сторінка профілю буде містити посилання на Ваш обліковий запис в Instagram. Таким чином, відвідувачі зможуть переглянути Ваші фотографії та слідкувати за Вами. -instagram: Instagram -instagramTitle: Заповніть своє ім'я користувача Instagram -languageInfo: Даний вибір мови визначає, якою мовою ви будете отримувати електронні листи від FreeSewing. Він не визначає мову сайту, яку можна вибрати на кожній сторінці. -language: Мова -languageTitle: Оберіть бажану мову користування -newPassword: Новий пароль -newsletter: Розсилка новин -newsletterTitle: Чи хочете Ви отримувати розсилку новин від FreeSewing? -newsletterInfo: Раз на 3 місяці, ми надсилаємо нашу інформаційну розсилку з корисним та чесним контентом. Без відстеження, без реклами, без нісенітниць. -passwordInfo: Зміна пароля вимагає Вашого поточного пароля. Заповніть його, потім введіть новий пароль. -password: Пароль -passwordTitle: Введіть поточний пароль та новий пароль -patronInfo: Патрони фінансово підтримують FreeSewing. Вони є лояльними прихильниками, які забезпечують стійке майбутнє для freesewing.org, нашого коду, викрійок та нашої спільноти. -patron: Патрон -removeYourAccountInfo: Загальний регламент про захист даних ЄС (GDPR) забезпечує Ваше так зване право на усунення даних — право видалити Ваші персональні дані. -removeYourAccount: Видалення облікового запису -removeYourAccountWarning: Ця дія вилучить Ваш обліковий запис, Ваші чернетки, Ваші моделі, та всю збережену нами інформацію про Ваш обліковий запис. Жодних шляхів назад. -resetPasswordInfo: Введіть Ваш новий пароль. -resetPassword: Змінити пароль -resetPasswordTitle: Введіть Ваш новий пароль -restrictProcessingOfYourDataInfo: Загальний регламент про захист даних ЄС (GDPR) гарантує Ваші так звані права на обмеження опрацювання - право припиняти обробку Ваших даних. -restrictProcessingOfYourData: Обмежити обробку ваших даних -restrictProcessingWarning: Ваші дані не будуть видалені, проте Ви вийдете зі свого облікового запису та заморозите його. Також, Ви не можете відмінити цю дію самостійно – Вам доведеться зв'язатися з нами, якщо Ви захочете відновити доступ до свого облікового запису. -reviewYourConsent: Переглянути вашу згоду -socialInfo: Якщо Ви надасте своє ім'я користувача GitHub, Twitter або Instagram, сторінка вашого профілю буде містити посилання на Ваші облікові записи на цих сайтах. Це дозволяє користувачам FreeSewing підписатися на Вас.
Ми не контактуємо з жодним з цих сайтів від Вашого імені. Це тільки для того, щоб люди могли розуміти, що, наприклад, користувач @joost на FreeSewing є тією самою людиною, що і користувач @j__st в Twitter. -social: Соціальні мережі -socialTitle: Дозволити людям слідкувати за Вами на інших платформах -twitterInfo: Якщо ви надасте своє ім'я користувача Twitter, сторінка вашого профілю буде містити посилання на Ваш обліковий запис у Twitter. Таким чином, відвідувачі можуть переглянути ваші твіти і слідкувати за Вами. -twitterTitle: Заповніть своє ім'я користувача у Twitter -twitter: Twitter -unitsInfo: FreeSewing підтримує як метричну систему, так і імперську систему вимірювань. -unitsTitle: Будь ласка, оберіть систему вимірювань, з якою Ви найбільш знайомі -units: Одиниці вимірювання -usernameInfo: Кожен користувач отримує випадково згенероване ім'я користувача. Це не дуже особисте, тому Ви можете змінити Ваше ім'я користувача на щось більш відповідне Вашій особистості. До прикладу, власне ім'я, або або будь-що інше. -usernameTitle: Будь ласка, oберіть ім'я користувача -username: Ім’я користувача -accountIsInactive: Ваш обліковий запис неактивний -accountNeedsActivation: Перш ніж Ви зможете увійти, потрібно активувати свій обліковий запис. Будь ласка, перевірте Вашу поштову скриньку для реєстрації і натисніть на посилання у листі. -reloadAccount: Перезавантажити обліковий запис -reloadAccountDescription: Це перезавантажить дані Вашого облікового запису із backend. Буквально те саме, що й вийти та знову увійти. diff --git a/packages/i18n/src/locales/uk/app.yaml b/packages/i18n/src/locales/uk/app.yaml deleted file mode 100644 index 4a84b0c6b02..00000000000 --- a/packages/i18n/src/locales/uk/app.yaml +++ /dev/null @@ -1,348 +0,0 @@ ---- -100PercentCommunity: 100% спільноти -100PercentFree: 100% безкоштовно -100PercentOpenSource: 100% відкритий код -aboutFreesewing: Про Freesewing -accessoryPatterns: Викрійки аксесуарів -account: Обліковий запис -accountCreated: Обліковий запис створено -actions: Дії -allDocumentation: Вся документація -andThatIsAwesome: І це чудово -applyThisLayout: Застосувати макет -areYouSureYouWantToContinue: Ви впевнені, що хочете продовжити? -askForHelp: Попросити про допомогу -automatic: Автоматично -averagePeopleDoNotExist: "Середньостатистичних людей не існує" -awesome: Чудово -back: Назад -becauseThatWouldBeReallyHelpful: Тому що це було б дуже корисно. -becomeAPatron: Стати патроном -blockPatterns: Викрійки-основи -blog: Блог -browseBlogposts: Перегляд блог-постів -browsePatterns: Перегляд викрійок -browseShowcases: Перегляд показів -butThatCouldChange: Але це може змінитися -cancel: Скасувати -changePerson: Змінити людину -changePattern: Змінити викрійку -chatOnDiscord: Чат в Discord -checkInboxClickLinkInConfirmationEmail: Тепер перевірте поштову скриньку та перейдіть за посиланням у листі, що ми надіслали вам. -chest: Груди -chestInfo: Молочні залози потребують додаткових замірів. Якщо людина не має молочних залоз, ці заміри будуть приховані. Це не впливає на створення викрійок. -chooseASize: Обрати розмір -chooseAPerson: Обрати людину -chooseADesign: Обрати дизайн -chooseAPattern: Обрати викрійку -chooseYourOptions: Обрати Ваші налаштування -close: Закрити -community: Спільнота -configureLayout: Налаштування макета -configureYourDraft: Налаштуйте свою чернетку -contactUs: Контакти -contentLocaleFallback: Тому замість цього ми показуємо Вам англійську версію. -contents: Зміст -continue: Продовжити -copiedToClipboard: Скопійовано в буфер обміну -copy: Копіювати -couldYouTranslateThis: Можете це перекласти? -countModelsLackingForPattern: '{count} Ваших людей не мають достатньо замірів для створення {pattern}' -created: Створено -custom: Налаштувати -customSeamAllowance: Налаштувати припуски на шви -lightMode: Світлий режим -data: Дані -darkMode: Темний режим -default: За замовчуванням -demo: Демо -designOptions: Налаштування дизайну -designs: Дизайни -docs: Документація -docsFooterMsg: Документація ніколи не завершена. Сподіваємося, ми змогли відповісти на всі Ваші запитання, але якщо це не так - можна звернутися за допомогою. -docsNotFoundMsg: Не вдалося знайти цю документацію. Це зазвичай значить, що вона ще не була написана. -docsNotFoundTitle: Ця документація відсутня -documentationForDevelopers: Документація для розробників -documentationForEditors: Документація для коригувачів -documentationForTranslators: Документація для перекладачів -documentationOverview: Перегляд документації -dolls: Ляльки -download: Завантажити -draft: Чернетка -draftPattern: 'Створити {pattern}' -testPattern: 'Протестувати {pattern}' -draftPatternForModel: 'Створити {pattern} для {model}' -drafts: Чернетки -draftSettings: Налаштування чернетки -dragAndDropImageHere: Перетягніть зображення сюди або виберіть власноруч, тицьнувши на кнопку знизу -emailAddress: Електронна адреса -emailWorksToo: "Якщо Ви не знаєте своє ім'я користувача, можна також використати свою електронну адресу для входу" -enterEmailPickPassword: Введіть свою електронну адресу та оберіть пароль -export: Експортувати -exportTiledPDF: Експортувати посторінковий PDF -faq: Поширені запитання -fieldRemoved: '{field} видалено' -fieldSaved: '{field} збережено' -filterByPattern: Фільтрувати за викрійками -filterPatterns: Фільтрувати викрійки -forgotLoginInstructions: "Якщо Ви не пам'ятаєте свій пароль, напишіть знизу своє ім'я користувача чи електронну адресу та тицьніть кнопку Змінити пароль" -freesewing: Freesewing -freesewingOnGithub: Freesewing на GitHub -garmentPatterns: Викрійки одягу -giants: Велетні -github: GitHub -goAheadWeWillWait: Продовжуйте, ми зачекаємо. -goodJob: Молодець -goodToSeeYouAgain: Раді бачити Вас знову, {user} -handle: Handle -helpUsTranslate: Допоможіть нам з перекладом -home: Головна -howCanWeHelpYou: Як ми можемо Вам допомогти? -howToTakeMeasurements: Як робити заміри -i18n: Інтернаціоналізація -imperialUnits: Імперські одиниці (дюйм) -instagram: Інстаграм -invalidTldMessage: '.{tld} не є дійсним доменом верхнього рівня (TLD)' -joinTheChatMsg: Ми маємо спільноту в Discord, де Ви можете поспілкуватися з привітними людьми. -justAMoment: Зачекайте хвилинку -layout: Макет -logIn: Увійти -loginWithProvider: 'Увійти через {provider}' -logOut: Вийти -manual: Довідник -markdownHelp: MarkDown help -measurements: Заміри -menu: Меню -metadata: Метадані -metricUnits: Метричні одиниці (см) -person: Людина -people: Люди -nameInfo: Назва допомагає відрізняти речі. Ви можете обрати назву, яку душа забажає. -name: Назва -addThing: Додати {thing} -newThing: Створити {thing} -newPatternForModel: 'Створити {pattern} для {model}' -noChanges: Без змін -no: 'Ні' #Keep in quotes or it will evaluate to false -noPasswordPolicy: Ми не застосовуємо політику правил введення пароля -noSeamAllowance: Без припусків на шви -notAllOfThisContentIsAvailableInLanguage: Не весь цей контент доступний англійською мовою -notesInfo: Це Ваші нотатки. Ви можете писати тут все, що забажаєте -notes: Нотатки -ohNo: О ні! -oneMoreThing: І ще одна річ -optionalMeasurements: Додаткові заміри -options: Налаштування -orPayPerYear: Чи оплачувати щороку -other: Інше -otherThing: 'Ще {thing}' -ourPatrons: Наші патрони -ourRevenuePledge: Куди йде наш прибуток -patron-2: Порохова мавпочка -patron-4: Перший помічник -patron-8: Капітан -patronHelp: Якщо Ви маєте будь-які запитання чи бажаєте внести зміни до свого статусу патрона — зв'яжіться з нами, будь ласка -patron: Патрон -patronPitch: Якщо Ви вважаєте, що ми робимо цінну роботу, та можете без труднощів відшкодувати кілька копійок щомісяця, будь ласка, підтримайте нашу працю -patronsKeepUsAfloat: Freesewing існує завдяки фінансовій підтримці наших патронів. Вони тримають цей корабель на плаву. -patternInstructions: Інструкції до викрійок -patternOptions: Налаштування кресленика -pattern: викрійка -sewingPatterns: Викрійка для шиття -patterns: Викрійки -pendingConfirmation: Підтвердження очікується -perMonth: Щомісячно -pleaseEnterAValidEmailAddress: Будь ласка, вкажіть чинну електронну адресу -pleaseIncludeTheInformationBelow: Будь ласка, додайте відомості нижче -preview: Попередній перегляд -privacyNotice: Конфіденційність -proceedWithCaution: Продовжуйте з обережністю -profile: Обліковий запис -relatedLinks: Споріднені посилання -remove: Видалити -removeThing: Видалити {thing} -reportThisOnGithub: Повідомте про проблему на GitHub -requiredMeasurements: Необхідні заміри -resendActivationEmailMessage: "Напишіть електронну адресу, за допомогою якої Ви зареєструвалися - ми надішлемо Вам нове повідомлення для підтвердження." -resendActivationEmail: Повторно надіслати лист для активації -resetPassword: Змінити пароль -reset: Змінити -restoreDefaults: Скидання налаштувань -restoreDesignDefaults: Скинути налаштування дизайну -restorePatternDefaults: Скинути налаштування викрійки -saveDraftToYourAccount: Зберегти чернетку до облікового запису -save: Зберегти -searchLanguageMsg: Кожна мова має власний індекс пошуку. Оскільки не весь наш контент перекладений, Ви, скоріш за все, отримаєте більше результатів англійською. -searchLanguageTitle: Не знайшли, що шукали? -search: Пошук -selectAPartToMoveMirrorOrRotate: Обрати частину для переміщення, віддзеркалення або обертання -selectImage: Вибрати зображення -sendAnEmail: Надіслати e-mail -settings: Налаштування -sewingHelp: Допомога з шиттям -sewingPatternsForNonAveragePeople: Швейні викрійки для справжніх людей -share: Поширити -shareFreesewing: Поширити FreeSewing -showcase: Готові проєкти -signUpForAFreeAccount: Реєстрація безкоштовного облікового запису -signUp: Реєстрація -signupWithProvider: 'Реєстрація через {provider}' -sortByField: Сортувати за {field} -standardSeamAllowance: Стандартні припуски на шви -startOver: Почати знову -startTranslatingNowOrRead: '{startTranslatingNow}, або спочатку прочитайте {documentationForTranslators}.' -startTranslatingNow: Почни перекладати зараз -subscribe: Підписатися -support: Підтримати -supportFreesewing: Підтримати freesewing -tellMeMore: Хочу дізнатися більше -thanksForYourSupport: Дякуємо за Вашу підтримку -thisContentIsNotAvailableInLanguage: Цього контенту немає англійською -thisFieldSupportsMarkdown: Це поле підтримує Markdown -thisPageRequiresAuthentication: Ця сторінка потребує автентифікації -troubleLoggingIn: Не вдається увійти? -twitter: Twitter -txt-footer: Freesewing працює завдяки спільноті учасників
з фінансовою підтримкою наших патронів -txt-tier2: Рівень з найбільш демократичною ціною. Не перевищує вартість смачної філіжанки кави, та Ваша підтримка смачніша. -txt-tier4: Підпишіться на цей рівень та ми доставимо наші смачнющі "булочки" до Вашого ґанку (будь-де на мапі). -txt-tier8: "Якщо Ви хочете не лише підтримувати нас, а й бажаєте freesewing процвітання, цей рівень для Вас. Також: додаткові \"булочки\". ;)" -txt-tiers: 'FreeSewing існує завдяки добровільній моделі підписки' -unitsInfo: Freesewing підтримує як метричні, так й імперські одиниці вимірювання. Просто оберіть ті, яким надаєте перевагу. (Зазвичай використовуються одиниці, зазначені в Вашому обліковому записі.) -updated: Оновлено -update: Оновити -userHasBeenWithUsSince: '{user} тут з {since}' -users: Користувачі -utilityPatterns: Utility patterns -weAreValidatingYourConfirmationCode: Ми перевіряємо Ваш код підтвердження -weCouldNotValidateYourConfirmationCode: Нам не вдалося підтвердити Ваш код -weEncounteredAProblem: У нас виникла проблема -weEncourageYouToReportThis: Ми будемо вдячні, якщо Ви повідомите нам про це -welcomeAboard: Ласкаво просимо -welcome: Вітаємо -weNeverShareYourEmail: Ми ніколи не передамо Вашу електронну адресу третім обличчям -whatIsThis: Що це таке? -withBreasts: З молочними залозами -withoutBreasts: Без молочних залоз -yay: Ура! -yes: '"Так"' #Keep in quotes or it will evaluate to true -youAreAPatron: Ви патрон -youAreNotAPatron: Ви не є патроном -youAreNotLoggedIn: Ви не ввійшли в свій обліковий запис -yourRights: Ваші права -makerDocs: Кравецька документація -devDocs: Розробницька документація -slogan: Бібліотека JavaScript для створення швейних викрійок на базі замірів -getStarted: Розпочати -apiReference: Референс АРІ -tutorial: Урок -editThisPage: Редагувати сторінку -loginRequiredRedirect: 'Вас було перенаправлено на сторінку входу, оскільки {page} потребує автентифікації' -various: Різне -sewing: Шиття -examples: Приклади -by: від -years: Роки -pricing: Ціни -createFirst: Розпочніть зі створення нової викрійки -noPattern: Ви не маєте жодних викрійок (поки що). Створіть нову викрійку, потім збережіть її до свого облікового запису. -modelFirst: Розпочніть з додавання замірів -noModel: Ви не додали жодних замірів (поки що). FreeSewing може створювати швейні викрійки на базі замірів. Однак для цього нам потрібні власне заміри. -noModel2: Розпочніть зі створення людини, після чого діставайте свою сантиметрову стрічку. -noUserBrowsingTitle: "Ви не можете просто переглядати всіх користувачів" -noUserBrowsingText: "У нас їх тисячі. Ви дійсно хочете витрачати свій час на це?" -usePatternMeasurements: 'Використати заміри вихідної викрійки' -createReplica: Створити копію -showDetails: Показати подробиці -hideDetails: Приховати подробиці -clickBelowToLogOut: Тицьніть знизу для виходу -compare: Порівняти -savePattern: Зберегти викрійку -recreate: Відтворити -recreateThing: Відтворити {thing} -recreateThingForPerson: Відтворити {thing} для {person} -seeYouLaterUser: До зустрічі, {user} -exportForPrinting: Експортувати для друку -exportForEditing: Експортувати для коригування -startWithNeckTitle: Розпочніть з обхвату шиї -startWithNeckDescription: Спираючись на Ваш обхват шиї, ми можемо зловити помилки в Ваших замірах. -whatYouNeed: Що Вам потрібно -fabricOptions: Варіанти тканини -cutting: Вирізання -instructions: Інструкція -hide: Приховати -show: Показати -oneMomentPlease: Будь ласка, зачекайте -loadingMagic: Ми завантажуємо магію -estimate: Прикидка -actual: Насправді -weEstimateYM2B: 'Ми прикидаємо, що {measurement} дорівнює:' -exportAsData: Експорт даних -availablePatterns: Доступні викрійки -browseCollection: Огляд колекції -browseYourPatterns: Переглянути викрійки -yourPatterns: Ваші викрійки -loginNeededToSavePatternsMsg: Ви маєте увійти, аби зберігати викрійки -docsForContributors: Документація для учасників -patternDocs: Документація викрійок -socialMedia: Соціальні мережі -create: Створити -browse: Огляд -patrons: Патрони -scrollToTop: Повернутися нагору -sitemap: Мапа сайту -contributeToThing: Долучитися до {thing} -mtmIsOurJam: Ми спеціалізуємося в швейних викрійках на базі замірів -fitYouDeserve: Ви обділяєте себе, обираючи стандартизовані розміри.
Зареєструйтеся сьогодні та отримайте крій, що личить Вам. -supportNag: FreeSeewing є безкоштовною платформою, але ми будемо вдячні, якщо Ви підтримаєте нас. -madeToMeasure: На базі замірів -sizes: Розміри -standardSizes: Стандартні розміри -accountRequired: Ця функція вимагає обліковий запис FreeSewing -size: Розмір -switchToThing: 'Перейти до {thing}' -saveThing: 'Зберегти {thing}' -shareThing: 'Поширити {thing}' -link: Посилання -cloneThing: 'Копіювати {thing}' -cloneDescription: Відтворити точну копію, використовуючи заміри вихідної викрійки. -furtherReading: Подальше вивчення -saveAsNewPattern: Зберегти як нову викрійку -saveAsNewPattern-txt: Збережіть цю викрійку/копію в своєму обліковому записі FreeSewing -exportPattern: Експортувати викрійку -printPattern: Роздрукувати викрійку -exportPattern-txt: Експортувати PDF для Вашого принтера, або завантажити цю викрійку в інших форматах -editThing: 'Коригувати {thing}' -editPattern-txt: Відкрити цю викрійку в швейному редакторі -featureRequiresAccount: Ця функція вимагає обліковий запис FreeSewing -zoom: Масштаб -zoomIn: Збільшити -zoomOut: Зменшити -zoom-txt: Перемикає між ужиманням висоти чи ширини викрійки для розміщення на Вашому екрані -savePattern-txt: Збережіть цю викрійку в своєму обліковому записі FreeSewing -comparePattern: Порівняти викрійку -showPattern: Показати викрійку -comparePattern-txt: Порівняйте свою викрійку зі стандартизованими розмірами для того, щоб побачити можливі проблеми моделювання -recreatePattern: Відтворити викрійку -recreatePattern-txt: Оберіть іншу людину та відтворіть цю викрійку для неї -editOwnPatternsOnly: Ви можете коригувати лише свої викрійки -editOwnPatternsOnly-txt: Ви не можете скоригувати цю викрійку, бо вона не Ваша. Але Ви можете використувати її як базу для створення власної викрійки. -updateNotes-txt: Оновлюйте нотатки до Ваших викрійок -franceWarning: До уваги користувачів з Франції -franceWarning-txt: Декілька французьких провайдерів електронної пошти — включаючи free.fr, laposte.net, orange.fr та sfr.fr — відомі регулярним блокуванням наших електронних листів. -emailNotReceived: Якщо Ви не отримаєте лист для активації, будь ласка, зв'яжіться з нами, щоб ми могли Вам допомогти. -error: Помилка -info: Інформація -warning: Увага -debug: Налагодження -unsubscribe: Відписатися -slogan-come: Приходьте за викрійками -slogan-stay: Залишайтеся заради спільноти -lightTheme: Світла тема -darkTheme: Темна тема -hax0rTheme: Тема Hax0r -lgbtqTheme: Тема ЛГБТК -transTheme: Транс тема -accessoryDesigns: Дизайни аксесуарів -blockDesigns: Викрійки-основи -garmentDesigns: Дизайни одягу -utilityDesigns: Базові дизайни diff --git a/packages/i18n/src/locales/uk/cfp.yaml b/packages/i18n/src/locales/uk/cfp.yaml deleted file mode 100644 index f9aee0501d7..00000000000 --- a/packages/i18n/src/locales/uk/cfp.yaml +++ /dev/null @@ -1,33 +0,0 @@ ---- -author: Автор -githubRepo: Репозиторій GitHub -packageManager: Менеджер пакунків -patternName: Назва викрійки -patternType: Тип викрійки -patternCreated: Ваш каркас викрійки створено у -runTheseCommands: Щоб розпочати, запустіть цю команду -startRollup: У одному терміналі запустіть ролап у режимі перегляду -startWebpack: "Це відкриє папку \"приклад\" та запустить девелопмент." -devDocsAvailableAt: Документація для розробників доступна за адресою -talkToUs: Для запитань, відгуків чи пропозицій, приєднуйтесь до нашого серверу в Discord -draftYourPattern: Створіть Вашу викрійку -testYourPattern: Протестувати Вашу викрійку -draftThing: 'Створити {thing}' -testThing: 'Протестувати {thing}' -renderInBrowser: Натисніть нижче, щоб відобразити Вашу викрійку у браузері. -weWillReRender: Коли Ви виконаєте зміни, ми перезавантажимо зображення для Вас. -youCan: Ви можете -enterMeasurements: Ввести вимірювання вручну -preloadMeasurements: Завантажити набір мірок -size: Розмір -noRequiredMeasurements: Ця викрійка не потребує замірів -howtoAddMeasurements: Щоб додати бажані мірки, додайте їх у секцію заміри у файлі конфігурації викрійки. -seeDocsAt: Документація по цій темі доступна за адресою -clearDesignMode: Очистити режим дизайну -designMode: Режим дизайну -exportMode: Режим експорту -thingIsEnabled: '{thing} увімкнено' -thingIsDisabled: '{thing} вимкнено' -turnOn: Увімкнути -turnOff: Вимкнути -validNameWarning: "Будь ласка, оберіть іншу назву, бо дана назва може призвести до проблем.\nМи (повторно) використовуємо назву викрійки як NPM назву пакету.\nІмена пакунків повинні бути в нижньому регістрі та не можуть містити спеціальних символів.\nБудь ласка, назвіть викрійку згідно правил, наприклад:" diff --git a/packages/i18n/src/locales/uk/components/common.yaml b/packages/i18n/src/locales/uk/components/common.yaml deleted file mode 100644 index 24e19957b26..00000000000 --- a/packages/i18n/src/locales/uk/components/common.yaml +++ /dev/null @@ -1,13 +0,0 @@ ---- -account: Обліковий запис -blog: Блог -commumity: Спільнота -designs: Дизайни -docs: Документація -patternInstructions: Інструкції до викрійок -patternOptions: Налаштування кресленика -requiredMeasurements: Необхідні вимірювання -showcase: Готові проєкти -sloganCome: Приходьте за викрійками -sloganStay: Залишайтеся заради спільноти -support: Підтримка diff --git a/packages/i18n/src/locales/uk/components/homepage.yaml b/packages/i18n/src/locales/uk/components/homepage.yaml deleted file mode 100644 index f3f0ca0f931..00000000000 --- a/packages/i18n/src/locales/uk/components/homepage.yaml +++ /dev/null @@ -1,2 +0,0 @@ ---- -scrollDownToLearnMore: Прокрутіть вниз, щоб дізнатися більше про FreeSewing і безкоштовно скористатися його функціями diff --git a/packages/i18n/src/locales/uk/components/ograph.yaml b/packages/i18n/src/locales/uk/components/ograph.yaml deleted file mode 100644 index d35e6ef7d8a..00000000000 --- a/packages/i18n/src/locales/uk/components/ograph.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -orgTitle: Ласкаво просимо до FreeSewing.org -devTitle: Ласкаво просимо до FreeSewing.dev -labTitle: Ласкаво просимо до lab.FreeSewing.lab -devDescription: Документація та навчальні матеріали для розробників FreeSewing та учасників. А також наш блог розробників diff --git a/packages/i18n/src/locales/uk/components/patrons.yaml b/packages/i18n/src/locales/uk/components/patrons.yaml deleted file mode 100644 index 7329a62aa6b..00000000000 --- a/packages/i18n/src/locales/uk/components/patrons.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -becomeAPatron: Стати патроном -supportFreesewing: Підтримати FreeSewing -patronLead: FreeSewing існує завдяки добровільній моделі підписки -patronPitch: Якщо Ви думаєте, що ми робимо цінну роботу, і якщо Ви можете відшкодувати кілька монет щомісяця без труднощів, будь ласка, підтримайте нашу роботу diff --git a/packages/i18n/src/locales/uk/components/posts.yaml b/packages/i18n/src/locales/uk/components/posts.yaml deleted file mode 100644 index cc6d41bb1b2..00000000000 --- a/packages/i18n/src/locales/uk/components/posts.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -xMadeThis: '{x} є автором цієї роботи' -xWroteThis: '{x} є автором цього тексту' diff --git a/packages/i18n/src/locales/uk/components/themes.yaml b/packages/i18n/src/locales/uk/components/themes.yaml deleted file mode 100644 index 2b726ac82bf..00000000000 --- a/packages/i18n/src/locales/uk/components/themes.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -lightTheme: Світла тема -darkTheme: Темна тема -hax0rTheme: Тема Hax0r -lgbtqTheme: Тема ЛГБТК -transTheme: Тема Транс diff --git a/packages/i18n/src/locales/uk/components/workbench.yaml b/packages/i18n/src/locales/uk/components/workbench.yaml deleted file mode 100644 index 3e7ae44d937..00000000000 --- a/packages/i18n/src/locales/uk/components/workbench.yaml +++ /dev/null @@ -1,11 +0,0 @@ ---- -designOptions: Варіанти дизайну -forPrinting: Для друку -forCutting: Для вирізання -layoutThing: 'Розташувати {thing}' -pageSize: Розмір сторінки -startBySelectingAThing: 'Почніть з вибору {thing}' -testThing: 'Протестувати {thing}' -yamlEditViewTitleThing: 'Редагувати конфігурацію шаблону для {thing}' -yamlEditViewError: Проблеми з YAML -yamlEditViewErrorDesc: Ми зберегли Ваш внесок, але він може не працювати з наступних причин diff --git a/packages/i18n/src/locales/uk/cty.yaml b/packages/i18n/src/locales/uk/cty.yaml deleted file mode 100644 index ccd8e358578..00000000000 --- a/packages/i18n/src/locales/uk/cty.yaml +++ /dev/null @@ -1,20 +0,0 @@ ---- -wafsHashtag: WeAreFreeSewing -weAreACommunityOfMakers: Ми - спільнота кравців -weProvideMtmSewingPatterns: Ми надаємо викрійки, адаптовані під надані Вами заміри -isAPatron: є патроном -contributesWith: співпрацює з -communityBuilding: Створення спільноти -development: Розробка -patternTesting: Тестування викрійок -patternDesign: Дизайн викрійок -support: Підтримка -translation: Переклад -writing: Письмо -whereToFindUs: Де нас знайти -whoWeAre: Про нас -community: Спільнота -team: Команда -teams: Команди -contributors: Помічники -calls: Дзвінки помічників diff --git a/packages/i18n/src/locales/uk/designs.yml b/packages/i18n/src/locales/uk/designs.yml deleted file mode 100644 index 0ac28c5f8ec..00000000000 --- a/packages/i18n/src/locales/uk/designs.yml +++ /dev/null @@ -1,142 +0,0 @@ ---- -aaron: - description: Аарон є спортивною майкою. - title: Майка Аарон -albert: - description: Альберт – це фартук. - title: Фартук Альберт -bee: - description: Бі – це ліф купальника - title: Ліф купальника Бі -bella: - description: Белла є викрійкою-основою з виточками. - title: Викрійка-основа Белла -benjamin: - description: Бенджамін – це викрійка краватки-метелика з чотирма різними формами. - title: Галстук-метелик Бенджамін -bent: - description: Ця двочастинна викрійка є основою для викрійок пальто та піджаків. - title: Викрійка-основа Бент -bob: - description: Це нагрудник, викрійку якого ви можете самостійно створити, пройшовши нашу інструкцію з дизайну викрійок - title: Нагрудник Боб -breanna: - description: Бреанна – це викрійка-основа з виточками. - title: Викрійка-основа Бреанна -brian: - description: Браян – це викрійка-основа без виточок. - title: Викрійка-основа Браян -bruce: - description: Брюс – комфортні та стильні боксери. - title: Труси-боксери Брюс -carlita: - description: 'Версія пальто Карлтон, ака пальто Шерлока Холмса, тільки зі швом Принц(есса).' - title: Пальто Карліта -carlton: - description: 'Підходить для косплею Шерлока Холмса, або просто як гарне і практичне пальто.' - title: Пальто Карлтон -cathrin: - description: Катрін – це підгрудний корсет або тренувач талії. - title: Корсет Катрін -charlie: - description: Чарлі – це викрійка для брюк-чіносів. - title: Брюки-чіноси Чарлі -cornelius: - description: Корнеліус – це бріджі для катання на велосипеді, основані на методі крою Кістон. - title: Бріджі для катання Корнеліус -diana: - description: Діана – це топ з горловиною-хомутом. - title: Топ з горловиною-хомутом Діана -florent: - description: 'Флорент – це пласка кепка, заокруглена кепка з невеликим твердим козирцем спереду.' - title: Пласка кепка Флорент -florence: - description: 'Флоренс – це маска для обличчя.' - title: Маска Флоренс -hi: - description: Найдружелюбніша акула у світі. - title: Акула Куку -holmes: - description: 'Для косплею Шерлока Холмса, або просто як мила шапочка.' - title: Шапка Холмс -hortensia: - description: 'Гортензія – це ручна сумка.' - title: Ручна сумка Гортензія -huey: - description: Хьюі – це худі на блискавці з кишенями спереду (на ваш вибір). - title: Худі Хьюї -hugo: - description: Хьюго – це джампер з капюшоном та рукавами реглан. - title: Худі Хьюго -jaeger: - description: Джагер – це спортивний піджак з двома ґудзиками та накладними кишенями. - title: Піджак Джагер -lucy: - description: Люсі – це кишеня з минулого, яку можна зав'язати на талії. - title: Кишеня на зав'язках Люсі -lunetius: - description: Лютінус – це ласерна, або історична накидка з Древнього Риму. - title: Ласерна Лютінус -noble: - description: Нобл – це викрійка-основа з швом принц(есса). - title: Викрійка-основа Нобл -octoplushy: - description: Товариш з мацальцями для міцних обіймів - title: Восьминіг М'якуш -paco: - description: Пако – це базові та стильні літні штани. - title: Штани Пако -penelope: - description: Пенелопа – це спідниця-олівець з розрізом ззаду (за бажанням). - title: Юбка-олівець Пенелопа -sandy: - description: Сенді – викрійка спідниці-сонце на будь-яку довжину та пишність. - title: Юбка-сонце Сенді -shin: - description: Шін – це спортивні плавки. - title: Плавки Шін -simon: - description: Саймон – це викрійка сорочки без передніх виточок. Легко адаптується під Ваші швейні плани. - title: Сорочка Саймон -simone: - description: Сімон – це як Саймон, але з передніми виточками. - title: Сорочка Сімон -sven: - description: Свен – це простий і прямий светр. - title: Светр Свен -tamiko: - description: Таміко – це топ "Нуль відходів". - title: Блузка Таміко -teagan: - description: Тіган – це викрійка футболки по розміру. - title: Футболка Тіган -theo: - description: Тео – це викрійка класичних штанів. - title: Штани Тео -tiberius: - description: Тіберіус – це Древньоримська туніка. - title: Туніка Тіберіус -titan: - description: Титан – це викрійка-основа штанів без виточок. - title: Викрійка-основа штанів Титан -trayvon: - description: Трейвон – це краватка, яка робиться без відрізання кутів для професіонального вигляду. - title: Краватка Трейвон -unice: - description: Юніс – це варіант Урсули. Базова, багатофункціональна викрійка трусів. - title: Труси Юніс -ursula: - description: Урсула – це викрійка базових трусів з великою кількістю налаштувань дизайну. - title: Труси Урсула -wahid: - description: Вахід – це класичний облягаючий жилет. - title: Жилет Вахід -walburga: - description: Валбурга – це гербова накидка; елемент одягу середньовічної Європи. - title: Туніка Валбурга -waralee: - description: Варалі – це штани з запахом. - title: Штани з запахом Варалі -yuri: - description: Юрі – це екстравагантний кардиган без блискавки, оснований на худі Хьюі та Хьюго. - title: Худі Юрі diff --git a/packages/i18n/src/locales/uk/email.yaml b/packages/i18n/src/locales/uk/email.yaml deleted file mode 100644 index 8ed1f066d2c..00000000000 --- a/packages/i18n/src/locales/uk/email.yaml +++ /dev/null @@ -1,26 +0,0 @@ ---- -emailChangeActionText: 'Підтвердіть нову адресу електронної пошти' -emailChangeCopy1: 'Ви запросили зміну електронної адреси, прив''язаної до вашого облікового запису на Freesewing.org.' -emailChangeCopy2: 'Перш ніж зробити це, необхідно підтвердити нову адресу електронної пошти. Будь ласка, натисніть на посилання нижче, щоб зробити це:' -emailChangeHiddenIntro: "Час підтвердити нову адресу електронної пошти" -emailChangeTitle: 'Будь ласка, підтвердіть нову адресу електронної пошти' -emailChangeWhy: 'Ви отримали цей лист, оскільки змінили адресу електронної пошти, прив''язану до вашого облікового запису на freesewing.org' -goodbyeCopy1: "Якщо ви хочете поділитися, чому ви йдете, можете відповісти на це повідомлення." -goodbyeCopy2: "З нашого боку, ми не будемо вас турбувати." -goodbyeTitle: 'Дякуємо за ще один шанс для FreeSewing' -goodbyeWhy: 'Ви отримали цей лист, як останнє прощання після видалення вашого облікового запису на freesewing.org' -passwordResetActionText: 'Повторно отримати доступ до вашого облікового запису' -passwordResetCopy1: 'Ви забули пароль до облікового запису на FreeSewing.org.' -passwordResetCopy2: 'Натисніть на посилання нижче, щоб відновити пароль:' -passwordResetHeaderOpeningLine: "Не хвилюйтеся, це стається з нами усіма" -passwordResetHiddenIntro: 'Повторно отримати доступ до вашого облікового запису' -passwordResetSubject: 'Повторно отримати доступ до вашого облікового запису на freesewing.org' -passwordResetTitle: 'Змінити пароль і повторно отримати доступ до вашого облікового запису' -passwordResetWhy: 'Ви отримали цей електронний лист, тому що ви запросили зміну паролю на сайті freesewing.org' -questionsJustReply: "Якщо у вас є запитання, просто надішліть відповідь на цей електронний лист. Ми завжди раді допомогти 🙂" -signupActionText: 'Підтвердіть адресу електронної пошти' -signupCopy1: 'Дякуємо за реєстрацію на FreeSewing.org.' -signupCopy2: 'Перш ніж почати роботу, необхідно підтвердити свою адресу електронної пошти. Будь ласка, натисніть на посилання нижче, щоб зробити це:' -signupHiddenIntro: "Час підтвердити нову адресу електронної пошти" -signupSubject: 'Ласкаво просимо до FreeSewing.org' -signupWhy: 'Ви отримали цей електронний лист, тому що ви щойно зареєструвалися на сайті freesewing.org' diff --git a/packages/i18n/src/locales/uk/errors.yaml b/packages/i18n/src/locales/uk/errors.yaml deleted file mode 100644 index e7681a6cf24..00000000000 --- a/packages/i18n/src/locales/uk/errors.yaml +++ /dev/null @@ -1,11 +0,0 @@ ---- -404: Сторінку не знайдено -confirmationNotFound: Якщо Ви перейшли на дану сторінку через посилання в електронному листі, ми будемо вдячні, якщо Ви повідомите нам про цю проблему. -emailExists: У нас вже є користувач з цією адресою електронної пошти. Можливо, Ви хочете авторизуватися? -networkError: Помилка сервера або мережі -notAValidImageFormat: Неприпустимий формат зображення -requestFailedWithStatusCode400: Не вдалося виконати запит -requestFailedWithStatusCode401: Помилка аутентифікації -requestFailedWithStatusCode403: Заборонено -requestFailedWithStatusCode500: Виникла неочікувана проблема. Будь ласка, повідомте про це. -something: Щось пішло не так diff --git a/packages/i18n/src/locales/uk/filter.yml b/packages/i18n/src/locales/uk/filter.yml deleted file mode 100644 index 6f3429d68cb..00000000000 --- a/packages/i18n/src/locales/uk/filter.yml +++ /dev/null @@ -1,20 +0,0 @@ ---- -filter: Фільтр -department: Категорія -type: Тип -tags: Теги -code: Код -design: Дизайн -difficulty: Складність -resetFilter: Скинути фільтри -accessories: Аксесуари -block: Основа -pattern: Викрійка -byPattern: Фільтрувати за викрійками -underwear: Спідня білизна -top: Верх -tops: Верх -bottom: Низ -bottoms: Низ -coats: Верхній одяг -swimwear: Купальні костюми diff --git a/packages/i18n/src/locales/uk/gdpr.yaml b/packages/i18n/src/locales/uk/gdpr.yaml deleted file mode 100644 index b2c700692f5..00000000000 --- a/packages/i18n/src/locales/uk/gdpr.yaml +++ /dev/null @@ -1,39 +0,0 @@ ---- -compliant: Freesewing.org поважає вашу конфіденційність і ваші права. Ми застосовуємо Загальний регламент про захист даних (GDPR) Європейського Союзу (ЄС). -consent: Згода -consentForModelData: Дозвіл на дані моделі -consentForProfileData: Дозвіл на дані облікового запису -consentGiven: Згода отримана -consentNotGiven: Згода не отримана -consentWhyAnswer: Згідно з GDPR, обробка ваших персональних даних вимагає Вашої згоди - іншими словами, Ваш дозвіл. -createMyAccount: Створити обліковий запис -furtherReading: Подальше вивчення -modelQuestion: Чи даєте Ви згоду на обробку даних моделі? -modelWarning: Анулювання даної згоди зробить неможливим використання даних замірів моделі. Це також анулює функціонал вебсайту, який залежить від даної інформації. -modelWhatAnswer: Заміри та налаштування молочних залоз кожної моделі. -modelWhatAnswerOptional: 'За навності: Зображення моделі та ім''я моделі.' -modelWhatQuestion: Що таке дані моделі? -modelWhyAnswer: 'Для розробки викрійок, адаптованих під заміри спеціально вимірунам необхідні виміри тіла.' -noConsentNoAccount: Без цієї згоди ми не можемо створити Ваш обліковий запис -noConsentNoPatterns: Без цієї згоди, Ви не можете створити будь-які викрійки -noIDoNot: 'Ні, не даю' -openDataInfo: Ці дані використовуються для вивчення і розуміння людського тіла в усіх його формах. Це дозволяє нам покращити наші викрійки та створювати більш підходящий до тіла одяг. Незважаючи на те, що ці дані є анонімними, Ви маєте право не давати згоду на їх обробку. -openDataQuestion: Поділитися замірами анонімно як відкритими даними -profileQuestion: Чи даєте Ви згоду на обробку даних Вашого облікового запису? -profileShareAnswer: 'Ні, ніколи.' -profileTimingAnswer: '12 місяців після останнього входу в систему, або до тих пір, поки Ви не видалите Ваш обліковий запис або скасуєте дану згоду.' -profileWarning: Відкликання згоди видалить усі Ваші данні. Це має той же ефект, що і видалення облікового запису. -profileWhatAnswerOptional: 'За наявності: зображення облікового запису, біоі соціальні мережі' -profileWhatAnswer: 'Ваша електронна адреса, ім''я користувачаі пароль.' -profileWhatQuestion: Що таке дані облікового запису? -profileWhyAnswer: 'Щоб автентифікувати Вас, зв''язатися з Вами коли це потрібно та задля покращення нашої спільноти.' -readMore: Для отримання додаткової інформації, будь ласка, прочитайте наші умови конфіденційності. -readRights: Для отримання додаткової інформації, будь ласка, прочитайте про Ваші права. -revokeConsent: Відкликати згоду -shareQuestion: Чи передаємо ми її іншим? -timingQuestion: Скільки ми її зберігаємо? -whatYouNeedToKnow: Що вам потрібно знати -whyQuestion: Чому нам це потрібно? -yesIDoObject: 'Ні, я проти' -yesIDo: 'Так, я даю згоду' -openData: 'Примітка: FreeSewing публікує анонімні заміри тіла як відкриті дані для наукових досліджень. Ви маєте право відмовитися від цього' diff --git a/packages/i18n/src/locales/uk/i18n.yaml b/packages/i18n/src/locales/uk/i18n.yaml deleted file mode 100644 index 9b1ffbadbcd..00000000000 --- a/packages/i18n/src/locales/uk/i18n.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -de: Німецька -en: Англійська -es: Іспанська -fr: Французька -nl: Нідерландська diff --git a/packages/i18n/src/locales/uk/intro.yaml b/packages/i18n/src/locales/uk/intro.yaml deleted file mode 100644 index 1af5c9f3f70..00000000000 --- a/packages/i18n/src/locales/uk/intro.yaml +++ /dev/null @@ -1,12 +0,0 @@ ---- -txt-blog: Новини, оновлення та анонси від команди FreeSewing -txt-community: 'Проєкт існує на добровільних засадах. FreeSewing не прив''язаний до жодних комерційних засад та компаній.' -txt-different: Чому ми особливі -txt-draft: "Оберіть одну з викрійок, модель та налаштування. Ми зробимо решту." -txt-how: Як це працює -txt-join: Приєднайтеся до тисяч інших користувачів та створіть безкоштовний акаунт на freesewing.org. -txt-model: Всі наші викрійки адаптуються під задані виміри. Тому перше, що варто зробити – піти взяти сантиметрову стрічку. -txt-newHere: "Якщо ви тут вперше – найкраще місце для початку є наше демо:" -txt-opensource: 'Наша платформа, наші викрійки та навіть наш вебсайт. Весь наш код доступний на GitHub. Pull requests вітаються!' -txt-patrons: FreeSewing існує завдяки фінансовій підтримці наших Патронів. Прокрутіть вниз, щоб дізнатися про нашу модель підписки. -txt-showcase: Завершені проекти від спільноти FreeSewing diff --git a/packages/i18n/src/locales/uk/jargon.yml b/packages/i18n/src/locales/uk/jargon.yml deleted file mode 100644 index 242e938f0bc..00000000000 --- a/packages/i18n/src/locales/uk/jargon.yml +++ /dev/null @@ -1,85 +0,0 @@ ---- -basting: - term: зметування - description: "Дивіться Зметування у документація до шиття" -coverlock: - term: каверлок - description: "Дивіться Каверлок у Документація до шиття" -cutting: - term: вирізання - description: "Дивіться Вирізання у Документація до шиття" -darts: - term: виточки - description: "Дивіться Виточки уДокументація до шиття" -doubleWeltPockets: - term: кишеня з подвійною листочкою - description: "Дивіться Кишеня з подвійною листочкою уДокументація до шиття" -ease: - term: свобода облягання - description: "Дивіться Свобода облягання у Документація до шиття" -edgestitch: - term: шов по краю - description: "Дивіться Шов по краю у Документація до шиття" -fabricGrain: - term: нитка-основа тканини - description: "Дивіться Нитка основа тканини у Документація до шиття" -goodSidesTogether: - term: лицьові сторони одна до одної - description: "Дивіться Лицьові сторони одна до одної у Документація до шиття" -onTheFold: - term: на згині - description: "Дивіться На згині у Документація до шиття" -hemming: - term: підшивання краю - description: "Дивіться Підшивання краю у Документація до шиття" -jersey: - term: джерсі - description: "Дивіться Джерсі у Документація до шиття" -knitBinding: - term: трикотажна бейка - description: "Дивіться Трикотажна бейка у Документація до шиття" -knitFabric: - term: трикотаж - description: "Дивіться Трикотаж у Документація до шиття" -pinning: - term: зметування булавками - description: "Дивіться Зметування булавками у Документація до шиття" -rayon: - term: віскоза - description: "Дивіться Віскоза уДокументація до шиття" -sa: - term: припуск на шов - description: "Дивіться Припуск на шов у Документація до шиття" -serger: - term: машина-оверлок - description: "Дивіться Оверлок у Документація до шиття" -slipstitch: - term: потайний шов - description: "Дивіться Потайний шов у Документація до шиття" -topstitching: - term: оздоблювальний шов - description: "Дивіться Оздоблювальний шов у Документація до шиття" -trimming: - term: підрізання припусків на шов - description: "Дивіться Підрізання припусків на шов у Документація до шиття" -twinNeedle: - term: подвійна голка - description: "Дивіться Подвійна голка у Документація до шиття" -zigZag: - term: шов "Зіг-заг" - description: "Дивіться шов \"Зіг-заг\" уДокументація до пошиття" -freesewing: - term: freesewing - description: 'FreeSewing є платформою з відкритим кодом для створення швейних викрійок, які адаптуються під виміри користувача' -patternOptions: - term: налаштування кресленика - description: 'Налаштування викрійки дозволяє Вам змінити дизайн викрійки за Вашими побажаннями' -draftSettings: - term: налаштування чернетки - description: 'налаштування чернетки надає Вам контроль над генерацією викрійки' -patrons: - term: патрони - description: 'Патрони фінансово підтримують FreeSewing. Вони є лояльними прихильниками, які забезпечують стійке майбутнє для freesewing.org, нашого коду, викрійок та нашої спільноти.' -msf: - term: msf - description: "Médecins Sans Frontières/Лікарі без кордонів – Більше на msf.org" diff --git a/packages/i18n/src/locales/uk/lab.yaml b/packages/i18n/src/locales/uk/lab.yaml deleted file mode 100644 index a472b5ac43e..00000000000 --- a/packages/i18n/src/locales/uk/lab.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -slogan: Лабораторія FreeSewing забезпечує -slogan1: Всі наші дизайни викрійок -slogan2: Нова & стара версія -slogan3: Bleeding edge code -slogan4: Не запущені дизайни diff --git a/packages/i18n/src/locales/uk/loader.yaml b/packages/i18n/src/locales/uk/loader.yaml deleted file mode 100644 index 46b2507c3ff..00000000000 --- a/packages/i18n/src/locales/uk/loader.yaml +++ /dev/null @@ -1 +0,0 @@ -processing: Обробляється diff --git a/packages/i18n/src/locales/uk/optiongroups.yaml b/packages/i18n/src/locales/uk/optiongroups.yaml deleted file mode 100644 index d4fc1c85335..00000000000 --- a/packages/i18n/src/locales/uk/optiongroups.yaml +++ /dev/null @@ -1,25 +0,0 @@ ---- -advanced: Додатково -armhole: Пройма -closure: Закриття -collar: Комір -construction: Конструкція -cuffs: Манжети -darts: Виточки -elastic: Резинка -fit: За розміром -pockets: Кишені -preferences: Уподобання -sleevecap: Окат рукава -sleeves: Рукава -style: Стиль -backPockets: Задні кишені -frontPockets: Передні кишені -waistband: Резинка на талії -fly: Гульфик -bellaDarts: Виточки Белла -bellaArmhole: Пройма Белла -bellaAdvanced: Додатково Белла -clavi: Клав -type: Тип -size: Розмір diff --git a/packages/i18n/src/locales/uk/options/aaron.yml b/packages/i18n/src/locales/uk/options/aaron.yml deleted file mode 100644 index 35377005a2d..00000000000 --- a/packages/i18n/src/locales/uk/options/aaron.yml +++ /dev/null @@ -1,25 +0,0 @@ ---- -armholeDrop: - title: Спуск пройми - description: Опускає пройму на обрану відстань. Негативний показик підіймає пройму. -backlineBend: - title: Задня частина пройми - description: Визначає форму/криву задньої частини пройми. -hipsEase: - title: Свобода облягання на животі - description: Відсоток свободи облягання на животі. -necklineBend: - title: Форма горловини - description: Визначає форму/криву горловини спереду. -necklineDrop: - title: Спуск горловини - description: Процент відкриття шиї спереду. -shoulderStrapPlacement: - title: Розташування лямки - description: Визначає розташування лямки ближче до шиї (нижчі номери) або ближче до плеча (вищі номери). -shoulderStrapWidth: - title: Ширина лямки - description: Визначає ширину лямок. -stretchFactor: - description: Визначає горизонтальне зменшення свободи облягання. - title: Розтяжність diff --git a/packages/i18n/src/locales/uk/options/albert.yml b/packages/i18n/src/locales/uk/options/albert.yml deleted file mode 100644 index f8b5dedae55..00000000000 --- a/packages/i18n/src/locales/uk/options/albert.yml +++ /dev/null @@ -1,20 +0,0 @@ ---- -backOpening: - title: Відкриття спини - description: Контролює відкриття на задній частині фартука -chestDepth: - title: Довжина лямки - description: Контролює довжину лямки -lengthBonus: - title: Додаткова довжина - description: Контролює довжину фартука -bibLength: - title: Довжина нагрудної пройми - description: Контролює довжину нагрудної пройми -bibWidth: - title: Ширина нагрудної пройми - description: Контролює ширину нагрудної пройми -strapWidth: - title: Ширина лямки - description: Контролює ширину лямки - diff --git a/packages/i18n/src/locales/uk/options/bee.yml b/packages/i18n/src/locales/uk/options/bee.yml deleted file mode 100644 index 4068a7cbf1a..00000000000 --- a/packages/i18n/src/locales/uk/options/bee.yml +++ /dev/null @@ -1,82 +0,0 @@ ---- -chestEase: - title: Свобода облягання на грудях - description: Контролює свободу облягання грудей у викрійці-основі Белла, на якій основана Бі -waistEase: - title: Свобода облягання на талії - description: Контролює свободу облягання талії у викрійці-основі Белла, на якій основана Бі -bustSpanEase: - title: Свобода облягання центру грудей - description: Контролює свободу облягання центру грудей у викрійці-основі Белла, на якій основана Бі -topDepth: - title: Глибина верху - description: Контролює, як високо чашка піднімається наверх -bottomCupDepth: - title: Глибина низу - description: Контролює, як низько чашка опускається вниз -sideDepth: - title: Глибина боку - description: Контролює, як далеко чашка збільшується у сторону -sideCurve: - title: Дуга лінії боку - description: Контролює дугу сторони чашки -frontCurve: - title: Дуга внутрішньої лінії - description: Контролює дугу внутрішньої сторони чашки -bellaGuide: - title: Показати Беллу - description: Показує контур викрійки-основи Белла, на якій основана Бі -ties: - title: Зав'язки - description: Чи включати до викрійки зав'язки, так чи ні -bandTieWidth: - title: Ширина зав'язок на спині - description: Контролює ширину зав'язок на спині -bandTieLength: - title: Довжина зав'язок на спині - description: Контролює довжину зав'язок на спині -bandTieEnds: - title: Кінчики зав'язок на спині - description: Створює прямі або загострені кінчики на зав'язках -bandTieColours: - title: Кольори зав'язок на спині - description: Створює монохромні або двоколірні зав'язки на спині -neckTieWidth: - title: Ширина зав'язок на шиї - description: Контролює ширину зав'язок навколо шиї -neckTieLength: - title: Довжина зав'язок навколо шиї - description: Контролює довжину зав'язок навколо шиї -neckTieEnds: - title: Кінчики зав'язок навколо шиї - description: Створює прямі або гострі кінчики на зав'язках навколо шиї -neckTieColours: - title: Колір зав'язок навколо шиї - description: Створює монохромні або двоколірні зав'язки навколо шиї -crossBackTies: - title: Перехресні зав'язки - description: Чи включати до викрійки перехресні зав'язки на спині -bandLength: - title: Довжина резинки (перехресні зав'язки) - description: Контролює довжину резинки навколо спини для версії Бі з перехресними зав'язками -backDartHeight: - title: Висота виточки на спині (Белла) - description: Контролює висоту виточки на спині у викрійці-основі Белла, на якій основана Бі -armholeDepth: - title: Глибина пройми (Белла) - description: Контролює глибину пройми у викрійці-основі Белла, на якій основана Бі -frontArmholePitchDepth: - title: Передній виступ пройми (Белла) - description: Контролює передній виступ пройми у викрійці-основі Белла, на якій основана Бі -frontShoulderWidth: - title: Передня ширина плеча (Белла) - description: Контролює передню ширину плеча у викрійці-основі Белла, на якій основана Бі -fullChestEaseReduction: - title: Зменшення грудної частини (Белла) - description: Контролює зменшення грудної частини у викрійці-основі Белла, на якій основана Бі -highBustWidth: - title: Ширина над грудьми (Белла) - description: Контролює ширину над грудьми у викрійці-основі Белла, на якій основана Бі -shoulderToShoulderEase: - title: Свобода облягання ширини плечей (Белла) - description: Контролює свободу облягання ширини плечей у викрійці-основі Белла, на якій основана Бі diff --git a/packages/i18n/src/locales/uk/options/bella.yml b/packages/i18n/src/locales/uk/options/bella.yml deleted file mode 100644 index c606ff7e25f..00000000000 --- a/packages/i18n/src/locales/uk/options/bella.yml +++ /dev/null @@ -1,58 +0,0 @@ ---- -chestEase: - title: Свобода облягання на грудях - description: Контролює свободу облягання на найбільшій частині грудей -waistEase: - title: Свобода облягання на талії - description: Контролює свободу облягання на талії -bustSpanEase: - title: Свобода облягання центру грудей - description: Контролює горизонтальну свободу облягання на центрі грудей. -shoulderToShoulderEase: - title: Свобода облягання ширини плечей - description: Контролює свободу облягання ширини плечей. Початково налаштовано на -5%, бо Белла розроблена як викрійка-основа, що застосовується у швейній індустрії. -fullChestEaseReduction: - title: Зменшення свободи облягання на грудях - description: Керує незалежним від інших параметрів зменшенням свободи облягання на грудях для (більш) тугої посадки -backDartHeight: - title: Висота спинної виточки - description: Керує висотою виточки на спині (більше значення зменшує висоту виточки) -bustDartLength: - title: Довжина грудної виточки - description: Керує загальною довжиною виточки на грудях -waistDartLength: - title: Довжина поясної виточки - description: Керує загальною довжиною виточки на талії -bustDartCurve: - title: Заокруглення грудної виточки - description: Керує наскільки кривими є лінії виточки на грудях -armholeDepth: - title: Глибина пройми рукава - description: Керує глибиною (шириною) пройми рукава -backArmholeSlant: - title: Нахил пройми рукава на спині - description: Трохи змінює нахил пройми рукава на спині відповідно до точки збігу пройми -frontArmholeCurvature: - title: Заокруглення пройми рукава спереду - description: Керує заокругленням пройми рукава спереду -backArmholeCurvature: - title: Заокруглення пройми рукава ззаду - description: Керує заокругленням пройми рукава ззаду -frontArmholePitchDepth: - title: Висота передньої точки збігу пройми - description: Налаштовує розташування передньої точки збігу по вертикалі -backArmholePitchDepth: - title: Висота задньої точки збігу пройми - description: Налаштовує розташування задньої точки збігу по вертикалі -backNeckCutout: - title: Глибина горловини ззаду - description: Керує глибиною горловини на задньому полотнищі -backHemSlope: - title: Нахил заднього краю - description: Керує нахилом краю на спині -frontShoulderWidth: - title: Ширина плечей спереду - description: Контролює ширину плечей переднього полотнища відповідно до заднього -highBustWidth: - title: Ширина полички - description: Дозволяє керувати шириною полички на ліфі diff --git a/packages/i18n/src/locales/uk/options/benjamin.yml b/packages/i18n/src/locales/uk/options/benjamin.yml deleted file mode 100644 index 95de15978e7..00000000000 --- a/packages/i18n/src/locales/uk/options/benjamin.yml +++ /dev/null @@ -1,28 +0,0 @@ ---- -adjustmentRibbon: - title: Рихтувальна тасьма - description: Додавати чи не додавати рихтувальну тасьму в елементи викрійки -bandLength: - title: Довжина пояска - description: Загальна довжина пояска -tipWidth: - title: Ширина країв - description: Ширина чи висота країв бантика -knotWidth: - title: Ширина вузлика - description: Ширина перемички (місця зав'язування краватки) -bowLength: - title: Довжина бантика - description: Довжина бантика (у зав'язаному стані) -bowStyle: - title: Форма бантика - description: Загальна форма бантика -endStyle: - title: Форма стрічок - description: Форма стрічок під бантиком -collarEase: - title: Свобода коміра - description: Свобода облягання коміра навколо шиї -ribbonWidth: - title: Ширина тасьми - description: Ширина тасьми (стрічки) diff --git a/packages/i18n/src/locales/uk/options/bent.yml b/packages/i18n/src/locales/uk/options/bent.yml deleted file mode 100644 index 3569317b092..00000000000 --- a/packages/i18n/src/locales/uk/options/bent.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- -sleeveBend: - title: Згин рукава - description: Керує кутом згину рукава в лікті. -sleevecapHeight: - title: Висота окату - description: Керує висотою окату рукава. - diff --git a/packages/i18n/src/locales/uk/options/bob.yml b/packages/i18n/src/locales/uk/options/bob.yml deleted file mode 100644 index fd100ed32d3..00000000000 --- a/packages/i18n/src/locales/uk/options/bob.yml +++ /dev/null @@ -1,12 +0,0 @@ -neckRatio: - title: Шийний зріз - description: Керує діаметром шийного зрізу відповідно до розміру слинявчика -widthRatio: - title: Ширина - description: Керує загальною шириною слинявчика -lengthRatio: - title: Довжина - description: Керує загальною довжиною слинявчика -headSize: - title: Розмір голови - description: Обхват голови, на який має налізати слинявчик diff --git a/packages/i18n/src/locales/uk/options/breanna.yml b/packages/i18n/src/locales/uk/options/breanna.yml deleted file mode 100644 index 997b2dd4d73..00000000000 --- a/packages/i18n/src/locales/uk/options/breanna.yml +++ /dev/null @@ -1,41 +0,0 @@ ---- -shoulderDart: - title: Плечова виточка - description: Додавати чи не додавати виточку на плечі для заокруглення спини -shoulderDartSize: - title: Розмір плечової виточки - description: Ширина (розмір) плечової виточки -shoulderDartLength: - title: Довжина плечової виточки - description: Загальна довжина плечової виточки -waistDart: - title: Поясна виточка - description: Додавати чи не додавати виточки на талії для заокруглення спини -waistDartSize: - title: Розмір поясної виточки - description: Ширина (розмір) виточки на талії -waistDartLength: - title: Довжина поясної виточки - description: Загальна довжина виточки на талії -verticalEase: - title: Вертикальна свобода облягання - description: Керує свободою облягання, що розподіляється по довжині виробу -waistEase: - title: Свобода облягання на талії - description: Відсоток свободи облягання на талії -primaryBustDart: - title: Грудна виточка - description: Керує розташуванням виточки для формування ліфу -primaryBustDartLength: - title: Довжина грудної виточки - description: Загальна довжина виточки на грудях -secondaryBustDart: - title: Вторинна грудна виточка - description: За бажанням можна додати вторинну виточку на грудях для подальшого формування ліфу -secondaryBustDartLength: - title: Довжина вторинної грудної виточки - description: Загальна довжина вторинної виточки на грудях -primaryBustDartShaping: - title: Формування грудних виточок - description: Керує співвідношенням між головними та вторинними виточками на грудях - diff --git a/packages/i18n/src/locales/uk/options/brian.yml b/packages/i18n/src/locales/uk/options/brian.yml deleted file mode 100644 index cb2e5cc903a..00000000000 --- a/packages/i18n/src/locales/uk/options/brian.yml +++ /dev/null @@ -1,106 +0,0 @@ ---- -acrossBackFactor: - title: Across back factor - description: Controls your across back width as a factor of your shoulder to shoulder measurement. -armholeDepthFactor: - title: Глибина пройми - description: Контролює глибину пройми. Вищі показники роблять глибшу пройму. -backNeckCutout: - title: Глибина горловини ззаду - description: Контролює глибину задньої частини горловини -bicepsEase: - title: Свобода облягання біцепсів - description: 'Контролює свободу облягання на верхній частині Вашої руки. Зверніть увагу, що коректне з''єднання рукава з проймою є більш пріорітетним для програми, аніж свобода облягання рукава.' -collarEase: - title: Свобода облягання коміра - description: Керує свободою облягання навколо шиї -chestEase: - title: Свобода облягання на грудях - description: Керує свободою облягання на грудях. -cuffEase: - title: Свобода облягання манжета - description: Керує свободою облягання на зап'ястях. -draftForHighBust: - title: Draft for high bust - description: Draft the pattern for the high bust measurement (if available) rather than the (full) chest. This will result in a more fitted garment for people with breasts. -frontArmholeDeeper: - title: Front armhole extra cutout - description: How much do you want the front armhole to be cut out deeper than the back. -lengthBonus: - title: Додаткова довжина - description: Додає довжину до виробу. Негативне значення скорочує довжину виробу. -s3Collar: - title: 'Зсув плечевого шва зі сторони коміра' - description: Збільшіть цей показник, щоб змістити плечевий шов зі сторони коміру. Зменшення показника зміщує шов у зворотному напрямку. -s3Armhole: - title: 'Зсув плечевого шва зі сторони пройми' - description: Збільшіть цей показник, щоб змістити плечевий шов зі сторони пройми. Зменшення показника зміщує шов у зворотному напрямку. -shoulderEase: - title: Свобода облягання плеча - description: Керує свободою облягання на плечах. Цей показник збільшує відстань від плеча до плеча для додавання додаткових шарів тканини тощо. -shoulderSlopeReduction: - title: Зменшення нахилу плеча - description: Зменшує нахил плеча для додавання плечових підкладок. -sleeveLengthBonus: - title: Додаткова довжина рукава - description: Додає довжину до рукава. Негативне значення скорочує довжину рукава. -sleevecapEase: - title: Sleevecap ease - description: The amount by which the sleevecap seam is longer than the armhole seam. -sleevecapTopFactorX: - title: Sleevecap top X - description: Controls the horizontal location of the sleevecap top. -sleevecapTopFactorY: - title: Sleevecap top Y - description: Controls the height of the sleevecap. A higher value results in a higher and more narrow sleevecap. -sleevecapBackFactorX: - title: Sleevecap back X - description: Controls the placement of the sleevecap back pitchpoint on the X-axis (horizontal) -sleevecapBackFactorY: - title: Sleevecap back Y - description: Controls the placement of the sleevecap back pitchpoint on the Y-axis (vertical) -sleevecapFrontFactorX: - title: Sleevecap front X - description: Controls the placement of the sleevecap front pitchpoint on the X-axis (horizontal) -sleevecapFrontFactorY: - title: Sleevecap front Y - description: Controls the placement of the sleevecap front pitchpoint on the Y-axis (vertical) -sleevecapQ1Offset: - title: Sleevecap Q1 offset - description: Controls the curvature of the sleevecap in the first quadrant (front armhole) -sleevecapQ2Offset: - title: Sleevecap Q2 offset - description: Controls the curvature of the sleevecap in the second quadrant (front shoulder) -sleevecapQ3Offset: - title: Sleevecap Q3 offset - description: Controls the curvature of the sleevecap in the third quadrant (back shoulder) -sleevecapQ4Offset: - title: Sleevecap Q4 offset - description: Controls the curvature of the sleevecap in the fourth quadrant (back armhole) -sleevecapQ1Spread1: - title: Sleevecap Q1 downward spread - description: Controls the spread of the sleevecap first quadrant curvature towards the armhole -sleevecapQ1Spread2: - title: Sleevecap Q1 upward spread - description: Controls the spread of the sleevecap first quadrant curvature towards the shoulder -sleevecapQ2Spread1: - title: Sleevecap Q2 downward spread - description: Controls the spread of the sleevecap second quadrant curvature towards the armhole -sleevecapQ2Spread2: - title: Sleevecap Q2 upward spread - description: Controls the spread of the sleevecap second quadrant curvature towards the shoulder -sleevecapQ3Spread1: - title: Sleevecap Q3 upward spread - description: Controls the spread of the sleevecap third quadrant curvature towards the shoulder -sleevecapQ3Spread2: - title: Sleevecap Q3 downward spread - description: Controls the spread of the sleevecap third quadrant curvature towards the armhole -sleevecapQ4Spread1: - title: Sleevecap Q4 upward spread - description: Controls the spread of the sleevecap fourth quadrant curvature towards the shoulder -sleevecapQ4Spread2: - title: Sleevecap Q4 downward spread - description: Controls the spread of the sleevecap fourth quadrant curvature towards the armhole -sleeveWidthGuarantee: - title: Sleeve width guarantee - description: Controls how much of the sleeve width will be guaranteed. This determines how much we can alter the sleeve width to fit the sleeve in the armhole. diff --git a/packages/i18n/src/locales/uk/options/bruce.yml b/packages/i18n/src/locales/uk/options/bruce.yml deleted file mode 100644 index 8fe9ae7c69f..00000000000 --- a/packages/i18n/src/locales/uk/options/bruce.yml +++ /dev/null @@ -1,19 +0,0 @@ ---- -bulge: - title: Пахова вставка - description: Керує кутом пахової вставки для регулювання простору в передній мішковині. -legBonus: - title: Додаткова довжина - description: Збільшує загальну довжину по нозі. -rise: - title: Посадка - description: Керує висотою посадки на талії. Негативний показник зробить посадку нижчою. -stretch: - title: Еластичність - description: Керує негативною свободою облягання. -legStretch: - title: Обхват ноги - description: 'Для найкращого результату рекомендується дещо туга посадка на нозі — ніяких пройм.' -backRise: - title: Посадка ззаду - description: Керує відсотком висоти посадки ззаду. diff --git a/packages/i18n/src/locales/uk/options/carlita.yml b/packages/i18n/src/locales/uk/options/carlita.yml deleted file mode 100644 index 8c14d4cb351..00000000000 --- a/packages/i18n/src/locales/uk/options/carlita.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -contour: - title: Силует - description: Керує чіткістю шва "Принцеса". diff --git a/packages/i18n/src/locales/uk/options/carlton.yml b/packages/i18n/src/locales/uk/options/carlton.yml deleted file mode 100644 index 072e7e7e846..00000000000 --- a/packages/i18n/src/locales/uk/options/carlton.yml +++ /dev/null @@ -1,31 +0,0 @@ ---- -seatEase: - title: Свобода облягання на стегнах - description: Керує свободою облягання навколо стегон -pocketPlacementHorizontal: - title: Горизонтальне розміщення кишені - description: Розташування кишені (горизонтальне) -pocketPlacementVertical: - title: Вертикальне розміщення кишені - description: Розташування кишені (вертикальне) -collarHeight: - title: Висота коміру - description: Контролює висоту коміру -length: - title: Довжина - description: Повна довжина виробу -pocketFlapRadius: - title: Радіус клапану кишені - description: Керує заокругленням клапану кишені -pocketRadius: - title: Радіус кишені - description: Контролює заокруглення кишені -chestPocketHeight: - title: Висота нагрудної кишені - description: Контролює висоту нагрудної кишені -beltWidth: - title: Ширина поясу - description: Керує висотою поясу -buttonSpacingHorizontal: - title: Горизонтальна відстань між ґудзиками - description: Керує горизонтальною відстанню між ґудзиком, також керує величиною накладання двох частин diff --git a/packages/i18n/src/locales/uk/options/cathrin.yml b/packages/i18n/src/locales/uk/options/cathrin.yml deleted file mode 100644 index e43722edb3e..00000000000 --- a/packages/i18n/src/locales/uk/options/cathrin.yml +++ /dev/null @@ -1,28 +0,0 @@ ---- -panels: - title: Кількість панелей - description: Загальна кількість панелей на викрійці. Більша кількість панелей забезпечить кращу посадку для гладких моделей. - options: - '11': 11 панелей - '13': 13 панелей -waistReduction: - title: Утягування талії - description: Відсоток утягування талії для бажаного ефекту. -backOpening: - title: Зріз на спині - description: Ширина відстані центрального спинного зрізу. -backRise: - title: Верхня посадка ззаду - description: Висота задніх панелей від боків до центру спини. -backDrop: - title: Нижня посадка ззаду - description: Наскільки задні панелі опускаються від стегон до центру спини. Від'ємне значення підніме ці панелі вгору. -frontRise: - title: Верхня посадка спереду - description: 'Висота передніх панелей від боків до центру між грудьми. Від''ємне значення опустить ці панелі донизу.' -frontDrop: - title: Нижня посадка спереду - description: Наскільки передні панелі опускаються від стегон до центру тулуба. -hipRise: - title: Посадка на стегнах - description: Наскільки високо розташовуються бокові панелі відповідно до стегон. diff --git a/packages/i18n/src/locales/uk/options/charlie.yml b/packages/i18n/src/locales/uk/options/charlie.yml deleted file mode 100644 index d86c0f9816b..00000000000 --- a/packages/i18n/src/locales/uk/options/charlie.yml +++ /dev/null @@ -1,52 +0,0 @@ ---- -backPocketHorizontalPlacement: - title: Горизонтальне розміщення задньої кишені - description: Керує розміщенням задньої кишені по горизонталі -backPocketVerticalPlacement: - title: Вертикальне розміщення задньої кишені - description: Керує розміщенням задньої кишені по вертикалі -backPocketWidth: - title: Ширина задньої кишені - description: Керує шириною задньої кишені -backPocketDepth: - title: Глибина задньої кишені - description: Керує глибиною задньої кишені -backPocketFacing: - title: Зовнішня частина задньої кишені - description: Вказує, включати чи не включати зовнішню частину задньої кишені -frontPocketSlantDepth: - title: Глибина пройми передньої кишені - description: Керує глибиною пройми передньої кишені -frontPocketSlantWidth: - title: Ширина пройми передньої кишені - description: Керує шириною пройми передньої кишені -frontPocketSlantRound: - title: Заокруглення пройми передньої кишені - description: Керує, наскільки далеко від низу пройми кишені починається заокруглення до лінії талії -frontPocketSlantBend: - title: Крива пройми передньої кишені - description: Керує радіусом заокруглення кишені до лінії талії -frontPocketWidth: - title: Ширина передньої кишені - description: Керує загальною шириною мішковини передньої кишені -frontPocketDepth: - title: Глибина передньої кишені - description: Керує загальною глибиною мішковини передньої кишені -frontPocketFacing: - title: Зовнішня частина передньої кишені - description: Керує, наскільки глибоко зовнішня частина кишені простягається по мішковині -beltLoops: - title: Поясні петельки - description: Керує загальною кількістю поясних петельок -flyCurve: - title: Крива гульфика - description: Керує кривою лінією гачкоподібного шва гульфика -flyLength: - title: Довжина гульфика - description: Керує загальною довжиною гульфика -flyWidth: - title: Ширина гульфика - description: Керує наскільки далеко гачкоподібний шов відходить від краю гульфика -waistbandCurve: - title: Крива поясу - description: Керує наскільки заокругленою є крива поясу. diff --git a/packages/i18n/src/locales/uk/options/cornelius.yml b/packages/i18n/src/locales/uk/options/cornelius.yml deleted file mode 100644 index 6cf04468cc4..00000000000 --- a/packages/i18n/src/locales/uk/options/cornelius.yml +++ /dev/null @@ -1,26 +0,0 @@ ---- -fullness: - title: Ширина ногавиць - description: Керує наскільки широкими є ногавиці -waistbandBelowWaist: - title: Нижчий пояс - description: Відсоток зміщення поясу нижче природної талії -waistReduction: - title: Утягування талії - description: Відсоток звуження поясу -cuffWidth: - title: Ширина чохли - description: Загальна ширина чохли (манжета) на ногах -cuffStyle: - title: Стиль чохли - description: Стиль чохли (манжета) на ногах -bandBelowKnee: - title: Чохла нижче коліна - description: Керує відстанню між чохлою (манжетом) та коліном -kneeToBelow: - title: Довжина чохли - description: Керує свободою облягання чохли на нозі -ventLength: - title: Довжина шліца - description: Керує довжиною шліца між коліном та чохлою (манжетом) - diff --git a/packages/i18n/src/locales/uk/options/diana.yml b/packages/i18n/src/locales/uk/options/diana.yml deleted file mode 100644 index a995e56fc35..00000000000 --- a/packages/i18n/src/locales/uk/options/diana.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- -shoulderSeamLength: - title: Довжина плечового шва - description: Контролює довжину плечового шва -drapeAngle: - title: Кут драпірування - description: Контролює кількість складок - diff --git a/packages/i18n/src/locales/uk/options/florence.yml b/packages/i18n/src/locales/uk/options/florence.yml deleted file mode 100644 index e5c568c6a81..00000000000 --- a/packages/i18n/src/locales/uk/options/florence.yml +++ /dev/null @@ -1,10 +0,0 @@ ---- -height: - title: Висота - description: Контролює висоту данної маски -length: - title: Довжина - description: Контролює довжину маски -curve: - title: Крива - description: Контролює вигин верхнього краю маски diff --git a/packages/i18n/src/locales/uk/options/florent.yml b/packages/i18n/src/locales/uk/options/florent.yml deleted file mode 100644 index cb6537ee754..00000000000 --- a/packages/i18n/src/locales/uk/options/florent.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -headEase: - title: Свобода облягання на голові - description: Контролює свободу облягання навколо голови diff --git a/packages/i18n/src/locales/uk/options/hi.yml b/packages/i18n/src/locales/uk/options/hi.yml deleted file mode 100644 index 93bc9025a56..00000000000 --- a/packages/i18n/src/locales/uk/options/hi.yml +++ /dev/null @@ -1,12 +0,0 @@ -hungry: - title: Голод - description: Змінює форму рота, аби показати, що Ку-ку голодна -nosePointiness: - title: Загостреність носика - description: Контролює наскільки гострий носик Ку-ку матиме -aggressive: - title: Лють - description: Надати Ку-ку гострі зуби, чи ні -size: - title: Розмір - description: Акули бувають різних розмірів, і Ку-ку теж diff --git a/packages/i18n/src/locales/uk/options/holmes.yml b/packages/i18n/src/locales/uk/options/holmes.yml deleted file mode 100644 index a6530f862d6..00000000000 --- a/packages/i18n/src/locales/uk/options/holmes.yml +++ /dev/null @@ -1,28 +0,0 @@ ---- -headEase: - title: Свобода облягання на голові - description: Керує свободою облягання навколо голови. -lengthRatio: - title: Співвідношення довжини - description: Керує відсотком довжини маківки та навушників -gores: - title: Кількість панелей - description: Керує кількістю панелей для побудови маківки (корони) -visorAngle: - title: Кут козирка - description: Кут, який використовується для побудови внутрішньої кривої козирка -visorWidth: - title: Ширина козирка - description: Керує шириною козирка -earLength: - title: Довжина навушника - description: Керує довжиною навушників, окремо від панелей маківки (корони) -earWidth: - title: Ширина навушника - description: Керує шириною навушників -buttonhole: - title: Петля ґудзика - description: Додає петлю для ґудзика на навушник для створення викрійки з ґудзиком -visorLength: - title: Довжина козирка - description: Керує довжиною козирка diff --git a/packages/i18n/src/locales/uk/options/hortensia.yml b/packages/i18n/src/locales/uk/options/hortensia.yml deleted file mode 100644 index c8325d42156..00000000000 --- a/packages/i18n/src/locales/uk/options/hortensia.yml +++ /dev/null @@ -1,13 +0,0 @@ ---- -size: - title: Розмір - description: Керує загальним розміром сумочки -zipperSize: - title: Розмір застібки - description: Який розмір застібки-блискавки використовувати -strapLength: - title: Довжина ручок - description: Керує довжиною ручок -handleWidth: - title: Ширина ручок - description: Керує шириною ручок diff --git a/packages/i18n/src/locales/uk/options/huey.yml b/packages/i18n/src/locales/uk/options/huey.yml deleted file mode 100644 index 8dbb43967b5..00000000000 --- a/packages/i18n/src/locales/uk/options/huey.yml +++ /dev/null @@ -1,22 +0,0 @@ ---- -pocket: - title: Кишеня - description: Чи додавати кишеню спереду -pocketHeight: - title: Висота кишені - description: Керує висотою кишені -hoodHeight: - title: Висота капюшона - description: Керує висотою (довжиною) капюшона -hoodCutback: - title: Пройма капюшона - description: Керує наскільки далеко розміщується пройма -hoodClosure: - title: Закриття капюшона - description: Керує висоту закриття капюшону під підборіддям -hoodDepth: - title: Глибина капюшона - description: Керує глибиною капюшона -hoodAngle: - title: Кут капюшона - description: Керує кут, за яким капюшон з'єднується з тулубом diff --git a/packages/i18n/src/locales/uk/options/hugo.yml b/packages/i18n/src/locales/uk/options/hugo.yml deleted file mode 100644 index 0fc71d84d3b..00000000000 --- a/packages/i18n/src/locales/uk/options/hugo.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -hipsEase: - title: Свобода облягання на стегнах - description: Керує свободою облягання на стегнах. diff --git a/packages/i18n/src/locales/uk/options/index.js b/packages/i18n/src/locales/uk/options/index.js deleted file mode 100644 index 38731b05a6f..00000000000 --- a/packages/i18n/src/locales/uk/options/index.js +++ /dev/null @@ -1,127 +0,0 @@ -import florence from './florence.yml' -import brian from './brian.yml' -import bella from './bella.yml' -import breanna from './breanna.yml' -import diana from './diana.yml' -import aaron from './aaron.yml' -import simon from './simon.yml' -import simone from './simone.yml' -import sven from './sven.yml' -import wahid from './wahid.yml' -import bent from './bent.yml' -import bruce from './bruce.yml' -import cathrin from './cathrin.yml' -import holmes from './holmes.yml' -import huey from './huey.yml' -import hugo from './hugo.yml' -import tamiko from './tamiko.yml' -import teagan from './teagan.yml' -import trayvon from './trayvon.yml' -import jaeger from './jaeger.yml' -import carlton from './carlton.yml' -import carlita from './carlita.yml' -import benjamin from './benjamin.yml' -import florent from './florent.yml' -import theo from './theo.yml' -import sandy from './sandy.yml' -import shin from './shin.yml' -import penelope from './penelope.yml' -import waralee from './waralee.yml' -import titan from './titan.yml' -import paco from './paco.yml' -import albert from './albert.yml' -import hortensia from './hortensia.yml' -import cornelius from './cornelius.yml' -import charlie from './charlie.yml' -import ursula from './ursula.yml' -import lunetius from './lunetius.yml' -import tiberius from './tiberius.yml' -import walburga from './walburga.yml' -import bee from './bee.yml' -import hi from 'hi.yml' -import unice from 'unice.yml' -import lucy from 'lucy.yml' -import bob from 'bob.yml' -import noble from 'noble.yml' -import octoplushy from 'octoplushy.yml' -import { options as optionList } from '@freesewing/pattern-info' -import shared from '../../../shared-options.yml' - -let patterns = { - florence, - bella, - brian, - breanna, - diana, - aaron, - simon, - simone, - sven, - wahid, - bent, - bruce, - cathrin, - huey, - hugo, - tamiko, - trayvon, - jaeger, - carlton, - carlita, - benjamin, - florent, - theo, - sandy, - shin, - penelope, - waralee, - holmes, - titan, - paco, - teagan, - albert, - hortensia, - cornelius, - charlie, - ursula, - yuri: false, - lunetius, - tiberius, - walburga, - bee, - hi, - unice, - lucy, - bob, - noble, - octoplushy, -} - -let options = {} -for (let pattern in patterns) { - options[pattern] = {} - if (typeof optionList[pattern] === 'undefined') - throw new Error('pattern ' + pattern + ' has no option list') - for (let option of optionList[pattern]) { - let value = patterns[pattern][option] - if (typeof value === 'object') options[pattern][option] = value - else { - if (typeof value === 'undefined') { - if (shared[pattern]) { - if (shared[pattern].dflt && typeof patterns[shared[pattern].dflt][option] === 'object') { - options[pattern][option] = patterns[shared[pattern].dflt][option] - } else if ( - typeof shared[pattern].other !== 'undefined' && - typeof shared[pattern].other[option] === 'string' - ) { - options[pattern][option] = patterns[shared[pattern].other[option]][option] - } else { - throw new Error(`No option translation found for ${option} in ${pattern}`) - } - } - } - } - } -} - -export default options diff --git a/packages/i18n/src/locales/uk/options/jaeger.yml b/packages/i18n/src/locales/uk/options/jaeger.yml deleted file mode 100644 index e4a168526ed..00000000000 --- a/packages/i18n/src/locales/uk/options/jaeger.yml +++ /dev/null @@ -1,112 +0,0 @@ ---- -centerBackDart: - title: Центральна виточка на комірі - description: Центральна шийна виточка для округлої спини -sleeveVentLength: - title: Довжина вирізу рукава - description: Керує довжиною вирізу рукава -sleeveVentWidth: - title: Ширина вирізу рукава - description: Керує шириною вирізу рукава -chestShaping: - title: Формування грудної частини - description: Amount of shaping to accommodate for the chest curve -frontDartPlacement: - title: Розміщення передньої виточки - description: Керує розташуванням передноьої виточки -frontOverlap: - title: Front overlap - description: How far the fabric extends beyond the closing buttons -sideFrontPlacement: - title: Side/Front placement - description: The location of the side/front boundary -chestPocketDepth: - title: Глибина нагрудної кишені - description: Контролює глибину нагрудної кишені -chestPocketWidth: - title: Ширина нагрудної кишені - description: Контролює ширину нагрудної кишені -chestPocketPlacement: - title: Розташування нагрудної кишені - description: Контролює розташування нагрудної кишені -chestPocketAngle: - title: Кут нагрудної кишені - description: Кут нахилу, під яким розміщується нагрудна кишеня -chestPocketWeltSize: - title: Chest pocket welt size - description: The size of the chest pocket welt -frontPocketPlacement: - title: Front pocket placement - description: Location of the front pocket -frontPocketWidth: - title: Front pocket width - description: The width of the front pocket -frontPocketDepth: - title: Front pocket depth - description: The depth of the front pocket -frontPocketRadius: - title: Front pocket radius - description: The radius by which the front pocket is rounded -innerPocketPlacement: - title: Inner pocket placement - description: The location of the inner pocket -innerPocketWidth: - title: Inner pocket width - description: The width of the inner pocket -innerPocketDepth: - title: Inner pocket depth - description: The depth of the inner pocket -innerPocketWeltHeight: - title: Inner pocket welt height - description: The height of the inner pocket welt -pocketFoldover: - title: Pocket fold-over - description: The amount by which the main fabric is folder over into the pocket -centerFrontHemDrop: - title: Center front hem drop - description: The amount by which the hem is lowered towards the center front -backVent: - title: Виріз на спині - description: Контролює кількість вирізів на спині -backVentLength: - title: Довжина виріз(ів) на спині - description: Контролює довжину виріз(ів) на спині -buttonLength: - title: Довжина між ґудзиками - description: Керує довжиною між ґудзиками -frontCutawayAngle: - title: Front cutaway angle - description: The angle under which the front is cut away towards the hem -frontCutawayStart: - title: Front cutaway start - description: The location at which the front starts opening up towards the hem -frontCutawayEnd: - title: Front cutaway end - description: Increasing this will make the front cutaway stay closer to the center front -collarSpread: - title: Collar spread - description: The collar spread controls how the collar drapes over the shoulders -lapelStart: - title: Lapel start - description: Location where the center front goes over into the lapels -lapelReduction: - title: Lapel reduction - description: How much the tip of the lapels turns inwards -collarHeight: - title: Висота коміру - description: Контролює висоту коміру -collarNotchDepth: - title: Collar notch depth - description: Depth of the collar notch -collarNotchAngle: - title: Collar notch angle - description: Angle of the collar notch -collarNotchReturn: - title: Collar notch return - description: How much the collar returns from the notch, in comparison to the lapel -rollLineCollarHeight: - title: Roll-line collar height - description: How much the roll-line hugs the neck -hemRadius: - title: Hem radius - description: The amount by which the hem is rounded diff --git a/packages/i18n/src/locales/uk/options/lucy.yml b/packages/i18n/src/locales/uk/options/lucy.yml deleted file mode 100644 index 8c21202e721..00000000000 --- a/packages/i18n/src/locales/uk/options/lucy.yml +++ /dev/null @@ -1,10 +0,0 @@ -width: - title: Ширина - description: Ширина кишені -length: - title: Довжина - description: Довжина (глибина) кишені -edge: - title: Звуження - description: Керує шириною звуження - diff --git a/packages/i18n/src/locales/uk/options/lunetius.yml b/packages/i18n/src/locales/uk/options/lunetius.yml deleted file mode 100644 index 1a22547449c..00000000000 --- a/packages/i18n/src/locales/uk/options/lunetius.yml +++ /dev/null @@ -1,16 +0,0 @@ ---- -lengthRatio: - title: Співвідношення довжини - description: Керує наскільки довгим буде виріб -widthRatio: - title: Співвідношення ширини - description: Керує наскільки широким буде виріб -length: - title: Довжина - description: Виберіть один зі стилів довжини - options: - toKnee: На коліні - toBelowKnee: Вище коліна - toHips: На кульші - toUpperLeg: На стегнах - toFloor: До підлоги diff --git a/packages/i18n/src/locales/uk/options/noble.yml b/packages/i18n/src/locales/uk/options/noble.yml deleted file mode 100644 index ea3b7744f83..00000000000 --- a/packages/i18n/src/locales/uk/options/noble.yml +++ /dev/null @@ -1,61 +0,0 @@ -dartPosition: - description: Розміщує виточку на плечі або біля пройми - title: Позиція виточки -chestEase: - description: Контролює свободу облягання на грудях - title: Свобода облягання на грудях -waistEase: - description: Відповідає за свободу облягання на талії - title: Свобода облягання на талії -bustSpanEase: - description: Керує свободою облягання на центральній частині грудей - title: Свобода облягання центру грудей -backDartHeight: - description: Висота спинної виточки - title: Керує висотою виточки на спині -waistDartLength: - description: Керує довжиною виточки на талії - title: Довжина поясної виточки -shoulderDartPosition: - description: Контролює розміщення плечової виточки - title: Розміщення плечової виточки -upperDartLength: - description: Керує довжиною верхньої виточки - title: Довжина верхньої виточки -armholeDartPosition: - description: Контролює розміщення виточки біля пройми - title: Розміщення проймової виточки -armholeDepth: - description: Керує глибиною пройми - title: Глибина пройми рукава -backArmholeSlant: - description: Керує нахилом пройми на спині - title: Нахил пройми рукава на спині -backArmholeCurvature: - description: Керує формою пройми рукава ззаду - title: Заокруглення пройми рукава ззаду -frontArmholeCurvature: - title: Заокруглення пройми рукава спереду - description: Керує формою пройми рукава спереду знизу -frontArmholePitchDepth: - description: Controls how deep the armhole cuts into the front - title: Глибина виступу пройми зпереду -backArmholePitchDepth: - description: Controls how deep the armhole cuts into the back - title: Глибина виступу пройми ззаду -backNeckCutout: - description: Контролює глибину задньої частини горловини - title: Глибина горловини ззаду -backHemSlope: - description: Керує вигин заднього нижнього шва - title: Нахил заднього краю -frontShoulderWidth: - description: Контролює, скільки ширини додається до плеча спереду - title: Ширина плечей спереду -highBustWidth: - description: Controls the width of the high bust - title: High bust width -shoulderToShoulderEase: - description: Controls the amount of ease along the shoulder to shoulder measurement - title: Свобода облягання плечей - diff --git a/packages/i18n/src/locales/uk/options/octoplushy.yml b/packages/i18n/src/locales/uk/options/octoplushy.yml deleted file mode 100644 index c9bcc11cdb2..00000000000 --- a/packages/i18n/src/locales/uk/options/octoplushy.yml +++ /dev/null @@ -1,28 +0,0 @@ -size: - title: Розмір - description: Керує загальним розміром -type: - title: Тип - description: Дозволяє обрати один з варіантів цього дизайну -armWidth: - title: Ширина мацальця - description: Керує шириною окремих мацальців (щупальців) -armLength: - title: Arm length - description: Керує довжиною окремих мацальців (щупальців) -neckWidth: - title: Ширина шиї - description: Керує шириною шиї (місця між головою та мацальцями) -armTaper: - title: Звуження мацальця - description: Керує звуженням мацальців до краю -bottomTopArmRatio: - title: Співвідношення верху/низу мацальця - description: "Я й гадки не маю, що воно робить" -bottomArmReduction: - title: Зменшення низу мацальця - description: "Я й гадки не маю, що воно робить" -bottomArmReductionPlushy: - title: Зменшення низу мацальця (іграшка) - description: "Я й гадки не маю, що воно робить" - diff --git a/packages/i18n/src/locales/uk/options/paco.yml b/packages/i18n/src/locales/uk/options/paco.yml deleted file mode 100644 index 342cab4d295..00000000000 --- a/packages/i18n/src/locales/uk/options/paco.yml +++ /dev/null @@ -1,16 +0,0 @@ ---- -heelEase: - title: Свобода підйому - description: Свобода облягання підйому ноги (при надяганні) -frontPockets: - title: Передні кишені - description: Чи додавати передні кишені в бокових швах -backPockets: - title: Задні кишені - description: Чи додавати задні кишені з листочками -elasticatedHem: - title: Еластичний край - description: Чи додавати гумку на краях - поясі та ніжних проймах -ankleElastic: - title: Ширина гумки на кісточці - description: Ширина (необов'язкової) гумки на кісточці ноги/краю diff --git a/packages/i18n/src/locales/uk/options/penelope.yml b/packages/i18n/src/locales/uk/options/penelope.yml deleted file mode 100644 index 30d85d5fb17..00000000000 --- a/packages/i18n/src/locales/uk/options/penelope.yml +++ /dev/null @@ -1,46 +0,0 @@ ---- -backDartDepthFactor: - title: Глибина задньої виточки - description: Наскільки далеко вниз або глибоко йде задня виточка від поясу. Залежить від виміру "від талії до стегон". -backVent: - title: Задній виріз - description: Чи додати виріз ззаду спідниці. -backVentLength: - title: Довжина заднього вирізу - description: Довжина заднього вирізу як відсоток від загальної довжини спідниці. -dartToSideSeamFactor: - title: Співвідношення виточки до бокового шва - description: Відсоток утягування від кульші (тазу) до талії, за який відповідають виточки та боковий шов. -frontDartDepthFactor: - title: Глибина передньої виточки - description: Наскільки далеко вниз або глибоко йде передня виточка від поясу. Залежить від виміру "від талії до стегон". -hem: - title: Розмір краю - description: Ширина краю. Вимір в абсолютних значеннях (модулі дійсного числа). -hemBonus: - title: Додатковий край - description: Це налаштування зменшить загальну довжину краю спідниці. Вимірюється відсотком від виміру "обхват стегон". -lengthBonus: - title: Додаткова довжина - description: Визначає довжину спідниці. Відсоток від виміру "від талії до коліна". -nrOfDarts: - title: Кількість виточок - description: Загальна кількість виточок у викрійці. Найбільша кількість - 2. Це налаштування може автоматично зменшитися, якщо виточки за розрахунками виходять замалими. -seatEase: - title: Свобода облягання на стегнах - description: Свобода облягання на стегнах, яка допомагає забезпечити комфортне сидіння. -waistBand: - title: Пояс - description: Додати пояс до викрійки. -waistBandWidth: - title: Ширина пояса - description: Загальна ширина пояса. -waistEase: - title: Свобода облягання на талії - description: Свобода облягання на талії. -zipperLocation: - title: Розташування застібки - description: Де розташовуватиметься застібка-блискавка. - options: - backSeam: У задньому шві - sideSeam: У боковому шві diff --git a/packages/i18n/src/locales/uk/options/sandy.yml b/packages/i18n/src/locales/uk/options/sandy.yml deleted file mode 100644 index 621152f9157..00000000000 --- a/packages/i18n/src/locales/uk/options/sandy.yml +++ /dev/null @@ -1,26 +0,0 @@ ---- -waistbandWidth: - title: Ширина пояса - description: Керує загальною шириною пояса. -waistbandPosition: - title: Розташування пояса - description: Керує тим, де розташовуватиметься пояс. -waistbandShape: - title: Форма пояса - description: Чи Ви хочете прямий прямокутний чи вигнутий пояс. -circleRatio: - title: Відсоток кола - description: Відсоток кола, який Ви хочете для своєї спідниці-сонця. -waistbandOverlap: - title: Нашаровування пояса - description: Відсоток, за яким пояс нашаровуватиметься на основне полотнище спідниці. -gathering: - title: Збірки - description: Відсоток, наскільки верхівка спідниці довша за низ пояса. -seamlessFullCircle: - title: Безшовний повний круг - description: Дає змогу створити викрійку спідниці-сонця безшовним повним кругом. -hemWidth: - title: Ширина краю - description: Загальна ширина краю - diff --git a/packages/i18n/src/locales/uk/options/shin.yml b/packages/i18n/src/locales/uk/options/shin.yml deleted file mode 100644 index 5881911115d..00000000000 --- a/packages/i18n/src/locales/uk/options/shin.yml +++ /dev/null @@ -1,7 +0,0 @@ ---- -legReduction: - title: Зменшення радіусу штанини - description: Зменшує радіус штанини (шортини :)) задля кращого облягання -elasticWidth: - title: Ширина гумки - description: Контролює ширину гумки на талії diff --git a/packages/i18n/src/locales/uk/options/simon.yml b/packages/i18n/src/locales/uk/options/simon.yml deleted file mode 100644 index 87ddb687631..00000000000 --- a/packages/i18n/src/locales/uk/options/simon.yml +++ /dev/null @@ -1,136 +0,0 @@ ---- -backDarts: - title: Виточки на спині - description: Чи додавати виточки на спині - options: - auto: Автоматично - always: Завжди - never: Ніколи -backDartShaping: - title: Форма виточок на спині - description: Наскільки сильно виточки на спині впливають на загальну форму -barrelCuffNarrowButton: - title: Другий ґудзик на чохлі - description: Чи додавати другий ґудзик на чохлі/манжеті для більшого звуження. Цей варіант працює лише зі спортивним (італійським) манжетом. -boxPleat: - title: Бантова збірка - description: Чи додавати бантову складку на спині -boxPleatWidth: - title: Ширина бантової складки - description: Загальна ширина бантової складки -boxPleatFold: - title: Згин бантової складки - description: Кількість тканини, яка складається всередину при виконанні бантової складки -buttonPlacketStyle: - title: Стиль ґудзикового шліца - description: Стиль шліца, де розміщуються ґудзики. - options: - classic: Класичний - seamless: Французький (безшовний) -buttonPlacketWidth: - title: Ширина ґудзикового шліца - description: Загальна ширина ґудзикового шліца. -buttonFreeLength: - title: Довжина без ґудзиків - description: Довжина нижньої та верхньої частини шліца без ґудзиків. -buttonholePlacketFoldWidth: - title: Buttonhole placket fold width - description: Width of the buttonhole placket fold. -buttonholePlacketStyle: - title: Стиль діркового шліца - description: Стиль шліца, де розміщуються дірки для ґудзиків. - options: - classic: Класичний - seamless: Французький (безшовний) -buttonholePlacketWidth: - title: Ширина діркового шліца - description: Ширина шліца, де розміщуються дірки для ґудзиків. -buttons: - title: Кількість ґудзиків - description: Кількість ґудзиків на шліці. -collarAngle: - title: Кут коміра - description: Кут нахилу зрізів кінця коміра. -collarBend: - title: Вигин коміра - description: Крива вигину коміра. -collarFlare: - title: Загортання коміра - description: Наскільки краї біля зрізів кінця коміра завертатимуться до стійки. -collarGap: - title: Відступ коміра - description: Відступ між зрізами кінців коміра. -collarRoll: - title: Розмір відльоту коміра - description: Наскільки відліт коміра є більшим за стійку коміра. -collarStandBend: - title: Вигин стійки коміра - description: Вигин стійки коміра. -collarStandCurve: - title: Крива стійки коміра - description: Вектор кривої стійки коміра. -collarStandWidth: - title: Ширина стійки коміра - description: Ширина стійки коміра. -cuffButtonRows: - title: Рядки ґудзиків на чохлі - description: Чи додавати другий рядок ґудзиків на чохлі/манжеті. Це налаштування дійсне лише для спортивного (італійського) манжета. - options: - '1': Один рядок ґудзиків - '2': Два рядки ґудзиків -cuffDrape: - title: Збірка біля чохли - description: Наскільки ширшим є рукав відносно чохли у місці їх зметування. -cuffLength: - title: Довжина чохли - description: Загальна довжина чохли (манжета). -cuffStyle: - title: Стиль чохли - description: Стиль чохли (манжета). - options: - roundedBarrelCuff: Заокруглений спортивний (італійський) манжет - angledBarrelCuff: Скошений спортивний (італійський) манжет - straightBarrelCuff: Прямий спортивний (італійський) манжет - roundedFrenchCuff: Заокруглений подвійний (французький) манжет - angledFrenchCuff: Скоршений подвійний (французький) манжет - straightFrenchCuff: Прямий подвійний (французький) манжет -extraTopButton: - title: Додатковий верхній ґудзик - description: Чи додавати ще один ґудзик зверху шліца. -ffsa: - title: Flat-felled seam allowace - description: The amount of seam allowance on flet-felled seams as a proportion of the regular seam allowance -hemCurve: - title: Крива краю - description: Висота кривої вигнутого краю. -hemStyle: - title: Стиль краю - description: Стиль краю сорочки. - options: - straight: Прямий край - baseball: З боковими підйомами - slashed: З боковими вирізами -roundBack: - title: Заокруглена спина - description: Для (більш) заокруглених спин, це налаштування збільшує довжину спини (під кокеткою). Додаткова довжина поступово зменшується від центру до боків спинного полотнища. -seperateButtonholePlacket: - title: Окремий дірковий шліц - description: Шліц для дірок додається до викрійки як окрема частина. -seperateButtonPlacket: - title: Окремий ґудзиковий шліц - description: Шліц для ґудзиків додається до викрійки як окрема частина -sleevePlacketLength: - title: Довжина шліца на рукаві - description: Довжина шліца, що знаходиться на рукаві. -sleevePlacketWidth: - title: Ширина шліца на рукаві - description: Ширина шліца, що знаходиться на рукаві. -splitYoke: - title: Зшивна кокетка - description: Зшивна кокетка чи кокетка суцільного крою? -waistEase: - title: Свобода облягання на талії - description: Керує свободою облягання на талії. -yokeHeight: - title: Висота кокетки - description: Керує висотою кокетки diff --git a/packages/i18n/src/locales/uk/options/simone.yml b/packages/i18n/src/locales/uk/options/simone.yml deleted file mode 100644 index b43530ce71c..00000000000 --- a/packages/i18n/src/locales/uk/options/simone.yml +++ /dev/null @@ -1,23 +0,0 @@ ---- -bustAlignedButtons: - title: Ґудзики на грудях - description: Додаткові налаштування розміщення ґудзиків відносно грудей - options: - even: Рівномірно розміщені - split: Роздільно розміщені - disabled: Вимкнути -bustDartAngle: - title: Кут грудної виточки - description: Керує кутом, за яким бокова виточка на грудях нахиляється вниз -bustDartLength: - title: Довжина грудної виточки - description: Керує відстанню між кінцем грудної виточки та пипкою/центром грудей -contour: - title: Силует - description: Керує наскільки різко крива грудей йде до талії -frontDarts: - title: Передні виточки - description: Чи додавати виточки спереду сорочки -frontDartLength: - title: Довжина передніх виточок - description: Керує відстанню між кінцем передньої виточки та пипкою/центром грудей diff --git a/packages/i18n/src/locales/uk/options/sven.yml b/packages/i18n/src/locales/uk/options/sven.yml deleted file mode 100644 index 603e973ea41..00000000000 --- a/packages/i18n/src/locales/uk/options/sven.yml +++ /dev/null @@ -1,13 +0,0 @@ ---- -hipsEase: - title: Свобода облягання на стегнах - description: Керує кількістю свободи облягання на стегнах (низ светрика) -ribbing: - title: Гумка - description: Чи завершувати край та сохли гумкою. -ribbingHeight: - title: Висота гумки - description: Висота гумки на чохлах та краю светра. -ribbingStretch: - title: Еластичність гумки - description: Кількість від'ємної свободи облягання в гумці на чохлах та краю светра. diff --git a/packages/i18n/src/locales/uk/options/tamiko.yml b/packages/i18n/src/locales/uk/options/tamiko.yml deleted file mode 100644 index b18cadbf566..00000000000 --- a/packages/i18n/src/locales/uk/options/tamiko.yml +++ /dev/null @@ -1,10 +0,0 @@ ---- -flare: - title: Кльош - description: Керує кількістю тканини, що драпіруватиметься від грудей донизу -shoulderseamLength: - title: Довжина плечового шва - description: Загальна довжина плечового шва, залежить від виміру "ширина плечей" -shoulderSlope: - title: Нахил плеча - description: Керує кутом нахилу плечових швів diff --git a/packages/i18n/src/locales/uk/options/teagan.yml b/packages/i18n/src/locales/uk/options/teagan.yml deleted file mode 100644 index 9d4940f8a8a..00000000000 --- a/packages/i18n/src/locales/uk/options/teagan.yml +++ /dev/null @@ -1,19 +0,0 @@ ---- -draftForHighBust: - title: Креслення для нагруддя - description: Викрійка креслиться з урахуванням виміру "обхват над грудьми" (якщо такий є в профілі), а не за виміром "обхват грудей". Таким чином, виріб буде більш посадженим для людей з великими грудьми. -sleeveEase: - title: Свобода прилягання рукава - description: Змінити свободу прилягання рукавів -sleeveLength: - title: Довжина рукава - description: Змінити довжину рукавів -necklineBend: - title: Вигін горловини - description: Змінити лінію вигину горловини. -necklineDepth: - title: Глибина горловини - description: Змінити параметр того, як низько знаходиться горловина. -necklineWidth: - title: Ширина горловини - description: Змінити ширину горловини. diff --git a/packages/i18n/src/locales/uk/options/theo.yml b/packages/i18n/src/locales/uk/options/theo.yml deleted file mode 100644 index 187febebae3..00000000000 --- a/packages/i18n/src/locales/uk/options/theo.yml +++ /dev/null @@ -1,7 +0,0 @@ ---- -wedge: - title: Пах - description: Керує довжиною центрального пахового шва -legWidth: - title: Ширина холоші - description: Керує шириною холош (штанин) diff --git a/packages/i18n/src/locales/uk/options/tiberius.yml b/packages/i18n/src/locales/uk/options/tiberius.yml deleted file mode 100644 index 28087b0fb43..00000000000 --- a/packages/i18n/src/locales/uk/options/tiberius.yml +++ /dev/null @@ -1,39 +0,0 @@ ---- -headRatio: - title: Ширина горловини - description: Керує шириною пройми для голови -armholeDrop: - title: Спуск пройми - description: Керує глибиною/довжиною пройми для руки -lengthBonus: - title: Додаткова довжина - description: Дозволяє керувати загальною довжиною виробу -widthBonus: - title: Додаткова ширина - description: Дозволяє керувати загальною шириною виробу -clavi: - title: Клав - description: Чи додавати вказівні лінії для клаву -clavusLocation: - title: Розташування клавів - description: Керує розташування клавів -clavusWidth: - title: Ширина клавів - description: Керує шириною клавів -length: - title: Довжина - description: Керує загальною довжиною виробу - options: - toKnee: До коліна - toMidLeg: До стегна - toFloor: До підлоги -width: - title: Ширина - description: Керує загальною шириною виробу - options: - toElbow: До ліктя - toShoulder: До плечового суглоба - toMidArm: До плеча (руки) -forceWidth: - title: Примусова ширина - description: Застосувати налаштування ширини незалежно від обмежень diff --git a/packages/i18n/src/locales/uk/options/titan.yml b/packages/i18n/src/locales/uk/options/titan.yml deleted file mode 100644 index 71282d0ceb8..00000000000 --- a/packages/i18n/src/locales/uk/options/titan.yml +++ /dev/null @@ -1,46 +0,0 @@ ---- -kneeEase: - title: Свобода на коліні - description: Керує свободою облягання на коліні -waistHeight: - title: Висота пояса - description: Керує тим, як високо розташовуватиметься пояс, 100% = на талії, 0% = на кульші/тазі -lengthBonus: - title: Додаткова довжина - description: Керує довжиною штанів -crotchDrop: - title: Посадка - description: Це налаштування спускає посадку для більшої свободи облягання в області паху -fitKnee: - title: Облягання коліна - description: Ногавиця будується на основі виміру "обхват коліна", аніж "обхват стегон" -legBalance: - title: Співвідношення ногавиць - description: Керує співвідношенням між переднім та заднім полотнищами ногавиці -crossSeamCurveStart: - title: Початок кривої посадки - description: Керує відстанню, після якої починається вигин посадки/повного пахового шва -crossSeamCurveBend: - title: Вигин посадки - description: Керує самим вигином посадки/повного пахового шва -crossSeamCurveAngle: - title: Кут посадки - description: Керує кутом нахилу посадки/повного пахового шва -crotchSeamCurveStart: - title: Start of the crotch seam curve - description: Controls how far into the crotch seam we start to curve -crotchSeamCurveBend: - title: Crotch seam bend - description: Controls the curvature of the crotch seam -crotchSeamCurveAngle: - title: Crotch seam angle - description: Controls the angle of the crotch seam -waistBalance: - title: Співвідношення пояса - description: Керує горизонтальним положенням пояса/талії відносно до стегон -waistbandWidth: - title: Ширина пояса - description: Загальна ширина пояса -grainlinePosition: - title: Розташування лінії зерна тканини - description: Керує горизонтальним положенням ногавиці відносно до стегон/посадки diff --git a/packages/i18n/src/locales/uk/options/trayvon.yml b/packages/i18n/src/locales/uk/options/trayvon.yml deleted file mode 100644 index 188a80ff394..00000000000 --- a/packages/i18n/src/locales/uk/options/trayvon.yml +++ /dev/null @@ -1,7 +0,0 @@ ---- -tipWidth: - title: Ширина кута - description: Керує шириною кута краватки -knotWidth: - title: Ширина вузлика - description: Керує шириною краватки у зоні вузла diff --git a/packages/i18n/src/locales/uk/options/unice.yml b/packages/i18n/src/locales/uk/options/unice.yml deleted file mode 100644 index 9dd4d4a27f8..00000000000 --- a/packages/i18n/src/locales/uk/options/unice.yml +++ /dev/null @@ -1,13 +0,0 @@ -fabricStretchX: - title: Еластичність тканини (горизонтальна) - description: Налаштуйте це для більш або менш еластичних тканин -fabricStretchY: - title: Еластичність тканини (вертикальна) - description: Налаштуйте це для більш або менш еластичних тканин -adjustStretch: - title: Налаштувати розтягування - description: За допомогою цього параметру можна задати максимальне розтягування, яке дозволяє тканина у горизонтальному та вертикальному напрямках; Якщо параметр вимкнено, використовуються базові значення розтягування -useCrossSeam: - title: Використати довжину посадки - description: Якщо увімкнути, загальна висота елементів викрійки буде дорівнювати довжині посадки не включаючи переднє і заднє збільшення довжини. Якщо вимкнути, загальна висота буде залежати від параметра довжини ластовиці. - diff --git a/packages/i18n/src/locales/uk/options/ursula.yml b/packages/i18n/src/locales/uk/options/ursula.yml deleted file mode 100644 index 3e8e600f1fd..00000000000 --- a/packages/i18n/src/locales/uk/options/ursula.yml +++ /dev/null @@ -1,34 +0,0 @@ ---- -fabricStretch: - title: Еластичність тканини - description: Налаштуйте це для більш або менш еластичних тканин -gussetWidth: - title: Ширина ластовиці - description: Керує шириною ластовиці -gussetLength: - title: Довжина ластовиці - description: Керує довжиною ластовиці -elasticStretch: - title: Еластичність гумки - description: Налаштуйте це для більш або менш еластичної гумки -rise: - title: Посадка - description: Керує висотою посадки -legOpening: - title: Пройма ноги - description: Керує наскільки високо підіймається пройма ноги -frontDip: - title: Передній вигин пояса - description: Керує наскільки крутим є передній вигин пояса (більше чи менше відкритої шкіри) -backDip: - title: Задній вигин пояса - description: Керує наскільки крутим є задній вигин пояса (більше чи менше відкритої шкіри) -taperToGusset: - title: Переднє відкриття - description: Керує кількістю відкритої шкіри спереду (біля ніжних пройм) -backExposure: - title: Заднє відкриття - description: Керує кількістю відкритої шкіри ззаду (біля ніжних пройм) - - - diff --git a/packages/i18n/src/locales/uk/options/wahid.yml b/packages/i18n/src/locales/uk/options/wahid.yml deleted file mode 100644 index 68863a96ffa..00000000000 --- a/packages/i18n/src/locales/uk/options/wahid.yml +++ /dev/null @@ -1,43 +0,0 @@ ---- -backScyeDart: - title: Задня виточка пройми руки - description: Керує зменшенням виточки на задній частині пройми. -frontScyeDart: - title: Передня виточка пройми руки - description: Керує зменшенням виточки на передній частині пройми. -pocketLocation: - title: Положення кишені - description: Керує розташуванням кишені -pocketWidth: - title: Ширина кишені - description: Керує шириною кишені -weltHeight: - title: Висота листочки - description: Керує висотою листочки -necklineDrop: - title: Спуск горловини - description: Керує спуском горловини спереду -frontStyle: - title: Стиль горловини - description: Визначає стиль горловини -hemStyle: - title: Стиль краю - description: Визначає стиль переднього краю -hemRadius: - title: Радіус краю - description: Керує радіусом заокруглення краю -backInset: - title: Задній виріз рукава - description: Керує величиною вирізу рукава ззаду -frontInset: - title: Передній виріз рукава - description: Керує величиною вирізу рукава спереду -shoulderInset: - title: Ширина плечового шва від руки - description: Змінює ширину плечового шва зі сторони рукава -neckInset: - title: Ширина горловини - description: Змінює ширину плечового шва зі сторони шиї -pocketAngle: - title: Кут кишені - description: Кут нахилу кишені diff --git a/packages/i18n/src/locales/uk/options/walburga.yml b/packages/i18n/src/locales/uk/options/walburga.yml deleted file mode 100644 index d1805148f8c..00000000000 --- a/packages/i18n/src/locales/uk/options/walburga.yml +++ /dev/null @@ -1,23 +0,0 @@ ---- -headRatio: - title: Розмір горловини - description: Керує шириною пройми для голови -lengthBonus: - title: Додаткова довжина - description: Дозволяє керувати загальною довжиною виробу -widthBonus: - title: Додаткова ширина - description: Дозволяє керувати загальною шириною виробу -length: - title: Довжина - description: Керує довжиною виробу - options: - toKnee: До коліна - toMidLeg: До стегна - toFloor: До підлоги -neckoRatio: - title: Стиль горловини - description: керує формою горловини -neckline: - title: Горловина - description: Чи додавати до виробу горловину diff --git a/packages/i18n/src/locales/uk/options/waralee.yml b/packages/i18n/src/locales/uk/options/waralee.yml deleted file mode 100644 index 62df7642eee..00000000000 --- a/packages/i18n/src/locales/uk/options/waralee.yml +++ /dev/null @@ -1,44 +0,0 @@ ---- -backPocket: - title: Задня кишеня - description: Чи додавати кишеню ззаду -frontPocket: - title: Передня кишеня - description: Чи додавати кишеню спереду -hemWidth: - title: Розмір краю - description: Керує шириною краю знизу штанин -waistbandWidth: - title: Пояс - description: Розмір пояса -waistRaise: - title: Висота посадки - description: Визначає, наскільки високою буде посадка. -crotchBack: - title: Посадка ззаду - description: Вільність посадки ззаду. Створює більше або менше місця між боковим швом та задом. -crotchFront: - title: Посадка спереду - description: Вільність посадки спереду. Створює більше або менше місця між боковим швом та передом. -crotchFactorBackHor: - title: Горизонтальність посадки на сідницях - description: Робить криву шва на сідницях прямою (горизонтально) -crotchFactorBackVer: - title: Вертикальність посадки на сідницях - description: Робить криву шва на сідницях прямою (вертикально) -crotchFactorFrontHor: - title: Горизонтальність посадки на животі - description: Робить криву шва на животі прямою (горизонтально) -crotchFactorFrontVer: - title: Вертикальність посадки на животі - description: Робить криву шва на животі прямою (вертикально) -waistOverlap: - title: Запах на талії - description: Керує тим, наскільки частини штанини нашаровуються. При 0% частини зустрічаються по зовнішнім бокам, при 100% вони зустрічаються на внутрішній стороні. -legShortening: - title: Довжина штанин - description: Керує довжиною штанин. Чим більше показник, тим коротше штанина. -backRaise: - title: Посадка ззаду - description: Визначає наскільки високо сидять штани ззаду. - diff --git a/packages/i18n/src/locales/uk/parts.yaml b/packages/i18n/src/locales/uk/parts.yaml deleted file mode 100644 index 86e76591dd4..00000000000 --- a/packages/i18n/src/locales/uk/parts.yaml +++ /dev/null @@ -1,58 +0,0 @@ ---- -back: Спина -backBase: Основа спинки -backPocketWelt: Листочка задньої кишені -base: Основа -bentBack: Спина Бент -bentBase: Основа Бент -bentFront: Перед Бент -bentSleeve: Рукав Бент -bentTopSleeve: Верх рукава Бент -bentUnderSleeve: Низ рукава Бент -buttonholePlacket: Шліц під отвір для ґудзика -buttonPlacket: Шліц під ґудзик -collar: Комір -collarStand: Стійка під комір -cuff: Манжет -fabricTail: Деталь хвоста -fabricTip: Деталь кута -frontBase: Низ переду -frontFacing: Лицьовий бік -front: Переднє полотнище -frontLeft: Лівий бік переду -frontLining: Перед підкладки -frontRight: Правий бік переду -gusset: Ластовиця -hoodCenter: Центр капюшону -hood: Капюшон -hoodSide: Сторона капюшону -inset: Виріз пройми -interfacingTail: Деблерінова деталь хвоста -interfacingTip: Дублерінова деталь кута -liningTail: Деталь підкладки хвоста -liningTip: Деталь підкладки кута -loop: Петелька -panel1: Панель 1 -panel2: Панель 2 -panel3: Панель 3 -panel4: Панель 4 -panel5: Панель 5 -panel6: Панель 6 -panels: Панелі -pocketBag: Мішковина кишені -pocketFacing: Зовнішня частина кишені -pocketInterfacing: Деталь кишені з флізеліну -pocket: Кишеня -pocketWelt: Кишенькова листочка -side: Бік -sleeveBase: Основа рукава -sleevecap: Окат рукава -sleevePlacketOverlap: Верхня деталь шліца рукава -sleevePlacketUnderlap: Нижня деталь шліца рукава -sleeve: Рукав -topSleeve: Верх рукава -top: Верх -underCollar: Підборт -underSleeve: Низ рукава -waistband: Резинка на талії -yoke: Кокетка diff --git a/packages/i18n/src/locales/uk/plugin/patterns/aaron.yaml b/packages/i18n/src/locales/uk/plugin/patterns/aaron.yaml deleted file mode 100644 index 5353abebd67..00000000000 --- a/packages/i18n/src/locales/uk/plugin/patterns/aaron.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -cutOneStripToFinishTheNeckOpening: Виріжте одну смугу для обробки горловини -cutTwoStripsToFinishTheArmholes: Виріжте дві смуги для обробки пройми -length: Довжина -width: Ширина diff --git a/packages/i18n/src/locales/uk/plugin/patterns/brian.yaml b/packages/i18n/src/locales/uk/plugin/patterns/brian.yaml deleted file mode 100644 index 4f1941f8a7e..00000000000 --- a/packages/i18n/src/locales/uk/plugin/patterns/brian.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -back: Зад -front: Перед -sleeve: Рукав diff --git a/packages/i18n/src/locales/uk/plugin/patterns/bruce.yaml b/packages/i18n/src/locales/uk/plugin/patterns/bruce.yaml deleted file mode 100644 index e92493be5b7..00000000000 --- a/packages/i18n/src/locales/uk/plugin/patterns/bruce.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -inset: Виріз пройми -side: Бік diff --git a/packages/i18n/src/locales/uk/plugin/patterns/cfp.yaml b/packages/i18n/src/locales/uk/plugin/patterns/cfp.yaml deleted file mode 100644 index 24e032f612e..00000000000 --- a/packages/i18n/src/locales/uk/plugin/patterns/cfp.yaml +++ /dev/null @@ -1,2 +0,0 @@ ---- -hello: Привіт diff --git a/packages/i18n/src/locales/uk/plugin/patterns/cornelius.yaml b/packages/i18n/src/locales/uk/plugin/patterns/cornelius.yaml deleted file mode 100644 index 19d64b6bfcf..00000000000 --- a/packages/i18n/src/locales/uk/plugin/patterns/cornelius.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -Vent: Виріз -PocketFacing: Зовнішня частина кишені diff --git a/packages/i18n/src/locales/uk/plugin/patterns/hortensia.yaml b/packages/i18n/src/locales/uk/plugin/patterns/hortensia.yaml deleted file mode 100644 index 8a9cb81dd01..00000000000 --- a/packages/i18n/src/locales/uk/plugin/patterns/hortensia.yaml +++ /dev/null @@ -1,10 +0,0 @@ ---- -SidePanel: Бокова панель -FrontBackPanel: Передня та задня панель -BottomPanel: Нижня панель -ZipperPanel: Панель під блискавку -Strap: Ручка -strapLength: Довжина ручок -handleWidth: Ширина ручок -zipperSize: Стандартний розмір блискавки -SidePanelReinforcement: Бокова підкріплююча панель diff --git a/packages/i18n/src/locales/uk/plugin/patterns/hugo.yaml b/packages/i18n/src/locales/uk/plugin/patterns/hugo.yaml deleted file mode 100644 index d799a46aab1..00000000000 --- a/packages/i18n/src/locales/uk/plugin/patterns/hugo.yaml +++ /dev/null @@ -1,7 +0,0 @@ ---- -cuff: Манжет -hoodCenter: Центр капюшону -hoodSide: Бік капюшону -pocketFacing: Зовнішня частина кишені -pocket: Кишеня -waistband: Резинка на талії diff --git a/packages/i18n/src/locales/uk/plugin/patterns/simon.yaml b/packages/i18n/src/locales/uk/plugin/patterns/simon.yaml deleted file mode 100644 index 72254576cfa..00000000000 --- a/packages/i18n/src/locales/uk/plugin/patterns/simon.yaml +++ /dev/null @@ -1,13 +0,0 @@ ---- -buttonholePlacket: Шліц під отвір для ґудзика -buttonPlacket: Шліц під ґудзик -collarAndUndercollar: Комір та Внутрішній комір -collarStand: Стійка під комір -cutUndercollarSlightlySmaller: Виріжте внутрішню частину коміру трошки меншою -frontLeft: Перед зліва -frontRight: Перед справа -sideOfTheCollarStand: Бік стійки під комір -sleevePlacketOverlap: Верхня деталь шліца рукава -sleevePlacketUnderlap: Нижня деталь шліца рукава -yoke: Кокетка -matchHere: З'єднайте візерунок тканини по цій лінії diff --git a/packages/i18n/src/locales/uk/plugin/patterns/teagan.yaml b/packages/i18n/src/locales/uk/plugin/patterns/teagan.yaml deleted file mode 100644 index 8ade8b05699..00000000000 --- a/packages/i18n/src/locales/uk/plugin/patterns/teagan.yaml +++ /dev/null @@ -1,2 +0,0 @@ ---- -fullLengthFromHps: Повна довжина (від ВТП) diff --git a/packages/i18n/src/locales/uk/plugin/patterns/ursula.yaml b/packages/i18n/src/locales/uk/plugin/patterns/ursula.yaml deleted file mode 100644 index 5296ef46d12..00000000000 --- a/packages/i18n/src/locales/uk/plugin/patterns/ursula.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -cutTwoPiecesOfElasticToFinishTheLegOpenings: Виріжте два шматочки гумки (резинки) щоб завершити зріз низу -cutOnePieceOfElasticToFinishTheWaistBand: Виріжте один шматок гумки (резинки) щоб завершити пояс diff --git a/packages/i18n/src/locales/uk/plugin/plugins/cutlist.yaml b/packages/i18n/src/locales/uk/plugin/plugins/cutlist.yaml deleted file mode 100644 index 103bc6c1e35..00000000000 --- a/packages/i18n/src/locales/uk/plugin/plugins/cutlist.yaml +++ /dev/null @@ -1,16 +0,0 @@ -canvas: Canvas -cut: Cut -cuttingLayout: Suggested Cutting Layout -fabric: Main Fabric -fabricSize: "{length} of {width} wide material" -heavyCanvas: Heavy Canvas -interfacing: Interfacing -lining: Lining -lmhCanvas: Light to Medium Hair Canvas -mirrored: mirrored -onFoldLower: on the fold -onFoldAndBias: folded on the bias -onBias: on the bias -plastic: Plastic -ribbing: Ribbing -edgeOfFabric: Edge of Fabric diff --git a/packages/i18n/src/locales/uk/plugin/plugins/cutonfold.yaml b/packages/i18n/src/locales/uk/plugin/plugins/cutonfold.yaml deleted file mode 100644 index 72276187e30..00000000000 --- a/packages/i18n/src/locales/uk/plugin/plugins/cutonfold.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -cutOnFoldAndGrainline: Розрізати у зігнутому вигляді / Нитка основи -cutOnFold: Розрізати у зігнутому вигляді diff --git a/packages/i18n/src/locales/uk/plugin/plugins/grainline.yaml b/packages/i18n/src/locales/uk/plugin/plugins/grainline.yaml deleted file mode 100644 index e49a2d93f3a..00000000000 --- a/packages/i18n/src/locales/uk/plugin/plugins/grainline.yaml +++ /dev/null @@ -1,2 +0,0 @@ ---- -grainline: Нитка основи diff --git a/packages/i18n/src/locales/uk/plugin/plugins/scalebox.yaml b/packages/i18n/src/locales/uk/plugin/plugins/scalebox.yaml deleted file mode 100644 index 328188e5348..00000000000 --- a/packages/i18n/src/locales/uk/plugin/plugins/scalebox.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -theBlackOutsideOfThisBoxShouldMeasure: Зовнішня сторона цієї коробки має бути -theWhiteInsideOfThisBoxShouldMeasure: Внутрішня сторона цієї коробки має бути -supportFreesewingBecomeAPatron: Підтримайте FreeSewing, станьте Патроном diff --git a/packages/i18n/src/locales/uk/plugin/plugins/title.yaml b/packages/i18n/src/locales/uk/plugin/plugins/title.yaml deleted file mode 100644 index 2b58a808c0d..00000000000 --- a/packages/i18n/src/locales/uk/plugin/plugins/title.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -cut: Вирізати -onFold: У зігнутому вигляді diff --git a/packages/i18n/src/locales/uk/settings.yml b/packages/i18n/src/locales/uk/settings.yml deleted file mode 100644 index 21ac2b53c0c..00000000000 --- a/packages/i18n/src/locales/uk/settings.yml +++ /dev/null @@ -1,44 +0,0 @@ ---- -advanced: - title: Режим фахівця - description: Визначає показ додаткових налаштувань та налаштувань викрійки -paperless: - title: Без паперу - description: Створює викрійку з урахуванням масштабу для перенесення на тканину чи інший матеріал без потреби друку -sabool: - title: Враховувати припуски на шви - description: Керує наявністю припусків на шви в Вашій викрійці -sa: - title: Розмір припусків на шви - description: Визначає розмір припусків на шви в Вашій викрійці -locale: - title: Мова - description: Визначає мову на викрійці -only: - title: Зміст - description: Дозволяє керувати тим, які елементи викрійки відображуватимуться на Вашій викрійці -units: - title: Одиниці вимірювання - description: Керує одиницями вимірювання на викрійці -margin: - title: Відступ - description: Контролює відступ навколо елементів викрійки -complete: - title: Подробиці - description: 'Керує докладність викрійки: відображувати повноцінну викрійку з усіма подробицями чи лише основний контур елементів викрійки' -layout: - title: Макет - description: Керує подальше розташування окремих елементів викрійки на матеріалі -debug: - title: Налагодження - description: Увімкнути налагодження для отримання додаткової інформації щодо способу створення викрійки -scale: - title: Масштаб - description: Керує ширину контуру, кегль шрифту та інші елементи, які не масштабуються відповідно до замірів викрійки -renderer: - title: Двигун відтворювання - description: Керує відтворення викрійки на екрані -xray: - title: Рентген - description: Зазирніть за лаштунки з рентгенівським режимом FreeSewing - diff --git a/packages/i18n/src/locales/uk/susi.yaml b/packages/i18n/src/locales/uk/susi.yaml deleted file mode 100644 index faaba1ffb2d..00000000000 --- a/packages/i18n/src/locales/uk/susi.yaml +++ /dev/null @@ -1,16 +0,0 @@ -joinFreeSewing: Приєднатися до FreeSewing -toReceiveSignupLink: Щоб отримати посилання для реєстрації, введіть свою адресу електронної пошти -emailAddress: Адреса електронної пошти -pleaseProvideValidEmail: Будь ласка, вкажіть дійсну e-mail адресу -emailSignupLink: Надішліть мені посилання для реєстрації -alreadyHaveAnAccount: Вже маєте обліковий запис? -dontHaveAnAccount: Ще не зареєстровані? -signIn: Вхід -signInHere: Увійдіть тут -signUpHere: Зареєструйтеся тут -emailUsernameId: Адреса ел. пошти, ім'я користувача чи ID користувача -welcomeName: 'Ласкаво просимо, { name }' -password: Пароль -processing: Обробляється -emailSent: Лист відправлено -somethingWentWrong: Щось пішло не так diff --git a/packages/i18n/src/locales/uk/welcome.yaml b/packages/i18n/src/locales/uk/welcome.yaml deleted file mode 100644 index f78c78aa22a..00000000000 --- a/packages/i18n/src/locales/uk/welcome.yaml +++ /dev/null @@ -1,10 +0,0 @@ ---- -units: Оберіть одиниці, які Ви хочете використовувати -username: Оберіть ім'я користувача -avatar: Додайте зображення профілю -bio: Розкажіть нам трохи про себе -social: Дайте нам знати, де ми можемо слідкувати за Вами -newsletter: Надайте нам свої налаштування для розсилки -letUsSetupYourAccount: Давайте налаштуємо Ваш обліковий запис. -walkYouThrough: "Ми допоможемо Вам пройти наступні етапи:" -someOptional: Хоча всі ці етапи необов'язкові, ми рекомендуємо Вам пройти їх, щоб отримати максимум користі від FreeSewing. diff --git a/packages/i18n/src/prebuild.mjs b/packages/i18n/src/prebuild.mjs deleted file mode 100644 index a8643ba32ca..00000000000 --- a/packages/i18n/src/prebuild.mjs +++ /dev/null @@ -1,198 +0,0 @@ -import yaml from 'js-yaml' -import path from 'node:path' -import rdir from 'recursive-readdir' -import { readFile, writeFile, mkdir } from 'node:fs/promises' -import { fileURLToPath } from 'node:url' -import { dirname } from 'node:path' - -// No __dirname in Node 14 -const __filename = fileURLToPath(import.meta.url) -const __dirname = dirname(__filename) - -/* - * Helper method to get a list of yaml/yml files. - * Will traverse recursively to get all files from the current folder - */ -const getTranslationFileList = async () => { - let allFiles - try { - allFiles = await rdir(path.resolve(__dirname, 'locales')) - } catch (err) { - console.log(err) - return false - } - - // Filter out all that's a .yaml or .yml file - const files = [] - for (const file of allFiles) { - if (file.slice(-5) === `.yaml` || file.slice(-4) === `.yml`) { - files.push(file) - } - } - - return files.sort() -} - -/** extracts the locale from the file name */ -const localeFromFileName = (fileName) => { - const split1 = fileName.split(`${path.sep}locales${path.sep}`).pop() - return split1.split(`${path.sep}`).shift() -} - -/* - * Figures out the list of locales from the list of files - * (by checking how many version of aaron.yaml exist) - */ -const getLocalesFromFileList = (files) => - files.filter((file) => file.slice(-10) === 'aaron.yaml').map(localeFromFileName) - -// Helper method to see if a dir occurs in a full path -const pathContains = (fullPath, dir) => fullPath.indexOf(`${path.sep}${dir}${path.sep}`) !== -1 - -/* - * Determines the namespace name based on the file path - */ -const namespaceFromFile = (file) => { - const ext = path.extname(file) - const name = path.basename(file, ext) - - //if (pathContains(file, 'components')) return 'c_' + name - if (pathContains(file, 'options')) return 'o_' + name - if (pathContains(file, 'plugin')) return 'plugin' - - return name -} - -/* - * This method flattens a .yml files with a structure like: - * key: - * title: - * description: - * options; (this one is not always present) - */ -const flattenYml = (content) => { - const flat = {} - for (const l1 in content) { - flat[`${l1}.t`] = content[l1].title - flat[`${l1}.d`] = content[l1].description - } - - return flat -} - -/* - * Loads and parses a translation file, making sure to - * handle nested keys in .yml files - */ -const loadTranslationFile = async (file) => { - const data = yaml.load(await readFile(file, { encoding: 'utf-8' })) - - return path.extname(file) === '.yml' ? flattenYml(data) : data -} - -/* - * Creates an object with namespaces and the YAML/YML files - * that go with them - */ -const getNamespacesFromFileList = async (files, locales, only = false) => { - const namespaces = {} - for (var i = 0; i < files.length; i++) { - let file = files[i] - - let loc = localeFromFileName(file) - if (locales.indexOf(loc) === -1) continue - - let namespace = namespaceFromFile(file) - if (only === true && only.indexOf(namespace) === -1) continue - - if (typeof namespaces[loc] === 'undefined') { - namespaces[loc] = {} - } - - if (typeof namespaces[loc][namespace] === 'undefined') { - namespaces[loc][namespace] = {} - } - - namespaces[loc][namespace] = { - ...namespaces[loc][namespace], - ...(await loadTranslationFile(file)), - } - } - - return namespaces -} - -const header = `/* - * This file is auto-generated by the build script - * All edits will be overwritten on the next build - */` -const namespaceFile = (name, data) => `${header} -const ${name} = ${JSON.stringify(data, null, 2)} - -export default ${name} -` -const localeFile = (namespaces) => `${header} -${namespaces.map((ns) => 'import ' + ns + ' from "./' + ns + '.mjs"').join('\n')} - -const allNamespaces = { - ${namespaces.join(',\n ')} -} - -export default allNamespaces -` -const indexFile = (locales, data) => `${header} -${locales.map((l) => 'import ' + l + 'Namespaces from "./next/' + l + '/index.mjs"').join('\n')} - -${locales.map((l) => 'export const ' + l + ' = ' + l + 'Namespaces').join('\n')} - -export const languages = { -${locales.map((l) => ' ' + l + ': "' + data[l].i18n[l] + '"').join(',\n')} -} -` - -/* - * Writes out files - */ -const writeFiles = async (allNamespaces) => { - const filePromises = [] - const dist = path.resolve(__dirname, '..', 'dist') - - for (const [locale, namespaces] of Object.entries(allNamespaces)) { - // make sure there's a folder for the locale - await mkdir(path.resolve(dist, locale), { recursive: true }) - - for (const [namespace, data] of Object.entries(namespaces)) { - filePromises.push( - writeFile(path.resolve(dist, locale, namespace + '.mjs'), namespaceFile(namespace, data)) - ) - } - // Locale index files - filePromises.push( - writeFile(path.resolve(dist, locale, 'index.mjs'), localeFile(Object.keys(namespaces))) - ) - } - // Locale index files - filePromises.push( - writeFile(path.resolve(dist, 'index.mjs'), indexFile(Object.keys(allNamespaces), allNamespaces)) - ) - - // write the files - await Promise.all(filePromises) - - return -} - -/* - * Turns YAML translation files into JS - */ -export const build = async (localeFilter = () => true, only = false) => { - const files = await getTranslationFileList() - const locales = getLocalesFromFileList(files).filter(localeFilter) - console.log('building i18n for', locales) - const namespaces = await getNamespacesFromFileList(files, locales, only) - - await writeFiles(namespaces) - return namespaces -} - -//export default strings diff --git a/packages/i18n/src/shared-options.yml b/packages/i18n/src/shared-options.yml deleted file mode 100644 index 4558ecfe8d1..00000000000 --- a/packages/i18n/src/shared-options.yml +++ /dev/null @@ -1,196 +0,0 @@ -aaron: - dflt: brian - other: - draftForHighBust: teagan -benjamin: - dflt: brian -bent: - dflt: brian - other: - draftForHighBust: teagan -breanna: - dflt: brian - other: - frontScyeDart: wahid -carlton: - dflt: brian - other: - sleeveBend: bent - waistEase: simon - frontOverlap: jaeger - lapelReduction: jaeger - sleevecapHeight: bent - pocketWidth: wahid - pocketHeight: huey - cuffLength: simon - collarSpread: jaeger - collarFlare: simon - chestPocketWidth: jaeger - chestPocketPlacement: jaeger - chestPocketAngle: jaeger - innerPocketPlacement: jaeger - innerPocketWidth: jaeger - innerPocketDepth: jaeger - innerPocketWeltHeight: jaeger - draftForHighBust: teagan -carlita: - dflt: brian - other: - sleeveBend: bent - waistEase: simon - frontOverlap: jaeger - lapelReduction: jaeger - sleevecapHeight: bent - pocketWidth: wahid - pocketHeight: huey - cuffLength: simon - collarSpread: jaeger - collarFlare: simon - chestPocketWidth: jaeger - chestPocketPlacement: jaeger - chestPocketAngle: jaeger - innerPocketPlacement: jaeger - innerPocketWidth: jaeger - innerPocketDepth: jaeger - innerPocketWeltHeight: jaeger - seatEase: carlton - pocketPlacementHorizontal: carlton - pocketPlacementVertical: carlton - collarHeight: carlton - length: carlton - pocketFlapRadius: carlton - pocketRadius: carlton - chestPocketHeight: carlton - beltWidth: carlton - buttonSpacingHorizontal: carlton - draftForHighBust: teagan -charlie: - dflt: titan - other: - seatEase: penelope - waistEase: penelope -diana: - dflt: brian - other: - waistEase: breanna - hipsEase: aaron - draftForHighBust: teagan -huey: - dflt: brian - other: - ribbing: sven - ribbingHeight: sven - ribbingStretch: sven - waistEase: simon - hipsEase: aaron - pocketWidth: wahid - draftForHighBust: teagan -hugo: - dflt: brian - other: - ribbingHeight: sven - ribbingStretch: sven - draftForHighBust: teagan -jaeger: - dflt: brian - other: - hipsEase: aaron - waistEase: simon - sleeveBend: bent - sleevecapHeight: bent - buttons: simon - collarRoll: simon - draftForHighBust: teagan -paco: - dflt: titan - other: - seatEase: penelope - waistEase: penelope -sandy: - dflt: brian -shin: - dflt: bruce - other: - legBonus: bruce - lengthBonus: brian -simon: - dflt: brian - other: - hipsEase: aaron - draftForHighBust: teagan -simone: - dflt: simon - other: - acrossBackFactor: brian - armholeDepthFactor: brian - backNeckCutout: brian - bicepsEase: brian - chestEase: brian - collarEase: brian - cuffEase: brian - frontArmholeDeeper: brian - hipsEase: aaron - lengthBonus: brian - s3Armhole: brian - s3Collar: brian - shoulderEase: brian - shoulderSlopeReduction: brian - sleevecapEase: brian - sleevecapTopFactorX: brian - sleevecapTopFactorY: brian - sleevecapBackFactorX: brian - sleevecapBackFactorY: brian - sleevecapFrontFactorX: brian - sleevecapFrontFactorY: brian - sleevecapQ1Offset: brian - sleevecapQ2Offset: brian - sleevecapQ3Offset: brian - sleevecapQ4Offset: brian - sleeveLengthBonus: brian - sleevecapQ1Spread1: brian - sleevecapQ1Spread2: brian - sleevecapQ2Spread1: brian - sleevecapQ2Spread2: brian - sleevecapQ3Spread1: brian - sleevecapQ3Spread2: brian - sleevecapQ4Spread1: brian - sleevecapQ4Spread2: brian - sleeveWidthGuarantee: brian - draftForHighBust: teagan -sven: - dflt: brian - other: - draftForHighBust: teagan -tamiko: - dflt: brian - other: - draftForHighBust: teagan -teagan: - dflt: brian - other: - hipsEase: aaron -theo: - dflt: bruce - other: - waistbandWidth: sandy - lengthBonus: brian -titan: - dflt: penelope -trayvon: - dflt: brian -unice: - dflt: ursula -wahid: - dflt: brian - other: - hipsEase: aaron - waistEase: simon - centerBackDart: jaeger - buttons: simon - draftForHighBust: teagan -yuri: - dflt: brian - other: - hipsEase: hugo - draftForHighBust: teagan - diff --git a/packages/i18n/tests/i18n.test.mjs b/packages/i18n/tests/i18n.test.mjs deleted file mode 100644 index 22207019b47..00000000000 --- a/packages/i18n/tests/i18n.test.mjs +++ /dev/null @@ -1,53 +0,0 @@ -import chai from 'chai' -import * as i18n from '../prebuild/strings.js' - -const expect = chai.expect - -const languages = [ - { - name: 'English', - strings: i18n.en, - }, - { - name: 'German', - strings: i18n.de, - }, - { - name: 'Spanish', - strings: i18n.es, - }, - { - name: 'French', - strings: i18n.fr, - }, - { - name: 'Dutch', - strings: i18n.nl, - }, -] - -function checkTranslations(from, to) { - const translated = to.strings - for (const string in from.strings) { - if (typeof translated[string] === 'undefined') { - console.log(`String ${string} in ${from.name} is not available in ${to.name}`) - } - expect(typeof translated[string]).to.equal('string') - } -} - -for (let language of languages) { - if (language.name !== 'English') { - it(`All English strings should be translated to ${language.name}`, () => { - checkTranslations(languages[0], language) - }) - } -} - -for (let language of languages) { - if (language.name !== 'English') { - it(`All ${language.name} strings should be available in English`, () => { - checkTranslations(language, languages[0]) - }) - } -} diff --git a/packages/new-design/i18n/de.json b/packages/new-design/i18n/de.json new file mode 100644 index 00000000000..b3cc426ecd0 --- /dev/null +++ b/packages/new-design/i18n/de.json @@ -0,0 +1,34 @@ +{ + "author": "Autor", + "githubRepo": "GitHub-Repository", + "packageManager": "Paket-Manager", + "patternName": "Schnittmuster-Name", + "patternType": "Schnittmuster-Art", + "patternCreated": "Dein Schnittmusterskelett wurde erstellt in", + "runTheseCommands": "Um loszulegen, führe diesen Befehl aus", + "startRollup": "In einem Terminal startest du den Rollup-Bundler im Beobachtungsmodus", + "startWebpack": "Dadurch wird der 'example'-Ordner betreten und die Entwicklungsumgebung gestartet.", + "devDocsAvailableAt": "Entwicklerdokumentation ist verfügbar auf", + "talkToUs": "Für Fragen, Feedback oder Anregungen trete unserem Discord-Server bei", + "draftYourPattern": "Zeichne dein Schnittmuster", + "testYourPattern": "Teste dein Schnittmuster", + "draftThing": "{thing} erstellen", + "testThing": "{thing} testen", + "renderInBrowser": "Klicke unten, um dein Schnittmuster im Browser zu rendern.", + "weWillReRender": "Wenn du Änderungen vornimmst, werden wir es erneut für dich rendern.", + "youCan": "Du kannst", + "enterMeasurements": "Maße von Hand eingeben", + "preloadMeasurements": "Einen bestehenden Satz an Maßen einlesen", + "size": "Größe", + "noRequiredMeasurements": "Dieses Schnittmuster hat keine benötigten Maße", + "howtoAddMeasurements": "Um Maße als Anforderung zu definieren, füge sie der Sektion measurements in der Konfigurationsdatei des Schnittmusters hinzu.", + "seeDocsAt": "Dokumentation zu diesem Thema ist verfügbar unter", + "clearDesignMode": "Designmodus leeren", + "designMode": "Designmodus", + "exportMode": "Exportmodus", + "thingIsEnabled": "{thing} ist aktiviert", + "thingIsDisabled": "{thing} ist deaktiviert", + "turnOn": "Aktivieren", + "turnOff": "Deaktivieren", + "validNameWarning": "Bitte wähle einen anderen Namen, da dieser Name Probleme verursachen würde.\nWir (wieder-)verwenden den Namen des Schnittmusters als NPM-Paketname.\nPaketnamen müssen in Kleinbuchstaben geschrieben sein und dürfen keine Sonderzeichen enthalten.\nBitte benenne dein Muster also entsprechend, wie in etwa:" +} diff --git a/packages/new-design/i18n/en.json b/packages/new-design/i18n/en.json new file mode 100644 index 00000000000..aee9d6681a2 --- /dev/null +++ b/packages/new-design/i18n/en.json @@ -0,0 +1,34 @@ +{ + "author": "Author", + "githubRepo": "GitHub repository", + "packageManager": "Package manager", + "patternName": "Pattern name", + "patternType": "Pattern type", + "patternCreated": "Your pattern skeleton has been created at", + "runTheseCommands": "To get started, run this command", + "startRollup": "In one terminal, start the rollup bundler in watch mode", + "startWebpack": "It will enter the 'example' folder, and start the development environment.", + "devDocsAvailableAt": "Developer documentation is available at", + "talkToUs": "For questions, feedback or suggestions, join our Discord server", + "draftYourPattern": "Draft your pattern", + "testYourPattern": "Test your pattern", + "draftThing": "Draft {thing}", + "testThing": "Test {thing}", + "renderInBrowser": "Click below to render your pattern in the browser.", + "weWillReRender": "When you make changes, we will re-render for you.", + "youCan": "You can", + "enterMeasurements": "Enter measurements by hand", + "preloadMeasurements": "Preload a set of measurements", + "size": "Size", + "noRequiredMeasurements": "This pattern has no required measurements", + "howtoAddMeasurements": "To require measurements, add them to the measurements section of the pattern's configuration file.", + "seeDocsAt": "Documentation on this topic is available at", + "clearDesignMode": "Clear design mode", + "designMode": "Design mode", + "exportMode": "Export mode", + "thingIsEnabled": "{thing} is enabled", + "thingIsDisabled": "{thing} is disabled", + "turnOn": "Turn on", + "turnOff": "Turn off", + "validNameWarning": "Please pick a different name as this name would cause problems.\nWe (re-)use the pattern name as the NPM package name.\nPackage names must be lowercase and cannot contain special characters.\nSo please name your pattern accordingly, like:" +} diff --git a/packages/new-design/i18n/es.json b/packages/new-design/i18n/es.json new file mode 100644 index 00000000000..a21baa3bf1f --- /dev/null +++ b/packages/new-design/i18n/es.json @@ -0,0 +1,34 @@ +{ + "author": "Autor", + "githubRepo": "Repositorio GitHub", + "packageManager": "Gestor de paquetes", + "patternName": "Nombre del patrón", + "patternType": "Tipo de patrón", + "patternCreated": "Tu esqueleto de patrón ha sido creado en", + "runTheseCommands": "Para empezar, ejecuta este comando", + "startRollup": "En una terminal, inicia el paquete de rollup en modo reloj", + "startWebpack": "Entrará en la carpeta \"ejemplo\" e iniciará el entorno de desarrollo.", + "devDocsAvailableAt": "Documentación para desarrolladores está disponible en", + "talkToUs": "Para preguntas, comentarios o sugerencias, únete a nuestro servidor de Discord", + "draftYourPattern": "Traza tu patrón", + "testYourPattern": "Prueba tu patrón", + "draftThing": "Trazar {thing} ", + "testThing": "Prueba {thing}", + "renderInBrowser": "Haz clic abajo para mostrar el patrón en el navegador.", + "weWillReRender": "Cuando realices cambios, lo volveremos a trazar para ti.", + "youCan": "Puedes", + "enterMeasurements": "Introducir medidas a mano", + "preloadMeasurements": "Precarga un conjunto de medidas", + "size": "Tamaño", + "noRequiredMeasurements": "Este patrón no requiere tiene medidas", + "howtoAddMeasurements": "Para requerir mediciones, agrégalas a la sección de mediciones del archivo de configuración del patrón.", + "seeDocsAt": "La documentación sobre este tema está disponible en", + "clearDesignMode": "Borrar modo de diseño", + "designMode": "Modo de diseño", + "exportMode": "Modo de exportación", + "thingIsEnabled": "{thing} está habilitado", + "thingIsDisabled": "{thing} está deshabilitado", + "turnOn": "Encender", + "turnOff": "Apagar", + "validNameWarning": "Por favor, elija un nombre diferente ya que este nombre podría causar problemas.\nNosotros (re)usamos el nombre del patrón como el nombre del paquete NPM.\nLos nombres de los paquetes deben ser minúsculas y no pueden contener caracteres especiales.\nAsí que por favor nombre su patrón en consecuencia, como:" +} diff --git a/packages/new-design/i18n/fr.json b/packages/new-design/i18n/fr.json new file mode 100644 index 00000000000..308beb87692 --- /dev/null +++ b/packages/new-design/i18n/fr.json @@ -0,0 +1,34 @@ +{ + "author": "Auteur", + "githubRepo": "Répertoire GitHub", + "packageManager": "Gestionnaire de package", + "patternName": "Nom de patron", + "patternType": "Type de patron", + "patternCreated": "Le squelette de votre patron a été créé sur", + "runTheseCommands": "Pour commencer, exécutez cette commande", + "startRollup": "Dans un terminal, démarrez le bundler rollup en mode watch", + "startWebpack": "Il entrera dans le dossier 'exemple' et démarrera l'environnement de développement.", + "devDocsAvailableAt": "La documentation pour développeur est disponible sur", + "talkToUs": "Pour des questions, commentaires ou suggestions, rejoignez notre serveur Discord", + "draftYourPattern": "Dessiner votre patron", + "testYourPattern": "Tester votre patron", + "draftThing": "Ébauche de {thing}", + "testThing": "Tester {thing}", + "renderInBrowser": "Cliquer ci-dessous pour afficher votre patron dans votre navigateur.", + "weWillReRender": "Lorsque vous effectuez des modifications, nous mettons à jour le rendu pour vous.", + "youCan": "Vous pouvez", + "enterMeasurements": "Entrer des mesures manuellement", + "preloadMeasurements": "Pré-charger un set de mesures", + "size": "Taille", + "noRequiredMeasurements": "Ce patron n'a pas de mesure requise", + "howtoAddMeasurements": "Pour rendre des mesures nécessaires, ajoutez-les à la section measurements du fichier de configuration du patron.", + "seeDocsAt": "La documentation à ce sujet est disponible sur", + "clearDesignMode": "Vider le mode design", + "designMode": "Mode design", + "exportMode": "Mode d'export", + "thingIsEnabled": "{thing} est activé", + "thingIsDisabled": "{thing} est désactivé", + "turnOn": "Activer", + "turnOff": "Désactiver", + "validNameWarning": "Veuillez choisir un nom différent car ce nom causerait des problèmes.\nNous (ré-)utilisons le nom du modèle comme nom de paquet NPM.\nLes noms de paquets doivent être en minuscule et ne peuvent pas contenir de caractères spéciaux.\nVeuillez donc nommer votre patron en conséquence, comme :" +} diff --git a/packages/new-design/i18n/nl.json b/packages/new-design/i18n/nl.json new file mode 100644 index 00000000000..51b1b3322d9 --- /dev/null +++ b/packages/new-design/i18n/nl.json @@ -0,0 +1,34 @@ +{ + "author": "Auteur", + "githubRepo": "GitHub repository", + "packageManager": "Pakketbeheerder", + "patternName": "Patroon naam", + "patternType": "Patroon type", + "patternCreated": "Het skelet van je patroon is aangemaakt in", + "runTheseCommands": "Voer dit commando uit om te beginnen.", + "startRollup": "In één terminal, start de rollup bundler in de volgmodus", + "startWebpack": "Het zal de map 'voorbeeld' invoeren en de ontwikkelingsomgeving starten.", + "devDocsAvailableAt": "Documentatie voor ontwikkelaars is beschikbaar op", + "talkToUs": "Voor vragen, feedback of suggesties, neem deel aan onze Discord server", + "draftYourPattern": "Teken je patroon", + "testYourPattern": "Test je patroon", + "draftThing": "Teken {thing}", + "testThing": "Test {thing}", + "renderInBrowser": "Klik hieronder om je patroon in de browser te tonen.", + "weWillReRender": "Wanneer je wijzigingen maakt, renderen we opnieuw.", + "youCan": "Je kan", + "enterMeasurements": "Maten manueel invoeren", + "preloadMeasurements": "Een set van maten inladen", + "size": "Maat", + "noRequiredMeasurements": "Dit patroon heeft geen vereiste maten", + "howtoAddMeasurements": "Om maten te vereisen, voeg je ze toe aan de measurements sectie van het configuratiebestand van het patroon.", + "seeDocsAt": "Documentatie over dit onderwerp is beschikbaar op", + "clearDesignMode": "Ontwerp modus wissen", + "designMode": "Ontwerp modus", + "exportMode": "Export modus", + "thingIsEnabled": "{thing} is ingeschakeld", + "thingIsDisabled": "{thing} is uitgeschakeld", + "turnOn": "Inschakelen", + "turnOff": "Uitschakelen", + "validNameWarning": "Kies een andere naam, deze zou voor problemen zorgen.\nWe (her)gebruiken de patroonnaam als naam voor het NPM-pakket.\nPakketnamen mogen geen hoofdletters of speciale tekens bevatten.\nDus geef je patroon een geschikte naam, zoals:" +} diff --git a/packages/new-design/i18n/uk.json b/packages/new-design/i18n/uk.json new file mode 100644 index 00000000000..3a7645768ec --- /dev/null +++ b/packages/new-design/i18n/uk.json @@ -0,0 +1,34 @@ +{ + "uthor": "Автор", + "githubRepo": "Репозиторій GitHub", + "packageManager": "Менеджер пакунків", + "patternName": "Назва викрійки", + "patternType": "Тип викрійки", + "patternCreated": "Ваш каркас викрійки створено у", + "runTheseCommands": "Щоб розпочати, запустіть цю команду", + "startRollup": "У одному терміналі запустіть ролап у режимі перегляду", + "startWebpack": "Це відкриє папку \"приклад\" та запустить девелопмент.", + "devDocsAvailableAt": "Документація для розробників доступна за адресою", + "talkToUs": "Для запитань, відгуків чи пропозицій, приєднуйтесь до нашого серверу в Discord", + "draftYourPattern": "Створіть Вашу викрійку", + "testYourPattern": "Протестувати Вашу викрійку", + "draftThing": "Створити {thing}", + "testThing": "Протестувати {thing}", + "renderInBrowser": "Натисніть нижче, щоб відобразити Вашу викрійку у браузері.", + "weWillReRender": "Коли Ви виконаєте зміни, ми перезавантажимо зображення для Вас.", + "youCan": "Ви можете", + "enterMeasurements": "Ввести вимірювання вручну", + "preloadMeasurements": "Завантажити набір мірок", + "size": "Розмір", + "noRequiredMeasurements": "Ця викрійка не потребує замірів", + "howtoAddMeasurements": "Щоб додати бажані мірки, додайте їх у секцію заміри у файлі конфігурації викрійки.", + "seeDocsAt": "Документація по цій темі доступна за адресою", + "clearDesignMode": "Очистити режим дизайну", + "designMode": "Режим дизайну", + "exportMode": "Режим експорту", + "thingIsEnabled": "{thing} увімкнено", + "thingIsDisabled": "{thing} вимкнено", + "turnOn": "Увімкнути", + "turnOff": "Вимкнути", + "validNameWarning": "Будь ласка, оберіть іншу назву, бо дана назва може призвести до проблем.\nМи (повторно) використовуємо назву викрійки як NPM назву пакету.\nІмена пакунків повинні бути в нижньому регістрі та не можуть містити спеціальних символів.\nБудь ласка, назвіть викрійку згідно правил, наприклад:" +} diff --git a/packages/i18n/src/locales/de/measurements.yaml b/sites/shared/i18n/measurements.de.yaml similarity index 100% rename from packages/i18n/src/locales/de/measurements.yaml rename to sites/shared/i18n/measurements.de.yaml diff --git a/packages/i18n/src/locales/en/measurements.yaml b/sites/shared/i18n/measurements.en.yaml similarity index 100% rename from packages/i18n/src/locales/en/measurements.yaml rename to sites/shared/i18n/measurements.en.yaml diff --git a/packages/i18n/src/locales/es/measurements.yaml b/sites/shared/i18n/measurements.es.yaml similarity index 100% rename from packages/i18n/src/locales/es/measurements.yaml rename to sites/shared/i18n/measurements.es.yaml diff --git a/packages/i18n/src/locales/fr/measurements.yaml b/sites/shared/i18n/measurements.fr.yaml similarity index 100% rename from packages/i18n/src/locales/fr/measurements.yaml rename to sites/shared/i18n/measurements.fr.yaml diff --git a/packages/i18n/src/locales/nl/measurements.yaml b/sites/shared/i18n/measurements.nl.yaml similarity index 100% rename from packages/i18n/src/locales/nl/measurements.yaml rename to sites/shared/i18n/measurements.nl.yaml diff --git a/packages/i18n/src/locales/uk/measurements.yaml b/sites/shared/i18n/measurements.uk.yaml similarity index 100% rename from packages/i18n/src/locales/uk/measurements.yaml rename to sites/shared/i18n/measurements.uk.yaml