diff --git a/designs/trayvon/i18n/en.json b/designs/trayvon/i18n/en.json index e09020a3ceb..916341a7f00 100644 --- a/designs/trayvon/i18n/en.json +++ b/designs/trayvon/i18n/en.json @@ -19,6 +19,10 @@ "knotWidth": { "t": "Knot width", "d": "The width of your tie at the knot" + }, + "lengthBonus": { + "t": "Length bonus", + "d": "How much longer than the default length to make the tie." } } } diff --git a/designs/trayvon/src/index.mjs b/designs/trayvon/src/index.mjs index ea381ddbd8c..9376d51a03c 100644 --- a/designs/trayvon/src/index.mjs +++ b/designs/trayvon/src/index.mjs @@ -1,5 +1,6 @@ import { Design } from '@freesewing/core' import { data } from '../data.mjs' +import { i18n } from '../i18n/index.mjs' import { interfacingTail, interfacingTip } from './interfacing.mjs' import { liningTail, liningTip } from './lining.mjs' import { fabricTail, fabricTip } from './fabric.mjs' @@ -29,4 +30,5 @@ export { fabricTip, fabricLoop, Trayvon, + i18n, }