1
0
Fork 0

feat(waralee): Add i18n named export

This commit is contained in:
joostdecock 2023-07-02 17:25:50 +02:00
parent eece7c4299
commit ce8c31b6db
2 changed files with 23 additions and 0 deletions

View file

@ -7,6 +7,7 @@
"facings": "Facings",
"mini": "Mini",
"pants": "Pants",
"pantsProto": "FIXME: Give this part a name",
"pocket": "Pocket",
"strapBack": "Strap back",
"strapFront": "Strap front",
@ -70,6 +71,26 @@
"backRaise": {
"t": "Back Raise",
"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."
},
"fitWaist": {
"t": "FIXME: Give this option a name",
"d": "FIXME: Give this option a description"
},
"frontPocketStyle": {
"t": "FIXME: Give this option a name",
"d": "FIXME: Give this option a description"
},
"knotInFront": {
"t": "FIXME: Give this option a name",
"d": "FIXME: Give this option a description"
},
"separateWaistband": {
"t": "FIXME: Give this option a name",
"d": "FIXME: Give this option a description"
},
"showMini": {
"t": "FIXME: Give this option a name",
"d": "FIXME: Give this option a description"
}
}
}

View file

@ -1,5 +1,6 @@
import { Design } from '@freesewing/core'
import { data } from '../data.mjs'
import { i18n } from '../i18n/index.mjs'
import { pants } from './pants.mjs'
import { cutout } from './cutout.mjs'
import { pocket } from './pocket.mjs'
@ -41,4 +42,5 @@ export {
strapBack,
pantsProto,
Waralee,
i18n,
}