1
0
Fork 0

feat(shin): Add i18n named export

This commit is contained in:
joostdecock 2023-07-02 16:37:47 +02:00
parent 03ec676536
commit 03fca8d16f
6 changed files with 82 additions and 1 deletions

View file

@ -15,6 +15,22 @@
"elasticWidth": { "elasticWidth": {
"t": "Breite des Gummis", "t": "Breite des Gummis",
"d": "Breite des Gummizugs an der Taille" "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."
} }
} }
} }

View file

@ -15,6 +15,22 @@
"elasticWidth": { "elasticWidth": {
"t": "Elastic width", "t": "Elastic width",
"d": "Width of the elastic at the waist" "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."
} }
} }
} }

View file

@ -15,6 +15,22 @@
"elasticWidth": { "elasticWidth": {
"t": "Elastic width", "t": "Elastic width",
"d": "Width of the elastic at the waist" "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."
} }
} }
} }

View file

@ -15,6 +15,22 @@
"elasticWidth": { "elasticWidth": {
"t": "Largeur d'élastique", "t": "Largeur d'élastique",
"d": "Largeur de l'élastique à la taille" "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."
} }
} }
} }

View file

@ -15,6 +15,22 @@
"elasticWidth": { "elasticWidth": {
"t": "Breedte elastiek", "t": "Breedte elastiek",
"d": "Breedte van de elastiek aan de taille" "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."
} }
} }
} }

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 { back } from './back.mjs' import { back } from './back.mjs'
import { front } from './front.mjs' import { front } from './front.mjs'
import { waistband } from './waistband.mjs' import { waistband } from './waistband.mjs'
@ -11,4 +12,4 @@ const Shin = new Design({
}) })
// Named exports // Named exports
export { back, front, waistband, Shin } export { back, front, waistband, Shin, i18n }