From 03fca8d16f6220e6d5ab51b97eee9dd82131c255 Mon Sep 17 00:00:00 2001 From: joostdecock Date: Sun, 2 Jul 2023 16:37:47 +0200 Subject: [PATCH] feat(shin): Add i18n named export --- designs/shin/i18n/de.json | 16 ++++++++++++++++ designs/shin/i18n/en.json | 16 ++++++++++++++++ designs/shin/i18n/es.json | 16 ++++++++++++++++ designs/shin/i18n/fr.json | 16 ++++++++++++++++ designs/shin/i18n/nl.json | 16 ++++++++++++++++ designs/shin/src/index.mjs | 3 ++- 6 files changed, 82 insertions(+), 1 deletion(-) diff --git a/designs/shin/i18n/de.json b/designs/shin/i18n/de.json index 0ed42eef376..a2291fe357a 100644 --- a/designs/shin/i18n/de.json +++ b/designs/shin/i18n/de.json @@ -15,6 +15,22 @@ "elasticWidth": { "t": "Breite des Gummis", "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." } } } diff --git a/designs/shin/i18n/en.json b/designs/shin/i18n/en.json index a045f4213ee..a644f521bcf 100644 --- a/designs/shin/i18n/en.json +++ b/designs/shin/i18n/en.json @@ -15,6 +15,22 @@ "elasticWidth": { "t": "Elastic width", "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." } } } diff --git a/designs/shin/i18n/es.json b/designs/shin/i18n/es.json index 6b0b28b113c..bbb4a4af928 100644 --- a/designs/shin/i18n/es.json +++ b/designs/shin/i18n/es.json @@ -15,6 +15,22 @@ "elasticWidth": { "t": "Elastic width", "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." } } } diff --git a/designs/shin/i18n/fr.json b/designs/shin/i18n/fr.json index b0059b71114..3a36a0c0510 100644 --- a/designs/shin/i18n/fr.json +++ b/designs/shin/i18n/fr.json @@ -15,6 +15,22 @@ "elasticWidth": { "t": "Largeur d'élastique", "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." } } } diff --git a/designs/shin/i18n/nl.json b/designs/shin/i18n/nl.json index 260bb3ecb40..2929321851e 100644 --- a/designs/shin/i18n/nl.json +++ b/designs/shin/i18n/nl.json @@ -15,6 +15,22 @@ "elasticWidth": { "t": "Breedte elastiek", "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." } } } diff --git a/designs/shin/src/index.mjs b/designs/shin/src/index.mjs index 55b77b18e13..8cadcc023e8 100644 --- a/designs/shin/src/index.mjs +++ b/designs/shin/src/index.mjs @@ -1,5 +1,6 @@ import { Design } from '@freesewing/core' import { data } from '../data.mjs' +import { i18n } from '../i18n/index.mjs' import { back } from './back.mjs' import { front } from './front.mjs' import { waistband } from './waistband.mjs' @@ -11,4 +12,4 @@ const Shin = new Design({ }) // Named exports -export { back, front, waistband, Shin } +export { back, front, waistband, Shin, i18n }