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": {
"t": "Schulterneigung",
"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",
"d": "The length of the shoulder seam, as a factor of your shoulder to shoulder measurement"
},
"shoulderSlope": {
"t": "Shoulder slope",
"d": "Controls the angle of the shoulder seams"
"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": {
"t": "Inclinación de 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": {
"t": "Pente 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": {
"t": "Schouderhelling",
"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 { data } from '../data.mjs'
import { i18n } from '../i18n/index.mjs'
import { top } from './top.mjs'
// Setup our new design
@ -9,4 +10,4 @@ const Tamiko = new Design({
})
// Named exports
export { top, Tamiko }
export { top, Tamiko, i18n }