1
0
Fork 0

feat(trayvon): Add i18n named export

This commit is contained in:
joostdecock 2023-07-02 17:00:30 +02:00
parent 382a31c966
commit c6d51a5fef
2 changed files with 6 additions and 0 deletions

View file

@ -19,6 +19,10 @@
"knotWidth": { "knotWidth": {
"t": "Knot width", "t": "Knot width",
"d": "The width of your tie at the knot" "d": "The width of your tie at the knot"
},
"lengthBonus": {
"t": "Length bonus",
"d": "How much longer than the default length to make the tie."
} }
} }
} }

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 { interfacingTail, interfacingTip } from './interfacing.mjs' import { interfacingTail, interfacingTip } from './interfacing.mjs'
import { liningTail, liningTip } from './lining.mjs' import { liningTail, liningTip } from './lining.mjs'
import { fabricTail, fabricTip } from './fabric.mjs' import { fabricTail, fabricTip } from './fabric.mjs'
@ -29,4 +30,5 @@ export {
fabricTip, fabricTip,
fabricLoop, fabricLoop,
Trayvon, Trayvon,
i18n,
} }