diff --git a/designs/tamiko/i18n/de.json b/designs/tamiko/i18n/de.json index 907b9756b23..75fb3bd3c3e 100644 --- a/designs/tamiko/i18n/de.json +++ b/designs/tamiko/i18n/de.json @@ -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." } } } diff --git a/designs/tamiko/i18n/en.json b/designs/tamiko/i18n/en.json index c1665dad891..c83bc48c2ef 100644 --- a/designs/tamiko/i18n/en.json +++ b/designs/tamiko/i18n/en.json @@ -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." } } } diff --git a/designs/tamiko/i18n/es.json b/designs/tamiko/i18n/es.json index 6803865aeab..ba12b0bb47b 100644 --- a/designs/tamiko/i18n/es.json +++ b/designs/tamiko/i18n/es.json @@ -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." } } } diff --git a/designs/tamiko/i18n/fr.json b/designs/tamiko/i18n/fr.json index ec59aeb4de3..489200567e0 100644 --- a/designs/tamiko/i18n/fr.json +++ b/designs/tamiko/i18n/fr.json @@ -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." } } } diff --git a/designs/tamiko/i18n/nl.json b/designs/tamiko/i18n/nl.json index 38023418191..d1703cef0ec 100644 --- a/designs/tamiko/i18n/nl.json +++ b/designs/tamiko/i18n/nl.json @@ -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." } } } diff --git a/designs/tamiko/src/index.mjs b/designs/tamiko/src/index.mjs index 66793eaf460..1169ff39bc2 100644 --- a/designs/tamiko/src/index.mjs +++ b/designs/tamiko/src/index.mjs @@ -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 }