I want to combine translated text with non translated text
For example i have this key:
book.edit.button=Edit
i can display it using world.sendMessage({translate: "book.edit.button" })
and i will get Edit in chat
I want to sometimes add a prefix to it like the color code §b so it sends a colored Edit in chat, but obviously this doesn't work
world.sendMessage('§b' + {translate: "book.edit.button"})
I can't make a key for each combination of text and prefix i have, how do i achieve this?