From e894900ff9ab8f98926c88fc05e98698d5a105ae Mon Sep 17 00:00:00 2001 From: joostdecock Date: Sun, 2 Jul 2023 16:16:25 +0200 Subject: [PATCH] feat(noble): Add i18n named export --- designs/noble/i18n/en.json | 4 ++++ designs/noble/src/index.mjs | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/designs/noble/i18n/en.json b/designs/noble/i18n/en.json index 5a16e4cf5da..2b144342ae7 100644 --- a/designs/noble/i18n/en.json +++ b/designs/noble/i18n/en.json @@ -90,6 +90,10 @@ "shoulderToShoulderEase": { "t": "Shoulder to shoulder ease", "d": "Controls the amount of ease along the shoulder to shoulder measurement" + }, + "fullChestEaseReduction": { + "t": "Full chest ease reduction", + "d": "FIXME: Document this option" } } } diff --git a/designs/noble/src/index.mjs b/designs/noble/src/index.mjs index 4be0010d4f4..0e3f95d863c 100644 --- a/designs/noble/src/index.mjs +++ b/designs/noble/src/index.mjs @@ -1,5 +1,6 @@ import { Design } from '@freesewing/core' import { data } from '../data.mjs' +import { i18n } from '../i18n/index.mjs' import { backPoints } from './backpoints.mjs' import { backInside } from './backinside.mjs' import { backOutside } from './backoutside.mjs' @@ -14,4 +15,4 @@ const Noble = new Design({ }) // Named exports -export { backPoints, backInside, backOutside, frontPoints, frontInside, frontOutside, Noble } +export { backPoints, backInside, backOutside, frontPoints, frontInside, frontOutside, Noble, i18n }