From ce8c31b6db42283e6c870b2ac45330cf9b3374de Mon Sep 17 00:00:00 2001 From: joostdecock Date: Sun, 2 Jul 2023 17:25:50 +0200 Subject: [PATCH] feat(waralee): Add i18n named export --- designs/waralee/i18n/en.json | 21 +++++++++++++++++++++ designs/waralee/src/index.mjs | 2 ++ 2 files changed, 23 insertions(+) diff --git a/designs/waralee/i18n/en.json b/designs/waralee/i18n/en.json index 1434d03b1fb..46c7e2cc1f0 100644 --- a/designs/waralee/i18n/en.json +++ b/designs/waralee/i18n/en.json @@ -7,6 +7,7 @@ "facings": "Facings", "mini": "Mini", "pants": "Pants", + "pantsProto": "FIXME: Give this part a name", "pocket": "Pocket", "strapBack": "Strap back", "strapFront": "Strap front", @@ -70,6 +71,26 @@ "backRaise": { "t": "Back Raise", "d": "This setting raises the waist in the back. Our waist does not sit horizontally, but is angled up at the back. This seting allows you to raise this in the back if you need it for a good fit." + }, + "fitWaist": { + "t": "FIXME: Give this option a name", + "d": "FIXME: Give this option a description" + }, + "frontPocketStyle": { + "t": "FIXME: Give this option a name", + "d": "FIXME: Give this option a description" + }, + "knotInFront": { + "t": "FIXME: Give this option a name", + "d": "FIXME: Give this option a description" + }, + "separateWaistband": { + "t": "FIXME: Give this option a name", + "d": "FIXME: Give this option a description" + }, + "showMini": { + "t": "FIXME: Give this option a name", + "d": "FIXME: Give this option a description" } } } diff --git a/designs/waralee/src/index.mjs b/designs/waralee/src/index.mjs index 4fa4ec537d1..34b4867de59 100644 --- a/designs/waralee/src/index.mjs +++ b/designs/waralee/src/index.mjs @@ -1,5 +1,6 @@ import { Design } from '@freesewing/core' import { data } from '../data.mjs' +import { i18n } from '../i18n/index.mjs' import { pants } from './pants.mjs' import { cutout } from './cutout.mjs' import { pocket } from './pocket.mjs' @@ -41,4 +42,5 @@ export { strapBack, pantsProto, Waralee, + i18n, }