1
0
Fork 0

fix(diana): Add missing options in translation config

This commit is contained in:
joostdecock 2023-07-02 14:43:29 +02:00
parent bd199202e2
commit 444f945cc4
6 changed files with 46 additions and 2 deletions

View file

@ -15,6 +15,14 @@
"drapeAngle": {
"t": "Fallwinkel",
"d": "Steuert die Stärke des Fallwinkels"
},
"hipsEase": {
"t": "Hips ease",
"d": "Controls the amount of ease at your hips"
},
"waistEase": {
"t": "Waist ease",
"d": "Controls the amount of ease at your waist"
}
}
}

View file

@ -15,6 +15,14 @@
"drapeAngle": {
"t": "Drape angle",
"d": "Controls the amount of drape"
},
"hipsEase": {
"t": "Hips ease",
"d": "Controls the amount of ease at your hips"
},
"waistEase": {
"t": "Waist ease",
"d": "Controls the amount of ease at your waist"
}
}
}

View file

@ -15,6 +15,14 @@
"drapeAngle": {
"t": "Ángulo del drapeado",
"d": "Controla la cantidad de drapeado"
},
"hipsEase": {
"t": "Hips ease",
"d": "Controls the amount of ease at your hips"
},
"waistEase": {
"t": "Waist ease",
"d": "Controls the amount of ease at your waist"
}
}
}

View file

@ -15,6 +15,14 @@
"drapeAngle": {
"t": "Angle du drapé",
"d": "Contrôle le montant du drapé"
},
"hipsEase": {
"t": "Hips ease",
"d": "Controls the amount of ease at your hips"
},
"waistEase": {
"t": "Waist ease",
"d": "Controls the amount of ease at your waist"
}
}
}

View file

@ -15,6 +15,14 @@
"drapeAngle": {
"t": "Drape angle",
"d": "Bepaalt het aantal drape"
},
"hipsEase": {
"t": "Hips ease",
"d": "Controls the amount of ease at your hips"
},
"waistEase": {
"t": "Waist ease",
"d": "Controls the amount of ease at your waist"
}
}
}

View file

@ -1,6 +1,7 @@
import { Design } from '@freesewing/core'
import { Design, mergeI18n } from '@freesewing/core'
import { data } from '../data.mjs'
import { i18n } from '../i18n/index.mjs'
import { i18n as brianI18n } from '@freesewing/brian'
import { i18n as dianaI18n } from '../i18n/index.mjs'
// Parts
import { front } from './front.mjs'
import { back } from './front.mjs'
@ -12,5 +13,8 @@ const Diana = new Design({
parts: [front, back, sleeve],
})
// Merge translations
const i18n = mergeI18n([brianI18n, dianaI18n])
// Named exports
export { front, back, sleeve, Diana, i18n }