feat(shin): Add i18n named export
This commit is contained in:
parent
03ec676536
commit
03fca8d16f
6 changed files with 82 additions and 1 deletions
|
@ -15,6 +15,22 @@
|
|||
"elasticWidth": {
|
||||
"t": "Breite des Gummis",
|
||||
"d": "Breite des Gummizugs an der Taille"
|
||||
},
|
||||
"stretch": {
|
||||
"t": "Stretch",
|
||||
"d": "The amount of stretch to design for."
|
||||
},
|
||||
"bulge": {
|
||||
"t": "Bulge",
|
||||
"d": "Controls the amount of extra room to create at the front of the trunks."
|
||||
},
|
||||
"rise": {
|
||||
"t": "Rise",
|
||||
"d": "Controls the height of the waist."
|
||||
},
|
||||
"backRise": {
|
||||
"t": "Back rise",
|
||||
"d": "Controls how much the waist is higher in the back than the front."
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,6 +15,22 @@
|
|||
"elasticWidth": {
|
||||
"t": "Elastic width",
|
||||
"d": "Width of the elastic at the waist"
|
||||
},
|
||||
"stretch": {
|
||||
"t": "Stretch",
|
||||
"d": "The amount of stretch to design for."
|
||||
},
|
||||
"bulge": {
|
||||
"t": "Bulge",
|
||||
"d": "Controls the amount of extra room to create at the front of the trunks."
|
||||
},
|
||||
"rise": {
|
||||
"t": "Rise",
|
||||
"d": "Controls the height of the waist."
|
||||
},
|
||||
"backRise": {
|
||||
"t": "Back rise",
|
||||
"d": "Controls how much the waist is higher in the back than the front."
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,6 +15,22 @@
|
|||
"elasticWidth": {
|
||||
"t": "Elastic width",
|
||||
"d": "Width of the elastic at the waist"
|
||||
},
|
||||
"stretch": {
|
||||
"t": "Stretch",
|
||||
"d": "The amount of stretch to design for."
|
||||
},
|
||||
"bulge": {
|
||||
"t": "Bulge",
|
||||
"d": "Controls the amount of extra room to create at the front of the trunks."
|
||||
},
|
||||
"rise": {
|
||||
"t": "Rise",
|
||||
"d": "Controls the height of the waist."
|
||||
},
|
||||
"backRise": {
|
||||
"t": "Back rise",
|
||||
"d": "Controls how much the waist is higher in the back than the front."
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,6 +15,22 @@
|
|||
"elasticWidth": {
|
||||
"t": "Largeur d'élastique",
|
||||
"d": "Largeur de l'élastique à la taille"
|
||||
},
|
||||
"stretch": {
|
||||
"t": "Stretch",
|
||||
"d": "The amount of stretch to design for."
|
||||
},
|
||||
"bulge": {
|
||||
"t": "Bulge",
|
||||
"d": "Controls the amount of extra room to create at the front of the trunks."
|
||||
},
|
||||
"rise": {
|
||||
"t": "Rise",
|
||||
"d": "Controls the height of the waist."
|
||||
},
|
||||
"backRise": {
|
||||
"t": "Back rise",
|
||||
"d": "Controls how much the waist is higher in the back than the front."
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,6 +15,22 @@
|
|||
"elasticWidth": {
|
||||
"t": "Breedte elastiek",
|
||||
"d": "Breedte van de elastiek aan de taille"
|
||||
},
|
||||
"stretch": {
|
||||
"t": "Stretch",
|
||||
"d": "The amount of stretch to design for."
|
||||
},
|
||||
"bulge": {
|
||||
"t": "Bulge",
|
||||
"d": "Controls the amount of extra room to create at the front of the trunks."
|
||||
},
|
||||
"rise": {
|
||||
"t": "Rise",
|
||||
"d": "Controls the height of the waist."
|
||||
},
|
||||
"backRise": {
|
||||
"t": "Back rise",
|
||||
"d": "Controls how much the waist is higher in the back than the front."
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
import { Design } from '@freesewing/core'
|
||||
import { data } from '../data.mjs'
|
||||
import { i18n } from '../i18n/index.mjs'
|
||||
import { back } from './back.mjs'
|
||||
import { front } from './front.mjs'
|
||||
import { waistband } from './waistband.mjs'
|
||||
|
@ -11,4 +12,4 @@ const Shin = new Design({
|
|||
})
|
||||
|
||||
// Named exports
|
||||
export { back, front, waistband, Shin }
|
||||
export { back, front, waistband, Shin, i18n }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue