1
0
Fork 0

feat(tamiko): Add i18n named export

This commit is contained in:
joostdecock 2023-07-02 16:49:47 +02:00
parent 6e4325c8c5
commit f4f27b3c3c
6 changed files with 81 additions and 4 deletions

View file

@ -17,6 +17,22 @@
"shoulderSlope": { "shoulderSlope": {
"t": "Schulterneigung", "t": "Schulterneigung",
"d": "Steuert den Winkel der Schulternähte" "d": "Steuert den Winkel der Schulternähte"
},
"armholeDepthFactor": {
"t": "Armhole depth factor",
"d": "Controls the depth of your armhole, as a factor of your shoulder to shoulder measurement."
},
"chestEase": {
"t": "Chest ease",
"d": "The amount of ease at your chest."
},
"lengthBonus": {
"t": "Length bonus",
"d": "How much longer than the default length to make your top."
},
"draftForHighBust": {
"t": "Draft for high bust",
"d": "Draft the pattern for the high bust measurement (if available) rather than the (full) chest. This will result in a more fitted garment for people with breasts."
} }
} }
} }

View file

@ -14,9 +14,21 @@
"t": "Shoulder seam length", "t": "Shoulder seam length",
"d": "The length of the shoulder seam, as a factor of your shoulder to shoulder measurement" "d": "The length of the shoulder seam, as a factor of your shoulder to shoulder measurement"
}, },
"shoulderSlope": { "armholeDepthFactor": {
"t": "Shoulder slope", "t": "Armhole depth factor",
"d": "Controls the angle of the shoulder seams" "d": "Controls the depth of your armhole, as a factor of your shoulder to shoulder measurement."
},
"chestEase": {
"t": "Chest ease",
"d": "The amount of ease at your chest."
},
"lengthBonus": {
"t": "Length bonus",
"d": "How much longer than the default length to make your top."
},
"draftForHighBust": {
"t": "Draft for high bust",
"d": "Draft the pattern for the high bust measurement (if available) rather than the (full) chest. This will result in a more fitted garment for people with breasts."
} }
} }
} }

View file

@ -17,6 +17,22 @@
"shoulderSlope": { "shoulderSlope": {
"t": "Inclinación de hombro", "t": "Inclinación de hombro",
"d": "Controla el ángulo de las costuras del hombro" "d": "Controla el ángulo de las costuras del hombro"
},
"armholeDepthFactor": {
"t": "Armhole depth factor",
"d": "Controls the depth of your armhole, as a factor of your shoulder to shoulder measurement."
},
"chestEase": {
"t": "Chest ease",
"d": "The amount of ease at your chest."
},
"lengthBonus": {
"t": "Length bonus",
"d": "How much longer than the default length to make your top."
},
"draftForHighBust": {
"t": "Draft for high bust",
"d": "Draft the pattern for the high bust measurement (if available) rather than the (full) chest. This will result in a more fitted garment for people with breasts."
} }
} }
} }

View file

@ -17,6 +17,22 @@
"shoulderSlope": { "shoulderSlope": {
"t": "Pente d'épaule", "t": "Pente d'épaule",
"d": "Contrôle l'angle des coutures d'épaule" "d": "Contrôle l'angle des coutures d'épaule"
},
"armholeDepthFactor": {
"t": "Armhole depth factor",
"d": "Controls the depth of your armhole, as a factor of your shoulder to shoulder measurement."
},
"chestEase": {
"t": "Chest ease",
"d": "The amount of ease at your chest."
},
"lengthBonus": {
"t": "Length bonus",
"d": "How much longer than the default length to make your top."
},
"draftForHighBust": {
"t": "Draft for high bust",
"d": "Draft the pattern for the high bust measurement (if available) rather than the (full) chest. This will result in a more fitted garment for people with breasts."
} }
} }
} }

View file

@ -17,6 +17,22 @@
"shoulderSlope": { "shoulderSlope": {
"t": "Schouderhelling", "t": "Schouderhelling",
"d": "Bepaalt de hoek van de schoudernaden" "d": "Bepaalt de hoek van de schoudernaden"
},
"armholeDepthFactor": {
"t": "Armhole depth factor",
"d": "Controls the depth of your armhole, as a factor of your shoulder to shoulder measurement."
},
"chestEase": {
"t": "Chest ease",
"d": "The amount of ease at your chest."
},
"lengthBonus": {
"t": "Length bonus",
"d": "How much longer than the default length to make your top."
},
"draftForHighBust": {
"t": "Draft for high bust",
"d": "Draft the pattern for the high bust measurement (if available) rather than the (full) chest. This will result in a more fitted garment for people with breasts."
} }
} }
} }

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 { top } from './top.mjs' import { top } from './top.mjs'
// Setup our new design // Setup our new design
@ -9,4 +10,4 @@ const Tamiko = new Design({
}) })
// Named exports // Named exports
export { top, Tamiko } export { top, Tamiko, i18n }