1
0
Fork 0

feat(benjamin): Add i18n named export

This commit is contained in:
joostdecock 2023-07-02 13:05:58 +02:00
parent da6106c9a4
commit e188672b1c
6 changed files with 7 additions and 1 deletions

View file

@ -2,6 +2,7 @@
"t": "Benjamin, die Fliege", "t": "Benjamin, die Fliege",
"d": "Benjamin ist eine Schleife - oder Fliege - mit vier unterschiedlichen Formvariationen.", "d": "Benjamin ist eine Schleife - oder Fliege - mit vier unterschiedlichen Formvariationen.",
"p": { "p": {
"base": "Base",
"bow1": "Fliege", "bow1": "Fliege",
"bow2": "Fliege", "bow2": "Fliege",
"bow3": "Fliege", "bow3": "Fliege",

View file

@ -2,6 +2,7 @@
"t": "Benjamin bow tie", "t": "Benjamin bow tie",
"d": "Benjamin is a bow tie pattern with four different shape options.", "d": "Benjamin is a bow tie pattern with four different shape options.",
"p": { "p": {
"base": "Base",
"bow1": "Bow", "bow1": "Bow",
"bow2": "Bow", "bow2": "Bow",
"bow3": "Bow", "bow3": "Bow",

View file

@ -2,6 +2,7 @@
"t": "Benjamin, pajarita", "t": "Benjamin, pajarita",
"d": "Benjamin es un patrón de pajarita con cuatro formas a elegir.", "d": "Benjamin es un patrón de pajarita con cuatro formas a elegir.",
"p": { "p": {
"base": "Base",
"bow1": "Pajarita", "bow1": "Pajarita",
"bow2": "Pajarita", "bow2": "Pajarita",
"bow3": "Pajarita", "bow3": "Pajarita",

View file

@ -2,6 +2,7 @@
"t": "Nœud papillon Benjamin", "t": "Nœud papillon Benjamin",
"d": "Benjamin est un nœud papillon avec 4 possibilités de styles différents.", "d": "Benjamin est un nœud papillon avec 4 possibilités de styles différents.",
"p": { "p": {
"base": "Base",
"bow1": "Nœud", "bow1": "Nœud",
"bow2": "Nœud", "bow2": "Nœud",
"bow3": "Nœud", "bow3": "Nœud",

View file

@ -2,6 +2,7 @@
"t": "Benjamin vlinderdas", "t": "Benjamin vlinderdas",
"d": "Benjamin is een vlinderdas met vier verschillende mogelijke vormen.", "d": "Benjamin is een vlinderdas met vier verschillende mogelijke vormen.",
"p": { "p": {
"base": "Base",
"bow1": "Vlinderdas", "bow1": "Vlinderdas",
"bow2": "Vlinderdas", "bow2": "Vlinderdas",
"bow3": "Vlinderdas", "bow3": "Vlinderdas",

View file

@ -4,6 +4,7 @@ import { bow1 } from './bow1.mjs'
import { bow2 } from './bow2.mjs' import { bow2 } from './bow2.mjs'
import { bow3 } from './bow3.mjs' import { bow3 } from './bow3.mjs'
import { ribbon } from './ribbon.mjs' import { ribbon } from './ribbon.mjs'
import { i18n } from '../i18n/index.mjs'
// Setup our new design // Setup our new design
const Benjamin = new Design({ const Benjamin = new Design({
@ -12,4 +13,4 @@ const Benjamin = new Design({
}) })
// Named exports // Named exports
export { bow1, bow2, bow3, ribbon, Benjamin } export { bow1, bow2, bow3, ribbon, Benjamin, i18n }