1
0
Fork 0

feat(noble): Add i18n named export

This commit is contained in:
joostdecock 2023-07-02 16:16:25 +02:00
parent 5b08fec8ba
commit e894900ff9
2 changed files with 6 additions and 1 deletions

View file

@ -90,6 +90,10 @@
"shoulderToShoulderEase": { "shoulderToShoulderEase": {
"t": "Shoulder to shoulder ease", "t": "Shoulder to shoulder ease",
"d": "Controls the amount of ease along the shoulder to shoulder measurement" "d": "Controls the amount of ease along the shoulder to shoulder measurement"
},
"fullChestEaseReduction": {
"t": "Full chest ease reduction",
"d": "FIXME: Document this option"
} }
} }
} }

View file

@ -1,5 +1,6 @@
import { Design } from '@freesewing/core' import { Design } from '@freesewing/core'
import { data } from '../data.mjs' import { data } from '../data.mjs'
import { i18n } from '../i18n/index.mjs'
import { backPoints } from './backpoints.mjs' import { backPoints } from './backpoints.mjs'
import { backInside } from './backinside.mjs' import { backInside } from './backinside.mjs'
import { backOutside } from './backoutside.mjs' import { backOutside } from './backoutside.mjs'
@ -14,4 +15,4 @@ const Noble = new Design({
}) })
// Named exports // Named exports
export { backPoints, backInside, backOutside, frontPoints, frontInside, frontOutside, Noble } export { backPoints, backInside, backOutside, frontPoints, frontInside, frontOutside, Noble, i18n }